Skip to main content
Filter by
Sorted by
Tagged with
0 votes
2 answers
71 views

I've noticed that there are 2 times when startActivity with intent for the same Activity (FirstActivity) is called in my Android project, and it's called in both places like that: FirstActivity.intent(...
Ksenia's user avatar
  • 3,751
0 votes
1 answer
207 views

Our cloud contact center platform is being negatively impacted by the chromium flag "allow webrtc to adjust the input volume." ( Manually disabling it works, but we have ~550 users and I ...
Stephanie Wilson's user avatar
0 votes
0 answers
48 views

According this issue https://github.com/dart-lang/sdk/issues/57112, Experiment flags only works for code that is on the most recent language version, which is (theoretically) the language version the ...
TSR's user avatar
  • 21.5k
0 votes
0 answers
27 views

I want to disable the Zoom popup that asks to open the app when joining a meeting and stay on the browser. I have tried different flags but haven't been able to disable the popup. how disable this ...
HARSH SRIVASTAVA's user avatar
1 vote
1 answer
57 views

I am trying to flag observations with the same ID and Date but different results. Not all observations with the same ID and Date will have a different result but a large fraction do. I have already ...
Ryan's user avatar
  • 101
0 votes
0 answers
24 views

I downloaded homebrew, gcc14 and pasted the path on compiler. Then it worked when I pasted the flags: -DCMAKE_C_FLAGS="-Wall -Werror -pedantic-errors -lm -g" But it didn’t build and showed: ...
user28256843's user avatar
7 votes
1 answer
3k views

I am getting a warning in Xcode 16.0 that says "-ld_classic is deprecated and will be removed in a future release". I don't if I am supposed to replace ld_classic, although if I want to I ...
Linus Karlsson's user avatar
-1 votes
3 answers
92 views

I have a table with 2 columns ,So for each of the loans Either Letter A, Letter B or both of them is being sent to the Loan applicant. Base Table I need to create a new column that sets a Flag =1 ( If ...
Amrit's user avatar
  • 1
2 votes
1 answer
150 views

I have some Haskell source files with which I interact with and I was wondering: Is there a way to set command line options at the top of the file? I refer to GHCi command line options that we use ...
NickS1's user avatar
  • 594
0 votes
0 answers
135 views

So I have this script: #!/bin/bash # Set the PostgreSQL database connection details db_host="localhost" db_port="5432" db_name="" db_user="" db_password="&...
Llama0815's user avatar
0 votes
0 answers
54 views

I currently have a dxl that will delete too much text when running to delete indentations from the object text. Since I have been working on fixing this issue, it seems it isn't straightforward at all ...
user23613873's user avatar
0 votes
1 answer
153 views

I want to change flag UP to one, now it is UP = 0. I am using Visual Studio 64-bit assembly. (Intel calls this the "direction flag", DF). I tried this: .data source DB 'Hello, world!', 0 ...
Jessica Pawłowska's user avatar
0 votes
1 answer
344 views

I develop android application with launch mode "Single_instance". I want to run an external application from my activity, and bring back my activity to the screen. I'm using Intent....
br00k33r's user avatar
0 votes
1 answer
132 views

I want to run multiple for-loops in Matlab, each for-loop have large number of iterations so I use spmd to run them in parallel. All the for-loops will be break out if in a for-loop, a criterion is ...
Dat's user avatar
  • 103
0 votes
2 answers
120 views

i would like to have something like a 'timeline' chart with a label/tooltip mixed with other series type like 'line'. I have a datatipe like a 'flag' that is very repetitive so I would like to "...
Stefano Cucchi's user avatar
0 votes
0 answers
61 views

I enabled MSAA when creating a device in Directx9 and had to remove the D3DPRESENTFLAG_LOCKABLE_BACKBUFFER flag. However, since I removed this flag, SweetFX does not work. What can I do for it? ...
cvaqabond's user avatar
0 votes
2 answers
507 views

So I have this problem where ANDS R1, R2, R3 and to assume the flags are initially N=0 Z=0 C=0 V=1 Q=0 R1: 0000C5BF H R2: 0000A0F9 H R3: is 00000000 H I have to examine the end results of the ...
user788888's user avatar
0 votes
1 answer
171 views

I'm using MutationObserver to observe if any element with the class last-move changes its inline style. For example, it could look like this: <square class="last-move" style="...
bobby's user avatar
  • 25
0 votes
1 answer
186 views

Searched the Intel Manuals but couldn't find any internal descriptions of the reserved RFLAGS 32-63 bits. In this godbolt demo, when executed in 64-bit mode, the output displays the current state of ...
vengy's user avatar
  • 2,467
0 votes
1 answer
119 views

I have set a global environment varaiable in jenkins - flag which takes in values on and off I have multiple declarative pipelines in jenkins, some of which get triggered based on timers. Now I don't ...
yowaf21832's user avatar
1 vote
1 answer
231 views

I want to read a .dbf file in R that contains "deleted" rows. However, I don´t know how to avoid reading all records. I am using the package "foreign" and the function read.dbf. ...
ana_gg's user avatar
  • 370
0 votes
1 answer
141 views

I am working on a Python script using argparse library to handle command-line arguments. I want to enforce strict and case sensitive match for a specific flag. such as --signup , without allowing any ...
Saqib's user avatar
  • 55
0 votes
2 answers
154 views

I have a flagable enumeration. Flags { None = 0 A = 1 B = 2 C = 4 D = 8 } Than I have a condition where I must check if a variable flags is set with Flags.A and at ...
codekandis's user avatar
0 votes
1 answer
114 views

Good evening fellow coders, I'm currently working on a python-based project that uses flags, for which I use the Flag class from the enum library. What I am struggling to do, is update the contents of ...
Robot Fox's user avatar
0 votes
1 answer
692 views

We have an app which receives an urfave cli context object in a func: import "gopkg.in/urfave/cli.v1" func runApp(ctx *cli.Context) { cache := ctx.GlobalInt(MyFlag.Name) .... // do ...
unsafe_where_true's user avatar

1
2 3 4 5
30