The flags tag has no wiki summary.
1
vote
1answer
34 views
how to deal with files whose names are flags
I was wondering how to deal with files whose names are flags, like '-a', '-f' etc. I can't pass them as arguments to programs like rm or ls, because they are interpreted as flags, and doing rm * or ls ...
0
votes
0answers
14 views
Unable to use flags in opencv Python?
Im unable to use flags in Opencv
for example
COde:
import cv2
image = cv2.imread('k.jpg',cv2.CV_LOAD_IMAGE_GRAYSCALE)
cv2.namedWindow('Pic',cv2.CV_WINDOW_NORMAL)
cv2.imshow('Pic', image)
...
1
vote
2answers
32 views
Haxe - sending enum as flags to a function
I'm just trying to convert my code from C# to Haxe NME. I use enums as flags.
[Flags]
enum State
{
StateOne = 1,
StateTwo = 2,
StateThree = 4
}
And use it
if ...
0
votes
1answer
29 views
check if input number is within range of unsigned 16 bits number
hi I have this code in assembly x86
L1:
mov edx, OFFSET prompt1
call writeString
call readHex
JO L1
I'm trying to check if the unsigned hexadecimal number that I input is larger ...
0
votes
0answers
16 views
Bitwise Binary operations on attribute flags in XML files
In XML files, on some attributes you can combine flag values by OR operator, example:
<item name="openingDays" value="monday|wednesday|friday"/>
assuming the flags for "monday", "tuesday", ...
1
vote
1answer
25 views
System.out.printf with specific flags not returning the expected number
I'm just starting out using Java. And I came across this issue :
This is my code :
import java.util.Scanner;
public class FormatageValeurNumerique {
/**
* @param args
*/
public ...
0
votes
2answers
33 views
What are st_flags (user defined flags) for a file Mac OS X?
I am trying to detect when Dropbox is busy updating a file in a user's Dropbox in Mac OS X. By running stat(1) or stat(2) on a file, I see that the user defined flags for file (st_flags) are normally ...
0
votes
0answers
11 views
should I use goto instead of flags for this kind of logic?
I'm not a big fan of GOTO, and side with Djikstra on the matter, I figure he's pretty credible.
I've been reading some modern writings that suggest that instead of setting WarnFlag here, and checking ...
0
votes
1answer
14 views
NUnit Assertion that enum value contains a flag
While writing some tests for our .Net (C#) libraries with NUnit, I came to following problem:
I have an enum which has the Flags attribute, e.g.
[Flags]
public enum Powers : int
{
Undefined = 0,
...
0
votes
2answers
29 views
Difference between <Flags> and <FlagsAttribute()>
On the MSDN Enum Class page, there are a couple examples of using Enums with the Flags Attribute. One is written:
<Flags> Public Enum Pets As Integer
and another is written:
...
0
votes
1answer
37 views
OpenGL compilation under debian - glGetUniformLocation not declared
I can't find a way to compile the following test code under Linux (part of a program developed for Mac)
#include<GL/glui.h>
void test(){
const char *name
GLint uni_loc,x,y ;
GLuint ...
1
vote
1answer
60 views
CMake FindBoost for -mt-s library suffix
First things first: Windows 7 x64 using Microsoft CL.exe command line compiler with CMake, properly configured on the amd64 Visual Studio command line. I have walked through a few basic problems ...
0
votes
1answer
26 views
How do I enable the REFS_OK flag in nditer in numpy in Python 3.3?
Does anyone know how one goes about enabling the REFS_OK flag in numpy? I cannot seem to find a clear explanation online.
My code is:
import sys
import string
import numpy as np
import pandas as pd
...
0
votes
1answer
13 views
Bison -v flag not doing anything
when I run bison on my .y file, all I get for output if there are any conflicts is something like:
Program.y: conflicts: 3 shift/reduce
Which if Program.y is more than a handful of lines long is ...
0
votes
1answer
31 views
Do event after PropertyChanged Event is done
I am trying to do a "Clear Flag" in my code. I have data being shown on the UI continuously, and I want the user to be able to clear the data when the code is running with a "Clear" button. I have a ...
0
votes
1answer
16 views
Converting a row into column keeping one field based on flags in Access
I am trying to find an answer to a question that I am trying to solve in Access. I can retrieve the following data from my input spreadsheet:
Recid Cat1 ...
0
votes
1answer
58 views
Flags, System.out.format Java
Talking about flags, it's described in the javadoc that the flag ' ' (empty space) will insert automatically an empty space instead of the sign "+" just at the beginning of the number.
However when I ...
3
votes
3answers
85 views
C# Enums - Check Flags against a Mask
I have the following enum flags:
[Flags]
private enum MemoryProtection: uint
{
None = 0x000,
NoAccess = 0x001,
ReadOnly = 0x002,
ReadWrite = 0x004,
...
0
votes
1answer
103 views
Multiple Conditions If Statement Bash Script
I'm trying to write a script that will check two error flags, and in case one flag (or both) are changed it'll echo-- error happened. My script:
my_error_flag=0
my_error_flag_o=0
do something.....
if ...
0
votes
1answer
54 views
Lauch parameters / flags / command line options / switches in Perl
As you see, I'm not completely sure what they're actually called.. I'm talking about when I launch a file, for instance client.pl. I would normally launch this by typing perl client.pl in terminal.
...
0
votes
2answers
29 views
Swap unix compiler flags with a shorter one
I've been running ns3 sumulations in linux and every time I compiled I had to type
g++ -Wall -o simulacija simulacija.cc -DNS3_ASSERT_ENABLE -DNS3_LOG_ENABLE `pkg-config --libs --cflags
...
0
votes
0answers
29 views
nmap with UDP XmasTree and Null packets not working
This my first post, and i very much appreciate the help.
I'm hoping this is as simple as using an out dated version or something like that.
i am trying to nmap -sU (UDP), -sX (Xmas tree), and -sN ...
0
votes
1answer
40 views
How to filter TCP packets based on flags using Packet Filter in OpenBSD
Well, I didn't know exactly how to ask this question, but I know that you can use the keyword flags to especify which flags you want to filter.
According to the documentation of the Packet filter:
...
0
votes
2answers
139 views
Clear Intent flags from an activity so that it resumes its original launch behavior
My application has an activity defined as launchMode="singleTop" that serves as the root activity.
<activity
android:name="com.package.LauncherActivity"
android:launchMode="singleTop"
...
0
votes
0answers
13 views
Setting std::io_base flags for custom stream class
I have a custom class called Stream
class Stream
public:
Stream& operator<<(int i) { stream_ << i; return *this;}
template <typename CustomClass>
...
0
votes
1answer
44 views
Set a flag on Google Maps - Ruby 1.9
I'm newbie in RoR.
I'm stuck in setting a flag (Image) on Google Maps at a point which is loaded from database (Latitude and Longitude).
Any help, please!
1
vote
1answer
28 views
How to pass in cflags through jam
I'm attempting to compile and link a DLL through Jam. This is a resource-only DLL, so I need to figure out how to pass in the /noentry flag to the linker through Jam.
Here's what my Jamfile looks ...
0
votes
0answers
36 views
FLAG_ACTIVITY_REORDER_TO_FRONT vs onSaveInstance()
I need to save the state of an Activity. It is a treeview, I draw it and as it takes a while I'd like not to start a new Activity every time I go to visit this page but using the already drawn page.
...
0
votes
0answers
23 views
Term for “flag” which is set by one and consumed by another entity?
is there a special term to emphasise the semantic meaning of a boolean flag which is set by one entity and consumed by another?
"Flag" as such can be all kind of usage, so it can be set and reset by ...
-1
votes
1answer
32 views
Good manual on Assembly flags
What is a good Manual/Article on all of the Assembly flags and what instructions affect each flags?
Thanks!
0
votes
1answer
102 views
IMAP Fetch Command - Returns all mail as Seen even when Unseen
I am downloading a message from Gmail using the following IMAP command:
UID FETCH 8590 (FLAGS UID RFC822.SIZE INTERNALDATE BODY.PEEK[HEADER] BODY)
Works great, except for one issue:
Message FLAGS ...
0
votes
2answers
140 views
Android - use of FLAG_ACTIVITY_NEW_TASK
I have created a simple application having a button. Clicking it triggers a notification, and clicking on the notification launches a new instance of the same application. However, I wanted that ...
2
votes
2answers
119 views
Get all set enum names from enum flags
How can I cast the return enum value to its integer value?
I want to get all flags which are set in the _allVisibleDays enum as integer values just like:
Tuesday and Wednesday are set then I want to ...
2
votes
5answers
187 views
Write multiple list enum values into another enum
From the client I get a List where each int value is the enum int value of the Enum DayOfWeek.
The list contains only those int values (days) which are visible in a time planner.
Taking the list of ...
0
votes
1answer
55 views
Xcode Linker Issue - Other LD Flags won't clear
I am a noob and am having an issue with linker flags.
I tried building my own ssh2 libraries, and then afterwards I cloned a git repository with a project in the libraries already built.
Before I ...
1
vote
1answer
57 views
threadable delay in python 2.7
I'm currently using python (2.7) to write a GUI that has some threads going on. I come across a point that I need to do a roughly about a second delay before getting a piece of information, but I ...
0
votes
2answers
36 views
Treating a class as a flag
Is it possible in C# to treat a class as a flag?
If I have class Foo
class Foo
{
// Do things...
}
and I have some variable (int or other), can I do something like this:
Foo test = new Foo();
Foo ...
0
votes
0answers
54 views
C# Enum Flags -= allowed, but += requires cast to int [duplicate]
I got a quick question for you; Why is -= allowed for enums, but += requires an explicit cast to int?
EnumTest value = EnumTest.Two;
value += EnumTest.One; // Compile error
value += ...
0
votes
2answers
116 views
How to change the eflags register value in GDB?
set $eflags does not change eflags value.
The old eflags value remains after eg. =>$set $eflag=0x243 [this is just an example input].
Alternatively, is there any way to set individual flags of ...
0
votes
0answers
16 views
Need help for wordpress widget
i'm have installed wordpress widget Transposh successively (http://wordpress.org/extend/plugins/transposh-translation-filter-for-wordpress/) it doesn't translate all the page some text remains in ...
1
vote
2answers
48 views
GDB Not showing EFlags Mnemonics
I'm currently working with GDB and NASM for assembly programming.
Unfortunately I am unable to see the EFlags register mnemonics (ZF, AF, PF etc...) inside GDB.
I am being shown a decimal value ...
-1
votes
2answers
161 views
Is it possible to set the carry, sign, and overflow flags together in x86 assembly language programming?
I am programming using the AT&T notation on the i386 architecture.
Is it possible to add two 8-bit numbers in order to set the Carry, Overflow, and Sign Flags to be set.
I am thinking it is ...
0
votes
0answers
59 views
Rules + flags sending email
I have an issue. There are 2 content types. Place and Event. Events using 1 field with Place name. People can bookmark Places. So the issue is. I want to make a rule on event: After saving a new ...
-6
votes
4answers
88 views
What are flags and bitfields?
Can someone explain to me what flags and bitfields are. They seems to be related to each other, or mabye i got the wrong idea. I kinda grasp bits and pieces of what they do and are but I would like to ...
0
votes
1answer
77 views
Highstock legend flags
My flag data looks like this:
events = [{"x":1116885600000,"title":"","name":"flag"}, {"x":1116738600000,"title":"","name":"flag"} ...]
Is it possible to show every element of my array "events" ...
1
vote
1answer
79 views
How to get unanswered mails using Java mail?
I have tried
ft = new FlagTerm(new Flags(Flags.Flag.ANSWERED), false);
to get list of unanswered mails from the inbox but returns all mails from inbox.
message.isSet(Flags.Flag.ANSWERED);
is ...
0
votes
0answers
75 views
HIGHSTOCK update flags
Heyho!
I want to create a chart, which updates his flags automatically when Im setting new extremes but it doesnt update the flags.
The json call works without any problem -> after changing the ...
-3
votes
2answers
158 views
Add other C flags XCode 4 [closed]
I blocked on this point. In my other C flags I have Debug and Release and also custom flags I wrote. But now I would like to add another custom one but I totally forget how I did last time and I can't ...
-1
votes
1answer
81 views
Adding flags to a batch script
I'm writing a Batch script that will run on a directory. I want to be able to add a flag (such as -r or /r or something like that) that will make the script run the folder tree instead of the single ...
0
votes
0answers
28 views
Matlab %#ok comment flags [duplicate]
There are many comment flags that appear periodically in Matlab code such as
%#ok<SAGROW>
%#ok<INUSD>
%#ok<INUSL>
What do these mean? And more importantly, where can I find a ...






