problem
stringlengths
26
131k
labels
class label
2 classes
Navigationbar coloring in ViewWillAppear happens too late in iOS 10 : <p>I am facing a weird bug, that happens only on iOS 10.</p> <p>I have a application with several screens, and each screen colors the <code>navigationBar</code> in <code>viewWillAppear</code>. So when you go to the next screen, it will be properly c...
0debug
How do I crop an image in Flutter? : <p>Let's say I have a rectangular, portrait image:</p> <p><a href="https://i.stack.imgur.com/lkd0a.png" rel="noreferrer"><img src="https://i.stack.imgur.com/lkd0a.png" alt="enter image description here"></a></p> <p>I'd like to crop it, such that it's rendered like this:</p> <p><a...
0debug
static void uhci_async_cancel_device(UHCIState *s, USBDevice *dev) { UHCIQueue *queue; UHCIAsync *curr, *n; QTAILQ_FOREACH(queue, &s->queues, next) { QTAILQ_FOREACH_SAFE(curr, &queue->asyncs, next, n) { if (!usb_packet_is_inflight(&curr->packet) || curr->packet.e...
1threat
static int configure_accelerator(void) { const char *p = NULL; char buf[10]; int i, ret; bool accel_initialised = false; bool init_failed = false; QemuOptsList *list = qemu_find_opts("machine"); if (!QTAILQ_EMPTY(&list->head)) { p = qemu_opt_get(QTAILQ_FIRST(&list->head), ...
1threat
static void audio_pp_nb_voices (const char *typ, int nb) { switch (nb) { case 0: printf ("Does not support %s\n", typ); break; case 1: printf ("One %s voice\n", typ); break; case INT_MAX: printf ("Theoretically supports many %s voices\n", typ); ...
1threat
Access props sent to components along with Redux state data : <p>Normally you can access props sent by parent to child on child component. But when redux is used on child components the props sent by parent is lost with use of 'connect' method which maps redux state with components props.</p> <p>E.g.:</p> <p>Declarin...
0debug
db.execute('SELECT * FROM employees WHERE id = ' + user_input)
1threat
My PHP 7 code will not work : <p>To those who have already installed PHP 7, and it works fine when you give PHP 7 code, please check my PHP 7 code and tell me if it works with you, (this code came from a book.) if it does not work then tell me how I could fix it, then if it does work, then tell me what else I have to i...
0debug
How does Bitmoji work? : <p>does anyone have an idea, how bitmoji or other similar services work? I have an idea for an app, which should have custom Avatars. </p> <p>There are multiple libraries for 3D-Games, which are based on Morphing. Easy. All the 2D-Characters however are seamingly made with sprites. But if you ...
0debug
SwiftUI can't tap in Spacer of HStack : <p>I've got a List view and each row of the list contains an HStack with some text view('s) and an image, like so:</p> <pre><code>HStack{ Text(group.name) Spacer() if (groupModel.required) { Text("Required").color(Color.gray) } Image("ic_collapse").renderingMode(...
0debug
How to limited show item in recyclerView on Android : In my application I want show some data and this data I should get from server.<br> I want when **Won** is **true** just show this item. if **won** is **false** show other data. (for see won, please see below json)<br> **My json :** { "statusCode": 2...
0debug
typeof(data.frame) shows "list" in R : <p>Can someone clarify why <strong>typeof (data.frame)</strong> shows <strong>list</strong> in R? In contrast, class gives expected type. E.g., demonstrate that using the built-in data.frame mtcars. </p> <pre><code>&gt; typeof(mtcars) [1] "list" &gt; class(mtcars) [1] "data.fram...
0debug
Decompile war file in eclipce : Hi i have WAR file with code java i need to decompile my war to project Eclipse To do that i install Eclipse Jee 2018-12 and i have clic in `File->import` and i selected warFile, and i put my file war but i have this when i go to src to see code java i have just pakage [![enter...
0debug
static int rd_frame(CinepakEncContext *s, const AVFrame *frame, int isakeyframe, unsigned char *buf, int buf_size) { int num_strips, strip, i, y, nexty, size, temp_size, best_size; AVPicture last_pict, pict, scratch_pict; int64_t best_score = 0, score, score_temp; #ifdef CINEPAK_REPORT_SERR int64_...
1threat
static int nbd_can_read(void *opaque) { NBDClient *client = opaque; return client->recv_coroutine || client->nb_requests < MAX_NBD_REQUESTS; }
1threat
In the member initializer list, can I create a reference to a member variable not in the list? : <p>Consider:</p> <pre><code>#include &lt;string&gt; #include &lt;iostream&gt; class Foo { public: Foo( char const * msg ) : x( y ) { y = msg; } std::string const &am...
0debug
ValueError: unknown url type: h : <p>I wrote an application in python to download the file at a specified hour but I received <strong>ValueError: unknown url type: h</strong> Error this is my code</p> <pre><code>import time,os,urllib2 coun=input("Enter count of the movies:") x=0 namelist=[] addresslist=[] os.chdir('D:...
0debug
C# Exception Handling:Display Exception Message through Main Method : i have three methods(including main method) where exception handling is done for each. now i want to print the exception messages of other methods through main method. **Note:** i want to use only one console.writeline() that to in main methods. ...
0debug
PCIBus *pci_apb_init(target_phys_addr_t special_base, target_phys_addr_t mem_base, qemu_irq *pic, PCIBus **bus2, PCIBus **bus3) { DeviceState *dev; SysBusDevice *s; APBState *d; dev = qdev_create(NULL, "pbm"); qdev_init(dev); s = sysbus_...
1threat
How to bundle video with application : <p>I have seen a lot of tutorials showing how to play a video from a URL but I want to be able to play a video that I put in my application before I build it. </p> <p>Is it possible?</p> <p>Also for those saying that my app will become too big, the video is only 267kb.</p>
0debug
Changing color when specific div is visible : <p>Please tell me how can I make this in the most right way.</p> <p>HTML:</p> <pre><code>&lt;div id="fixed-red" class="fixed-red"&gt;&lt;/div&gt; &lt;div id="fixed-green" class="fixed-green"&gt;&lt;/div&gt; &lt;div id="fixed-blue" class="fixed-blue"&gt;&lt;/div&gt; &lt;di...
0debug
Why is there no mention of any research paper linked to the StereoBM implementation of OpenCV? : <p>I am looking for any link or source, explaining the internal implementation of OpenCV StereoBM.</p>
0debug
paint_mouse_pointer(XImage *image, struct x11grab *s) { int x_off = s->x_off; int y_off = s->y_off; int width = s->width; int height = s->height; Display *dpy = s->dpy; XFixesCursorImage *xcim; int x, y; int line, column; int to_line, to_column; int pixstride = image->...
1threat
I have a name string, but how do I make it where the person's inputted name is spit back out in a Console.WriteLine : <p>I have a string <code>public static string playerName;</code>and I want to make it where they can input a name for the playerName and then i can put that string in a Console.WriteLine and it says wha...
0debug
static int svq1_decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) { const uint8_t *buf = avpkt->data; int buf_size = avpkt->size; MpegEncContext *s = avctx->priv_data; uint8_t *current, *previous; int result, i, x, y, width, h...
1threat
closing previous jframes while opening another : i have 2 jframes f1&f2 both having buttons b1&b2 respectively .The buttons b1&b2 switch frames ,ie if b1 is clicked it opens f2&if b2 is clicked it opens f1. but i want my program to close previous jframe when attempting to open a new jframe,ie if b1 is clicked it shou...
0debug
static uint64_t pci_config_get_pref_base(PCIDevice *d, uint32_t base, uint32_t upper) { uint64_t val; val = ((uint64_t)pci_get_word(d->config + base) & PCI_PREF_RANGE_MASK) << 16; val |= (uint64_t)pci_get_long(d->config + upper) << 32; return va...
1threat
How to get substrings without using substring() method in Java? : <p>I'm just looking for a simple way to be able to extract substrings without using the substring method. </p>
0debug
Repeated Errors Despite Correct Namespace [C++] : I added a class to ns3 and when using it I keep getting the error: ../scratch/seven.cc: In function ‘int main(int, char**)’: ../scratch/seven.cc:102:3: error: ‘RandomAppHelper’ was not declared in this scope RandomAppHelper source = RandomAppHelper (...
0debug
cursor.execute('SELECT * FROM users WHERE username = ' + user_input)
1threat
function that has an ajax events return undefined when called : <p>I have a function called 'getAuthor' and inside there's an ajax events running (refer below)</p> <pre><code>function getAuthor(id){ $.get('http://www.connectnigeria.com/articles/wp-json/wp/v2/users/74',function(e){ var author = e.name; ...
0debug
My todo list is bugged : Can some one help me? i'm trying to code a **simple todolist with JS** i'm begginer on this language, my tasks were adding ok, but when i created a button to complete the task it bugged everything. Here's my code <!DOCTYPE html> <html> <head> <title>TODO</...
0debug
I don't really understand. What does "nearest larger" means (Ruby) : : I am working on this question, but I still don't understand what exactly this question asks for? I don't know why expected output for ([2,3,4,8], 2) is equal to 3 Maybe 3 is the nearest number to 2?? or some other number in the array? I don'...
0debug
static void virtio_scsi_migration_state_changed(Notifier *notifier, void *data) { VirtIOSCSI *s = container_of(notifier, VirtIOSCSI, migration_state_notifier); MigrationState *mig = data; if (migration_in_setup(mig)) { if (!s->dataplane_started) { ...
1threat
How to Access styles from React? : <p>I am trying to access the width and height styles of a div in React but I have been running into one problem. This is what I got so far: </p> <pre><code>componentDidMount() { console.log(this.refs.container.style); } render() { return ( &lt;div ref={"container"...
0debug
Axios can't set data : <p>Here's my data:</p> <pre><code>data: function(){ return { contas: [{id: 3, nome: "Conta de telefone", pago: false, valor: 55.99, vencimento: "22/08/2016"}] //debug test value }; }, </code></pre> <p>And here's my get request:</p>...
0debug
Using @ViewBuilder to create Views which support multiple children : <p>Some Views in SwiftUI, like VStack and HStack support having multiple views as children, like this:</p> <pre class="lang-swift prettyprint-override"><code>VStack { Text("hello") Text("world") } </code></pre> <p>From what I gather, they use <a...
0debug
Why using operator OR (logical operator) in if-else, why not using AND (logcial operator) in if-else : <p>I made the alphabet with the appearance of using stars to form the alphabet, but I was confused as to why to use the OR operation instead of the AND operation on if-else?</p> <pre><code>int row,column; for(row=1;r...
0debug
static void sigp_initial_cpu_reset(CPUState *cs, run_on_cpu_data arg) { S390CPU *cpu = S390_CPU(cs); S390CPUClass *scc = S390_CPU_GET_CLASS(cpu); SigpInfo *si = arg.host_ptr; cpu_synchronize_state(cs); scc->initial_cpu_reset(cs); cpu_synchronize_post_reset(cs); si->cc = SIGP_CC_ORD...
1threat
def max_val(listval): max_val = max(i for i in listval if isinstance(i, int)) return(max_val)
0debug
Notice: ob_end_flush(): failed to send buffer of zlib output compression (1) in : <p>I don't have any problem on localhost. but when i tested my codes on server, end of every page i see this notice.</p> <p>my code:</p> <pre><code>&lt;?php ob_start(); include 'view.php'; $data = ob_get_contents(); ob_end_clean(); inc...
0debug
static int qio_dns_resolver_lookup_sync_inet(QIODNSResolver *resolver, SocketAddressLegacy *addr, size_t *naddrs, SocketAddressLegacy ***addrs, ...
1threat
static void spapr_reallocate_hpt(sPAPRMachineState *spapr, int shift, Error **errp) { long rc; g_free(spapr->htab); spapr->htab = NULL; spapr->htab_shift = 0; close_htab_fd(spapr); rc = kvmppc_reset_htab(shift); if (rc < 0) { ...
1threat
void qsb_free(QEMUSizedBuffer *qsb) { size_t i; if (!qsb) { return; } for (i = 0; i < qsb->n_iov; i++) { g_free(qsb->iov[i].iov_base); } g_free(qsb->iov); g_free(qsb); }
1threat
Testing a Promise using setTimeout with Jest : <p>I'm trying to understand Jest's asynchronous testing.</p> <p>My module has a function which accepts a boolean and returns a Promise of a value. The executer function calls <code>setTimeout</code>, and in the timed out callback the promise resolves or rejects depending ...
0debug
How to make a regex for numbers? : So i got this regex code `/[0-3][0-9][0-1][1-9]\d{2}[-\s]\d{4}?[^0-9]*|[0-3][0-9][0-1][1-9]\d{2}\d{4}/` This regex code take this kind of numbers: 1002821187 100282 1187 100282-1187 But i found out i dont want the numbers: 1002821187 So is it possible to make 1 regex code ...
0debug
Synchronous alternative for setState : <p>I know setState is asynchronous and it may not mutate the state immediately after calling setState(), is there any alternative method for changing the state synchronously or immediately mutating the state ?</p>
0debug
static av_cold int adpcm_decode_init(AVCodecContext * avctx) { ADPCMDecodeContext *c = avctx->priv_data; unsigned int max_channels = 2; switch(avctx->codec->id) { case CODEC_ID_ADPCM_EA_R1: case CODEC_ID_ADPCM_EA_R2: case CODEC_ID_ADPCM_EA_R3: case CODEC_ID_ADPCM_EA_XAS: m...
1threat
selecting every 3 consecutive elements starting from 1 by using nth selector : <p>i want to use the nth child selector to select my elements as shown in the example image below (the blue color elements are the ones that need to be selected, i have painted them blue in order to refer to ). I tried a lot of almost simila...
0debug
How can I communicate between running python code and nodejs : <p>I'd like to have some python code running and communicating with a nodejs express server. So far, I can get my nodejs server to call python functions via one of two mechanisms, either to spawn a python task or to have it talk to a zerorpc python server.<...
0debug
void set_link_completion(ReadLineState *rs, int nb_args, const char *str) { size_t len; len = strlen(str); readline_set_completion_index(rs, len); if (nb_args == 2) { NetClientState *ncs[MAX_QUEUE_NUM]; int count, i; count = qemu_find_net_clients_except(NULL, ncs, ...
1threat
int init_put_byte(ByteIOContext *s, unsigned char *buffer, int buffer_size, int write_flag, void *opaque, int (*read_packet)(void *opaque, uint8_t *buf, int buf_size), void (*write_packet)(void *opaque, uin...
1threat
Is it good to place a recycler view inside a recycler view : I am trying to make an app in which I have added a Horizontal recycler view. I want to make a vertical list of Horizontal Recycler views. Here, I am trying to make a list of the books of the different category, like I have added list of books in comics ca...
0debug
fgets() saving a skipping line char, not skipping inputs : <p>I know there is questions dealing with skipping inputs for <code>fgets()</code>; however i have not found any help with this problem online or asking friends around.</p> <p>I use:</p> <pre><code>fgets(tdataMplMsgStrng0_au8, 100, fpread); </code></pre> <p>...
0debug
static void test_validate_alternate(TestInputVisitorData *data, const void *unused) { UserDefAlternate *tmp = NULL; Visitor *v; v = validate_test_init(data, "42"); visit_type_UserDefAlternate(v, NULL, &tmp, &error_abort); qapi_free_UserDefAlternate(tmp)...
1threat
How to locate a check box based on the following html - Selenium WebDriver and C# : <p>I'm trying to enable specific check boxes contained within a page. Please see the HTML code below</p> <pre><code>&lt;div class="form-horizontal"&gt; &lt;div class="row"&gt; &lt;div class="col-sm-3"&gt; ...
0debug
void *qemu_realloc(void *ptr, size_t size) { if (!size && !allow_zero_malloc()) { abort(); } return oom_check(realloc(ptr, size ? size : 1)); }
1threat
static av_always_inline void avcodec_thread_park_workers(ThreadContext *c, int thread_count) { pthread_cond_wait(&c->last_job_cond, &c->current_job_lock); pthread_mutex_unlock(&c->current_job_lock); }
1threat
Submit an array string from codename one to PHP using connection request : <p>Am fetching data from mysqlite to a string array which i want to submit to PHP then update a mysql table. Any easy way out, because doesn't seem to work?</p>
0debug
Does Room support entity inheritance? : <p>I am trying to migrate our project to use Room, which, by the way, I think is an awesome step forward.</p> <p>I have the following structure:</p> <pre><code>public class Entity extends BaseObservable { @PrimaryKey(autoGenerate = true) @ColumnInfo(name = "_id", typeA...
0debug
static int kvm_irqchip_get_virq(KVMState *s) { uint32_t *word = s->used_gsi_bitmap; int max_words = ALIGN(s->gsi_count, 32) / 32; int i, bit; bool retry = true; again: for (i = 0; i < max_words; i++) { bit = ffs(~word[i]); if (!bit) { continue; ...
1threat
Mute a WebView in JavaFX, is it possible? : <p>Very simple. Is it possible to mute or control the volume of a JavaFX WebView? I googled for a while but I can't find any mention of this. I looked at the code for <code>WebView</code> and <code>WebEngine</code> and there doesn't seem to be anything about controlling the v...
0debug
AttributeError: 'NoneType' object has no attribute 'attname' (Django) : <p>I have a fairly complex model for which the first call to <code>MyModel.objects.create(**kwargs)</code> fails with</p> <blockquote> <p>AttributeError: 'NoneType' object has no attribute 'attname'</p> </blockquote> <p>The stack trace dives do...
0debug
void commit_start(BlockDriverState *bs, BlockDriverState *base, BlockDriverState *top, int64_t speed, BlockdevOnError on_error, BlockCompletionFunc *cb, void *opaque, const char *backing_file_str, Error **errp) { CommitBlockJob *s; BlockReopenQueue *re...
1threat
Slicing string in a dataframe : I have the following dataframe imported from a csv file: Speed event_id event_params gps_lng 0 0 Down "type":"Down","maximumangle":0,"duration":0 -81.98 1 0 Left "type":"Left","maximumangle":-38.57,"duration"... -81.98 2 0 Right "type":"Right","maximumangle":52.975,"duration... -81...
0debug
Python All my keys are using the same values : <p>I have a problem with my code! I am in the process of making a program that will create a file that will store words alongside thee definitions using dictionaries. So far, I have gotten it to work the way I intended, but when I see the results, each key that returns all...
0debug
socket.io connection event not firing in firefox : <p>Im having something like the below code.</p> <pre><code>&lt;script src="/socket.io/socket.io.js"&gt;&lt;/script&gt; &lt;script&gt; var socket = io('http://localhost:8080'); socket.on('connect', function(){ socket.on('some-event', function(data) {}); });...
0debug
int update_dimensions(VP8Context *s, int width, int height, int is_vp7) { AVCodecContext *avctx = s->avctx; int i, ret; if (width != s->avctx->width || height != s->avctx->height) { vp8_decode_flush_impl(s->avctx, 1); ret = ff_set_dimensions(s->avctx, width, height); ...
1threat
Destructuring array get second value? : <p>How to get array using destructing? </p> <pre><code>const num = [1,2,3,4,5]; const [ first ] = num; //1 </code></pre> <p><code>console.log(first)</code> I'm able to get 1, but when I try to do <code>const [ null, second ] = num</code> it has expected token error. How to get ...
0debug
static void mb_cpu_initfn(Object *obj) { CPUState *cs = CPU(obj); MicroBlazeCPU *cpu = MICROBLAZE_CPU(obj); CPUMBState *env = &cpu->env; static bool tcg_initialized; cs->env_ptr = env; cpu_exec_init(cs, &error_abort); set_float_rounding_mode(float_round_nearest_even, &env->fp_sta...
1threat
void tlb_fill(CPUState *cs, target_ulong addr, int is_write, int mmu_idx, uintptr_t retaddr) { bool ret; uint32_t fsr = 0; ARMMMUFaultInfo fi = {}; ret = arm_tlb_fill(cs, addr, is_write, mmu_idx, &fsr, &fi); if (unlikely(ret)) { ARMCPU *cpu = ARM_CPU(cs); CPU...
1threat
How to write the below snippet in python? : <pre><code>if(stuckSomewhere()||lost() == true) { stuckSomewhere().stop(); lost().stop(); debugAvailableOptions(); } </code></pre> <p>I'm pretty much newbie for python. I was exploring python but I'm unable to come to a solution for this snippet. </p>
0debug
static int ram_save_complete(QEMUFile *f, void *opaque) { rcu_read_lock(); migration_bitmap_sync(); ram_control_before_iterate(f, RAM_CONTROL_FINISH); while (true) { int pages; pages = ram_find_and_save_block(f, true, &bytes_transferred); i...
1threat
static int raw_write(BlockDriverState *bs, int64_t sector_num, const uint8_t *buf, int nb_sectors) { if (check_write_unsafe(bs, sector_num, buf, nb_sectors)) { int ret; ret = raw_write_scrubbed_bootsect(bs, buf); if (ret < 0) { return ret; }...
1threat
void helper_sysret(CPUX86State *env, int dflag) { int cpl, selector; if (!(env->efer & MSR_EFER_SCE)) { raise_exception_err(env, EXCP06_ILLOP, 0); } cpl = env->hflags & HF_CPL_MASK; if (!(env->cr[0] & CR0_PE_MASK) || cpl != 0) { raise_exception_err(env, EXCP0D_GPF, 0); ...
1threat
could someone explain how this code can be reversed? (recursion) : got code from Pierre Fourgeaud (internet) but i cant understand how it can be reversed? void reverse( string& word ) { if ( word.size() <= 1 ) return; // Get the string without the first and the last char string temp = word.substr( ...
0debug
Find an easy web server framework for mobile game : <p>I need a web server to provide api interface like login/ranking for a mobile game, which web framework should I use, I primary program C++ before.</p>
0debug
Where a thread object is created in stack or in heap memory? : <p>Actually I was asked this question recently in an interview , I answered stack , am I right as I thought that threads would be executing methods, but could you please explain as why threads get created in stack or if not then why is it created in heap.</...
0debug
How to remove character outside a string from a tab delimited text : <p>I have a file lets say "Mrinq_Parts_Available.txt" which looks like this.</p> <pre><code>Source Date Category SubCategory Present Description Value Units Vendor Part No Package Box Name Location Quantity Ordered Used MOQ=1 ...
0debug
Use print instead of return, why? : Why this doesn't work? from random import randint def jump(): return randint(1, 6) jump() Why do I have to use `print` instead of `return`?
0debug
Intent getting null in onReceive in MyAlarm class even though I sat putEctra while sending intent : MainActivity: package com.jimmytrivedi.alarmdemo; import android.app.AlarmManager; import android.app.PendingIntent; import android.content.Context; import android.content.Intent; im...
0debug
static int mpeg1_decode_sequence(AVCodecContext *avctx, const uint8_t *buf, int buf_size) { Mpeg1Context *s1 = avctx->priv_data; MpegEncContext *s = &s1->mpeg_enc_ctx; int width, height; int i, v, j; init_get_bits(&s->gb, buf, buf_size * 8); width =...
1threat
static void socket_start_incoming_migration(SocketAddressLegacy *saddr, Error **errp) { QIOChannelSocket *listen_ioc = qio_channel_socket_new(); qio_channel_set_name(QIO_CHANNEL(listen_ioc), "migration-socket-listener"); if (qio_...
1threat
Why 'scanner is never closed ' don't disappear? : [Source Code][1] Why in the 13 Line, Despite I wrote 'scanner.close() in Line 46', Warning about scanner is not disappear? [1]: https://i.stack.imgur.com/uJIet.jpg
0debug
How to itierate over objects in an array? : I have an array object as mentioned below; var myArray=[{dateformat:"apr1", score:1},{dateformat:"apr2",score:2},{dateformat:"apr3",score:3}]; I would like to extract the values of dateformat into seperate array fex. var dateArray=["apr1","apr2","apr3"]; var score=[1,2,3]...
0debug
int ff_new_chapter(AVFormatContext *s, int id, int64_t start, int64_t end, const char *title) { AVChapter *chapter = NULL; int i; for(i=0; i<s->num_chapters; i++) if(s->chapters[i]->id == id) chapter = s->chapters[i]; if(!chapter){ chapter= av_mallocz(sizeof(AVCha...
1threat
Unable to inject ActivatedRouteSnapshot : <p>Injecting ActivatedRouteSnapshot into a component is not working (and neither is injecting ActivatedRoute). Here the stack trace:</p> <pre><code>"Error: Can't resolve all parameters for ActivatedRouteSnapshot: (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?). at SyntaxError.ZoneAwareError...
0debug
Google maps, update directions on click : <p>I need to show 3 different routes to the same point on google maps (or any maps as an alternative), on my website, so I have map shown on the top, and three clickable boxes under it, and when a user click on specific box the map would show direction according to it. Example ...
0debug
int ff_mjpeg_decode_sos(MJpegDecodeContext *s, const uint8_t *mb_bitmask, int mb_bitmask_size, const AVFrame *reference) { int len, nb_components, i, h, v, predictor, point_transform; int index, id, ret; const int block_size = s->lossless ? 1 : 8; int ilv, prev_shift; if (!s-...
1threat
C# framework 2.0 Return two value from method : <p>i create a dll with C# framework 2.0 and want use that in another applications... but i have a problem i cannot return two value from method for example: </p> <pre><code> public string Two_String_Returner() { int aa = 50; string bb = "Hello"...
0debug
open form on html button click in asp.net using C# : <p>will any body help me in opening a form on button click?? Thanks in advance.</p> <p><strong>aspx.cs Code:</strong></p> <pre><code> public string wogrid() { string htmlStr = ""; con.COpen(); string qry = "SELECT ...
0debug
Appcelerator Studio apps does not run after El Capitan Update. Invalid Request on compile : <p>As the title says, After I have updated my OS to El Capitan all my apps on Appcelerator Studio does not build successfully anymore. Even newly created sample apps does not build. I only get a very generic error message from t...
0debug
static void up_heap(uint32_t val, uint32_t *heap, uint32_t *weights) { uint32_t initial_val = heap[val]; while (weights[initial_val] < weights[heap[val >> 1]]) { heap[val] = heap[val >> 1]; val >>= 1; } heap[val] = initial_val; }
1threat
How to check the docker-compose file version? : <p>I would like to make sure that I'm using version 3 of the compose file format. However, on <a href="https://docs.docker.com/compose/compose-file/" rel="noreferrer">https://docs.docker.com/compose/compose-file/</a> I was not able to find out how to do this.</p> <p>My D...
0debug
static void qxl_log_cmd_draw(PCIQXLDevice *qxl, QXLDrawable *draw, int group_id) { fprintf(stderr, ": surface_id %d type %s effect %s", draw->surface_id, qxl_name(qxl_draw_type, draw->type), qxl_name(qxl_draw_effect, draw->effect)); switch (draw->type) { case QXL_D...
1threat
Add members into Array in runtime : How can I add other member (during declaration of class) into array/dictionary? Any workarounds? public class X{ private string[] texts = new string[]{}; // or lets say it's dictionary ..... ..... ..... ..... ...
0debug
static CharDriverState *qemu_chr_open_pipe(ChardevHostdev *opts) { const char *filename = opts->device; CharDriverState *chr; WinCharState *s; chr = g_malloc0(sizeof(CharDriverState)); s = g_malloc0(sizeof(WinCharState)); chr->opaque = s; chr->chr_write = win_chr_write; chr->c...
1threat
document.write('<script src="evil.js"></script>');
1threat
static uint32_t get_cmd(ESPState *s, uint8_t *buf, uint8_t buflen) { uint32_t dmalen; int target; target = s->wregs[ESP_WBUSID] & BUSID_DID; if (s->dma) { dmalen = s->rregs[ESP_TCLO]; dmalen |= s->rregs[ESP_TCMID] << 8; dmalen |= s->rregs[ESP_TCHI] << 16; if (d...
1threat
Reading from txt file to ArrayList : Why it does not like parseInt? How to fix it? Can someone pls help me out import java.lang.*; import java.io.BufferedReader; import java.io.File; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; ...
0debug