The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
8 views

How is dart VM's production mode faster when ignoring static types? Doesn't it need to do type inference at runtime?

Was just watching this introductory video - http://www.dartlang.org/dart-tips/dart-tips-ep-2.html and the presenter memtioned: Production mode actually gets a speed boost by ignoring static types, ...
0
votes
1answer
27 views

MODE_PRIVATE in Broacast Receiver

I have defined a function in a class called Receiver that extends the Broadcast Receiver. The code of the function is like this: public List<DatabaseRow> ToUpload() { ...
1
vote
1answer
35 views

PHP lstat command doesn't distinguish shortcuts in windows

In windows, I open a dir, read the files, and for each file, run stat to determine the size, etc. The problem is that when I run stat on a folder SHORTCUT, it comes back as a FOLDER, and I can't see ...
0
votes
0answers
6 views

What's the difference between OpenVG Matrix Modes?

The OpenVG specification mentions four different types of matrix modes: VG_MATRIX_PATH_USER_TO_SURFACE VG_MATRIX_IMAGE_USER_TO_SURFACE VG_MATRIX_FILL_PAINT_TO_USER VG_MATRIX_STROKE_PAINT_TO_USER ...
0
votes
2answers
49 views

How to make spinner in dialog mode?

I have button in my application and when I click on this button, it opens a spinner, but spinner is in dropdown mode and I need to make it in dialog mode. For API 11 and higher, there is a simple code ...
0
votes
0answers
9 views

Does Google Analytics account for browser mode or document mode in IE?

Usage stats show that the number users with older versions of IE are thankfully decreasing but can this be relied on? If a page is visited in IE9 but set to IE7 Browser mode and/or document mode, ...
0
votes
1answer
17 views

Paramiko determine whether file or directory

Related to How to list all the folders and files in the directory after connecting through sftp in python: I'm trying to see walk over the contents of a directory and determine whether or not each ...
0
votes
1answer
100 views

C++ Looking for the Element with the highest occurence in an array

I'm looking for an elegant way of determining which element has the highest occurrence (mode) in a C++ ptr array. For example, in {"pear", "apple", "orange", "apple"} the "apple" element is the ...
0
votes
1answer
38 views

C# Step Into variable list

There usually is a variable list at the bottom of the screen that helps me follow the value of different variables in my app while using the f11 'step into' function, but since I updated to web ...
1
vote
1answer
55 views

Most efficient way to find mode in numpy array

I have a 2D array containing integers (both positive or negative). Each row represents the values over time for a particular spatial site, whereas each column represents values for various spatial ...
-1
votes
1answer
66 views

How to find the mode of an ArrayList in Java [duplicate]

How would you find the mode of an ArrayList in Java?# public class test { public static void main (String [] args) { ArrayList <Integer> max = new <Integer> (); //* declared ...
2
votes
1answer
23 views

How to transform xml block?

I am new at XSL and I couldn't find anywhere like following case. I want to transform source.xml to target.xml. I have use mode"group" but it didn't work for me (probably I couldn't use it properly) ...
0
votes
0answers
18 views

Hbase mapreduce fails on cluster

I have a mapreduce program that first scans an HBase table. The mapper will emit all row keys to a HDFS file.This works fine on local machine.But when I tried to run the code in distributed mode(I ...
0
votes
0answers
15 views

What kind of applications need to be run in administrator mode?

I need to develop an application to run in Windows Server 2012 that uses a MySQL database and I was considering developing a Windows Store app, but in the answer for this question at SU, Can Windows ...
1
vote
1answer
36 views

Get the mode values of a column

I have a table (sample below) which contains results from a phone vote Number Voted 97867 Dog 97868 Cat 97869 Dog 97870 Dog 97871 Cat 97872 Donkey I query the data using $stmt = ...
4
votes
5answers
1k views

Java popup saying applications contains both unsigned and signed code

I am using Mac 10.7 running Java 1.7.0_21. I am trying to run a Java applet application that is signed and towards the end of the application I get a mixed mode security popup saying "Block ...
2
votes
1answer
56 views

How to enable a package/mode on emacs startup?

I want to enable rainbow-mode everytime I start emacs, rather than having to press M-x rainbow-mode But just a general question, how do I load any mode/package automatically on startup? I guess ...
0
votes
1answer
33 views

How to ignore prefix on certain models? CakePHP

I have to read data from a table called sys_sbu which is in the same database as my app. However, I have set tr_ to be the prefix of all my tables. When I tried to use $useTable = 'sys_sbu' on my ...
0
votes
2answers
43 views

finding mode from histogram

i have this function to print the histogram, I suppose to use this function calculate mode as well, I understand that to find mode you need to compare number of occurrences of each score, but I can't ...
0
votes
0answers
82 views

Magento Compilation make white blank page only in Back-end / Configuration page

A lot of page I seen and read how to disable the compilation mode if enabled and a make blank page. But I nowhere seen how to fix it... So when I installed up to my Magento and enabled this ...
0
votes
0answers
20 views

Slider Help how to Move it With Mouse

I make Function to Move Slider Auto function move(elem) { var left = 1 function frame() { // left++ // update parameters elem.style.left = left + '10px' // show frame left++ ...
1
vote
1answer
78 views

check .htaccess code for remove html extensions and redirect 301 [closed]

I have been struggling with this for a while, this is my copy of my .htaccess file. I don't think this code does what I want. Which is to remove html extensions and 301 redirect to new url. What I ...
0
votes
1answer
133 views

iPhone css hover should go back normal 'unhover'

I'm working on a web app for the iPhone… I made a 'button' with the following CSS, when you tap it (:hover) it changes, but when you release, it should go back to normal mode… How do i do that ? ...
1
vote
0answers
84 views

IE8 renders web page differently based on browser mode even though document mode is fixed - Intranet site

I am finding that IE8 renders web pages differently based on Browser mode despite Document mode always being set the same. Is this an IE8 bug? Background is: A corporate intranet being viewed by ...
0
votes
2answers
98 views

iOS Background Mode

I have a question about running an app in the background. I know about how to do it, but Apple does not like the way I'm doing it. To get you on the same page, I have a security app, and I need to it ...
1
vote
1answer
64 views

UIAlertView is not shown when returning from sleep mode in iOS app

My app must sometimes show an UIAlertView when the Home button or the locking button is pushed or when the notification center is shown. I show the Alert from the applicationWillResignActive ...
3
votes
2answers
390 views

Write a mode method in Java to find the most frequently occurring element in an array

the question goes: Write a method called mode that returns the most frequently occurring element of an array of integers. Assume that the array has at least one element and that every element in the ...
0
votes
0answers
35 views

telnet input mode

I managed to run php from command line as a server and use telnet as client in windows 7. The problem is that when input from telnet I get response from the server for every character I write. What I ...
1
vote
1answer
69 views

How to Create an MSI which runs in passive mode using WIX?

How can I create an MSI using WIX that can run in passive mode? If I double click on the msi it should launch in passive mode. This should be equivalent of running MSI package with /passive or /qb!- ...
3
votes
2answers
105 views

Oracle DDL execution with immediate mode and errors

After doing about two hours' worth of research on various issues with execute immediate and error handling, I don't think I've encountered exactly the problem I am about to present. I have reduced my ...
2
votes
1answer
64 views

Writing a user-function to return column position, column name, mode and class for every variable

I need to write a user-defined function that, when applied to a data frame, will return the column position, the column name, the mode, and the class for each variable. I am able to create one that ...
2
votes
0answers
579 views

Android USB OTG Read Usb Drive

I am currently working on a project which requires Usb Host mode in Android (using 4.2.2). I need to be able to do standard file operations like listing files and reading from a usb drive. Using the ...
0
votes
0answers
802 views

How Android 4.0.4 open recovery mode? [closed]

I create the Android under layer. But I can not find the recovery, and I do not know how to open this recovery mode. The Environment is: Android 4.0.4 There is a recovery catalogue in bootable of ...
1
vote
0answers
837 views

Samsung enable disable “Driving mode”

I would like to enable/disable Driving mode which is available on some Samsung devices (Galaxy S2, S3). I know I have to put something to system settings, but I don´t know what. So please advice me ...
-1
votes
1answer
164 views

Blowfish ECB Mode in BouncyCastle

This thread should not be for discussion on how bad ECB mode is, and that I should change it, but that BouncyCastle doesn't really support the mode, except for in Java, where you can use ...
0
votes
0answers
23 views

Mod_rewrite to folders and subfolders

I have the following mod_rewrite conditions: RewriteCond %{HTTP_HOST} ^www.A.com$ [NC] RewriteCond %{REQUEST_URI} !/A/ RewriteRule ^(.*)$ /A/$1 [L] which rewrites my domain A.com to the subfolder A ...
0
votes
0answers
139 views

is ie7 mode inside ie10 reliable?

My site works well if i use IE7 standard mode emulation with IE10 but totally freaks out with native IE7, having totally messed css almost everywhere. Can i force this standard mode on native IE7 or ...
0
votes
0answers
837 views

Mean shift implementation in C++

Can anyone recommend a lightweight mean shift clustering implementation in C++? I am already using OpenCV, however their mean shift implementation is for tracking, not clustering. I have seen EDISON, ...
1
vote
1answer
81 views

Python 3.0+ Calculating Mode

I have written a rather lengthy program to calculate the most often occurring number. And this works great! Unless you have 2 most occurring numbers in a list such as 7,7,7,9,9,9. For that I wrote in: ...
1
vote
2answers
41 views

Make all functions strict mode literal object?

Let's say we have this script. var apple = { type: "macintosh", color: "red", getInfo: function () { return this.color + ' ' + this.type + ' apple'; } ///more functions ...
-1
votes
2answers
66 views

way to check original file permissions in linux [closed]

I was wondering if there was a way to check factory original file permissions of important system config files in linux, solaris, and freebsd systems etc. I'm creating a hardening software tool in ...
0
votes
1answer
306 views

Android phone , what units are shut off In sleep mode

I have a scenario that the android device exchanges data with a FTP server via Roaming service. I hope to make OS enter proper sleep mode by setting WakeLock type during the data transferring because ...
0
votes
1answer
56 views

An attempt to update a NOT NULL var char field sets the field to an empty string rather than failing. Is this correct behaviour

I would have expected this to fail, but instead it wipes the existing data and replaces it with an empty string. Is this correct behaviour? If it is, is there a work around to force an error instead ...
0
votes
0answers
43 views

Switching to protected mode in bochs PC simulator

I'm working on the bochs x86 emulator but I'm having trouble with switching to protected mode. At the moment this is the [relevant] code I have, but it's not working, i.e. it's not switching to ...
0
votes
2answers
89 views

IE8 documentMode always 'quirk mode'

I'm trying to print a message to the user when he is using an IE version bellow IE8. To test it I enabled the Document Mode 8. But when I ask for the Document Mode in javascript I always receive the ...
-1
votes
1answer
112 views

OCaml find the mode of a list [closed]

So here is the question. Say I have a list [1;2;2;3;3;3] I want to find the mode of it, which is 3. There is one restriction about it : rec is prohibited, and List.fold_left or List.fold_right has ...
0
votes
1answer
89 views

How to produce multiple modes in Python?

Basically I just need to figure out how to produce modes (numbers occurring most frequently) from a list in Python, whether or not that list has multiple modes? Something like this: def print_mode ...
0
votes
1answer
102 views

Data Type of Columns in a List - R

I want to "extract" the data types of the different columns in a list in R. I'm using the following function: my.data.types <- t(sapply(loansData, function(x) c(typeof(x), ...
2
votes
3answers
117 views

How to find the mode of a list in prolog?

Can someone please tell me how to find the mode of a list in Prolog? I have tried this: count_elt([], _, 0) :- !. count_elt([H|T], H, P) :- count_elt(T, H, P1), P is P1 + 1, !. ...
0
votes
2answers
105 views

Bison C++ multiple error recovery with missing semi colon

I'm devloping my own compiler, and I hava problem with error recovery design in panic mode for java grammer. I thought about multiple solutions, but real question: How I could do that with bison ...

1 2 3 4 5 7