problem
stringlengths
26
131k
labels
class label
2 classes
Initialize map with pair of std::arrays c++11 : <p>I would like to compile this lines. Insert to map pair of std::arrays.</p> <pre><code>#include&lt;iostream&gt; #include&lt;map&gt; #include&lt;array&gt; #include&lt;utility&gt; using namespace std; int main() { array&lt;double, 8&gt; l; array&lt;double, 8&gt; r;...
0debug
Need more clarification of the css syntax : in css block: .navbar-custom .nav li a:hover{ outline:none; background-color: rgba(255,255,255,0.2); } does this mean: 'hover effect applies to the a tag in the navbar-custom's sub class nav' list element "? If no please clarify
0debug
static int drive_init(struct drive_opt *arg, int snapshot, QEMUMachine *machine) { char buf[128]; char file[1024]; char devname[128]; char serial[21]; const char *mediastr = ""; BlockInterfaceType type; enum { MEDIA_DISK, MEDIA_CDROM } media; int bus_id, u...
1threat
Discarding alpha channel from images stored as Numpy arrays : <p>I load images with numpy/scikit. I know that all images are 200x200 pixels.</p> <p>When the images are loaded, I notice some have an alpha channel, and therefore have shape (200, 200, 4) instead of (200, 200, 3) which I expect.</p> <p>Is there a way to ...
0debug
AioContext *qemu_get_aio_context(void) { return qemu_aio_context; }
1threat
Why I Am Getting Error While Running a Bat File? : The code is as follows: @Echo off Set _File=SQLQuery.txt Set /a _Lines=0 For /f %j in ('Type %_File%^|Find "" /v /c') Do Set /a _Lines=%j Echo %_File% has %_Lines% lines. When I run as a bat file it gives me error as 'the syntax of the com...
0debug
AWS CodeCommit - fatal: repository 'https://git-codecommit.us-east-1..' not found : <p>I have an AWS account. I created a repository in us-east-1 region. When I try to access it from my Mac's terminal I get an error <code>fatal: repository 'https://git-codecommit.us-east-1.amazonaws.com/v1/repos/demo/' not found</code>...
0debug
Set global $PATH environment variable in VS Code : <p>I'm defining a custom <code>$PATH</code> environment variable in my <code>~/.bash_profile</code> (on a Mac), like so:</p> <pre><code>PATH="$HOME/.cargo/bin:$PATH:$HOME/bin" </code></pre> <p>However, VS Code of course does not run my <code>.bash_profile</code>, so ...
0debug
text field should get active in reverse order : i have six text fields one after another which is used for typing passcode. after one character , next text field becomes active.But how to do for backspace? On keyboard backspace , text field should get active in reverse order
0debug
void kvm_ioapic_dump_state(Monitor *mon, const QDict *qdict) { IOAPICCommonState s; kvm_ioapic_get(&s); ioapic_print_redtbl(mon, &s); }
1threat
static inline void gen_intermediate_code_internal(CPUState *env, TranslationBlock *tb, int search_pc) { DisasContext ctx, *ctxp = &ctx; opc_handler_t **table, *handler; target_ulong pc_start; uint1...
1threat
android studio issue in signing in to an application : I have an issue regarding signing in..! <!-- begin snippet: js hide: false console: true babel: false --> <!-- language: lang-js --> package com.example.myapplication; import android.app.ProgressDialog; import android.content.Intent...
0debug
CSS3 selectors p.para vs. p .para : <p>I read the following, but I don;t fully understand the meaning of these selectors. Could you please provide an example showing the difference between them? Thx.</p> <p><a href="https://i.stack.imgur.com/Gllss.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/Glls...
0debug
static void palmte_onoff_gpios(void *opaque, int line, int level) { switch (line) { case 0: printf("%s: current to MMC/SD card %sabled.\n", __FUNCTION__, level ? "dis" : "en"); break; case 1: printf("%s: internal speaker amplifier %s.\n", ...
1threat
static inline TCGv gen_ld32(TCGv addr, int index) { TCGv tmp = new_tmp(); tcg_gen_qemu_ld32u(tmp, addr, index); return tmp; }
1threat
static void sbr_hf_assemble(int Y1[38][64][2], const int X_high[64][40][2], SpectralBandReplication *sbr, SBRData *ch_data, const int e_a[2]) { int e, i, j, m; const int h_SL = 4 * !sbr->bs_smoothing_mode; const int k...
1threat
static mfxIMPL choose_implementation(const InputStream *ist) { static const struct { const char *name; mfxIMPL impl; } impl_map[] = { { "auto", MFX_IMPL_AUTO }, { "sw", MFX_IMPL_SOFTWARE }, { "hw", MFX_IMPL_HARDWARE }, ...
1threat
DeviceState *pxa2xx_gpio_init(target_phys_addr_t base, CPUState *env, qemu_irq *pic, int lines) { DeviceState *dev; dev = qdev_create(NULL, "pxa2xx-gpio"); qdev_prop_set_int32(dev, "lines", lines); qdev_prop_set_int32(dev, "ncpu", env->cpu_index); qdev_init_nofail(dev); ...
1threat
programaticaly setting grid width as a string, ie: "auto" or "*", "10", or "*2", or "*3", etc : Here's what i'm trying to do: XAML: <local:MegaGrid MegaRow="auto,auto,*"> <Button Grid.Row="0" Content="btn1"/> <Button Grid.Row="1" Content="btn2"/> <Button Grid.Row="2" Content="btn3 s...
0debug
Filters vs interceptors in web application : <p>I could not get the correct difference between filters and interceptors. So Please explain me the exact use of filters and interceptors in java based web application with some sample snippet.</p>
0debug
Java library for encoding/decoding audio files, such as mp3 and mp4 : <p>Could you please provide me some non-deprecated java library for usage in maven repository for encoding/decoding audio files, such as mp3 and mp4? </p> <p>What I need exactly is to convert mp3 to mp4 on the fly and vice versa.</p> <p>I've found ...
0debug
Modify spellNumber VBA so the words not starts with "one" : My issue is that I want to modify the VBA code of converting numbers to words so I don't want the words to start with "one" for now it's not clear for you let me make it more clear for you: Current VBA result: 100 One Hundred 1000 One Thousand Desired...
0debug
void bdrv_register(BlockDriver *bdrv) { if (!bdrv->bdrv_co_readv) { bdrv->bdrv_co_readv = bdrv_co_readv_em; bdrv->bdrv_co_writev = bdrv_co_writev_em; if (!bdrv->bdrv_aio_readv) { bdrv->bdrv_aio_readv = bdrv_aio_readv_em; bdrv->bdrv_aio_wri...
1threat
Algorithm for merging spatially close paths / line segments : <p>I am looking for (the name of) a geometric algorithm for cartographic generalization of a street map.</p> <p>In my map data, I have many paths (ordered list of points, connected by line segments) that lay close and almost parallel to one another. How do ...
0debug
Rust external library macro : I have a project tree like this: main.rs: external crate lib; mod a; fn main() { a::some_func(); } a.rs: use lib; fn some_func() { lib::func(); } this works ok. but when i try to use a macro from 'lib', it gives me an error...
0debug
How to use jQuery with rails webpacker 3 : <p>I generate a new rails app : <code> rails new titi --webpack=vue </code></p> <p>and would like to use jQuery (or other libs like popper, vue-resource...).</p> <p>I tried to <code>yarn add jquery</code>which was fine, but I don't have access to jQuery in my JavaScript code...
0debug
Use Conda environment in pycharm : <p>Conda env is activated using <strong>source activate env_name</strong>. </p> <p>How can I activate the environment in pycharm ?</p>
0debug
How to calculate count and percentage of total for each rank using pandas : I have a data set with a column called ratings from 1 to 5. The result should be as follows: Rating Count Count % 1 10 6.66% 2 20 13.33% 3 30 20.00% 4 40 26.66% 5 50 33.33% Tot...
0debug
Excel Cell Range Name Clears After Saving File : I have a problem regarding excel cell range. So I have an excel file containing cell ranges but when I save it and reopened the same file some cell ranges were missing. I have tried "save as" but still same results. I have also searched but still no luck. Hope someone he...
0debug
Tensorflow apply op to each element of a 2d tensor : <p>What I'm after is the ability to apply a tensorflow op to each element of a 2d tensor e.g.</p> <pre><code>input = tf.Variable([[1.0, 2.0], [3.0, 4.0]) myCustomOp = ... # some kind of custom op that operates on 1D tensors finalResult = tf.[thing I'm after](input, ...
0debug
how can i add value in different variable after clicking + in javascript : document.querySelector('.buttons').addEventListener('click',function(e) { var targetElement = event.target || event.srcElement; var selectednumber=targetElement.dataset.number; var element = document.getElementById('display'); element...
0debug
how to add circle ImagView to the left side of button : [how to add circle ImagView to the left side of button similar like this][1] [1]: https://i.stack.imgur.com/QPnxW.jpg
0debug
static void test_validate_fail_struct(TestInputVisitorData *data, const void *unused) { TestStruct *p = NULL; Error *err = NULL; Visitor *v; v = validate_test_init(data, "{ 'integer': -42, 'boolean': true, 'string': 'foo', 'extra': 42 }"); visit_type...
1threat
void qemu_sem_post(QemuSemaphore *sem) { int rc; #if defined(__APPLE__) || defined(__NetBSD__) pthread_mutex_lock(&sem->lock); if (sem->count == INT_MAX) { rc = EINVAL; } else if (sem->count++ < 0) { rc = pthread_cond_signal(&sem->cond); } else { rc = 0; } ...
1threat
Search for code in GitHub using GraphQL (v4 API) : <p>I am using the GitHub's GraphQL API to search for files/code containing a particular word. A simple (contrived) example of a search which in this case is to find the term "beef" in files located in "recipes" (the repo) for "someuser" (the owner for the repo) is sho...
0debug
void vnc_client_write(void *opaque) { VncState *vs = opaque; vnc_lock_output(vs); if (vs->output.offset #ifdef CONFIG_VNC_WS || vs->ws_output.offset #endif ) { vnc_client_write_locked(opaque); } else if (vs->csock != -1) { qemu_set_fd_handler(vs->csoc...
1threat
JS limit the number of decimal places in a number : <p>I have a js that grabs values, multiplies, sums, divides, and then puts them in a cell of a table. The result can be up to (I think) 15 decimal places. How do I limit it to two?</p> <p>ex.: Result of math operation: 5.223567 I want: 5.22</p> <p>I want to truncate...
0debug
void ff_cavs_mv(AVSContext *h, enum cavs_mv_loc nP, enum cavs_mv_loc nC, enum cavs_mv_pred mode, enum cavs_block size, int ref) { cavs_vector *mvP = &h->mv[nP]; cavs_vector *mvA = &h->mv[nP-1]; cavs_vector *mvB = &h->mv[nP-4]; cavs_vector *mvC = &h->mv[nC]; const cavs_vector *...
1threat
what are ( Angular, Node.js, AJAX, JQuery)? : <p>I really have a hard time to distinguish between all those frameworks, libraries or API I don't know, and how they related to each if they do.</p>
0debug
How to plot three sets of comparative data in R : <p>I have this dataframe called <code>mydf</code> where I have column <code>Gene_symbol</code> and three different columns (cancers), <code>AML</code>,<code>CLL</code>,<code>MDS</code>. I want to plot the percentage of each gene in these cancers. What would be the good ...
0debug
Why True != True != True is False. : If explanation given in python then will be very much help full. True != True is false False != True should be true. Please correct me where i am doing wrong.
0debug
static int xen_pt_msgctrl_reg_write(XenPCIPassthroughState *s, XenPTReg *cfg_entry, uint16_t *val, uint16_t dev_value, uint16_t valid_mask) { XenPTRegInfo *reg = cfg_entry->reg; XenPTMSI *msi = s->msi; uint16_t writable_mask = 0; ...
1threat
How to find /dev/ name of USB Device for Serial Reading on Mac OS? : <p>I am trying to plug in a device into my Macbook and connect to it to read it's serial port. I know the device connects on baudrate 115200.</p> <p>Currently, I run the command</p> <p><code>ioreg -p IOUSB -l -b | grep -E "@|PortNum|USB Serial Numbe...
0debug
Javascript .animate() not working in HTML page : As simple as it is, I am wondering how is it possible that my little div is not getting any bigger. Anyone knows why? (p.s. I've tried to run it on every browser and i really can't find any syntax errors, I'm getting blind.. or just older) <!DOCTYPE ...
0debug
How to bind params in PDO when using OOP : I am using OOP for my project and PDO. I have a class, in that class, I have a method like this: public function insert($fields){ //$fields is the array containing key and values like this // $fields['name'=>'name_field','city'=>'city_field']...
0debug
int bdrv_is_sg(BlockDriverState *bs) { return bs->sg; }
1threat
Countdown timer decrements in a delayed manner? : <p>I've been working on a game; in which one of the main components is a countdown timer- however this timer is delayed and I am not able to deduce why. I would like it to decrement once per second, however it seems to be decrementing at once every 6 seconds.</p> <p>He...
0debug
static VirtIOSerialPort *find_port_by_name(char *name) { VirtIOSerial *vser; QLIST_FOREACH(vser, &vserdevices.devices, next) { VirtIOSerialPort *port; QTAILQ_FOREACH(port, &vser->ports, next) { if (!strcmp(port->name, name)) { return port; } ...
1threat
Pyhton - Functions using Dictionary name and Key as argument : qualifier_2 = {'KKR' : {'Chris Lynn': 4, 'Sunil Narine': 10, 'Gautam Gambhir (c)': 12, 'Robin Uthappa (wk)': 1, 'Ishank Jaggi': 28, 'Coli...
0debug
How to add Conditional CSS class based on Python If statement : <p>How do you add a conditional CSS class based on a Python if statement in the following example to show the <code>has-success has-feedback</code> form element?</p> <pre><code>&lt;div class="form-group {% if not error_username %} has-success has-feedback...
0debug
Converting an method from objective c to swift : <p>Hi guys how can i convert this code into swift.</p> <pre><code> (id &lt;UIViewControllerAnimatedTransitioning&gt;)navigationController:(UINavigationController *)navigationController animationControllerForOperation:(UINavigationContr...
0debug
m_get(Slirp *slirp) { register struct mbuf *m; int flags = 0; DEBUG_CALL("m_get"); if (slirp->m_freelist.m_next == &slirp->m_freelist) { m = (struct mbuf *)malloc(SLIRP_MSIZE); if (m == NULL) goto end_error; slirp->mbuf_alloced++; if (slirp->mbuf_alloced > MBUF_THRESH) flags = M_DOFREE; ...
1threat
static inline void RENAME(rgb32to15)(const uint8_t *src, uint8_t *dst, unsigned src_size) { const uint8_t *s = src; const uint8_t *end; #ifdef HAVE_MMX const uint8_t *mm_end; #endif uint16_t *d = (uint16_t *)dst; end = s + src_size; #ifdef HAVE_MMX mm_end = end - 15; #if 1 asm volatile( "movq %3,...
1threat
How do you debug an Angular 6 library : <p>I'm writing an Angular 6 Library and cannot figure out how to step into the typescript.</p> <p>I generated the app using: <code>ng new mylibapp</code></p> <p>I then added the library using: <code>ng g library @abc/cool-lib -p abc</code></p> <p>when I perform: <code>ng build...
0debug
static av_cold int svq1_encode_end(AVCodecContext *avctx) { SVQ1EncContext *const s = avctx->priv_data; int i; av_log(avctx, AV_LOG_DEBUG, "RD: %f\n", s->rd_total / (double)(avctx->width * avctx->height * avctx->frame_number)); s->m.mb_type = NULL;...
1threat
How do I combine multiple OpenAPI 3 specification files together? : <p>I want to combine an API specification written using the OpenAPI 3 spec, that is currently divided into multiple files that reference each other using <code>$ref</code>. How can I do that?</p>
0debug
Unexpected && T_BOOLEAN_AND with username and password form - PHP : <p>So I've got a very simple html page which uses a post php method to send the username and password to the php script. However I get the error: unexpected '&amp;&amp;' (T_BOOLEAN_AND) when the details are passed to the script. Any ideas why?</p> <p>...
0debug
S390CPU *s390x_new_cpu(const char *typename, uint32_t core_id, Error **errp) { S390CPU *cpu = S390_CPU(object_new(typename)); Error *err = NULL; object_property_set_int(OBJECT(cpu), core_id, "core-id", &err); if (err != NULL) { goto out; } object_property_set_bool(OBJECT(cpu), ...
1threat
"app keep stopping" why cant i run my app? : My app keeps stopping when I open the emulator when it opens. tried putting in a different application only the first screen and class and still stopped. its shows: E/AndroidRuntime: FATAL EXCEPTION: main Process: com.example.dearpet, PID: 31496 java.lang.Ru...
0debug
static void adb_kbd_reset(DeviceState *dev) { ADBDevice *d = ADB_DEVICE(dev); KBDState *s = ADB_KEYBOARD(dev); d->handler = 1; d->devaddr = ADB_DEVID_KEYBOARD; memset(s->data, 0, sizeof(s->data)); s->rptr = 0; s->wptr = 0; s->count = 0; }
1threat
Next.js: fetching data in getInitialProps(): server-side vs client-side : <p>I'm using Next.js, and I have a custom server using Express. I have a page that requires some data from the database.</p> <p><code>getInitialProps()</code>, when running on the server, could just grab the data from the database and return it,...
0debug
C the Heap using in Fuctions still not clear : <p>I'm still confused about the errors that I get while compiling to solve my code. I tried to make two simple functions. One that initialize an array and put 0 in every index and the other that prints that function out.</p> <p>Following code:</p> <pre class="lang-c pret...
0debug
How to relate two sql table : Hi I have two tables cars and owners . ownerno is the primary key in table owners. I would like to know how I can put ownerno as foreign key in cars table and still insert values that are different from my first table cars REGNO MAKE COLOUR PRICE OWNERNO KAA462J FORD RED 12000...
0debug
CharDriverState *qemu_chr_open_msmouse(void) { CharDriverState *chr; chr = g_malloc0(sizeof(CharDriverState)); chr->chr_write = msmouse_chr_write; chr->chr_close = msmouse_chr_close; chr->explicit_be_open = true; qemu_add_mouse_event_handler(msmouse_event, chr, 0, "QEMU Microsoft Mous...
1threat
static void bonito_spciconf_writew(void *opaque, target_phys_addr_t addr, uint32_t val) { PCIBonitoState *s = opaque; PCIDevice *d = PCI_DEVICE(s); PCIHostState *phb = PCI_HOST_BRIDGE(s->pcihost); uint32_t pciaddr; uint16_t status; DPRINTF("bonito_spc...
1threat
Manually constructing a trivial base class via placement-new : <p><em>Beware, we're skirting the dragon's lair.</em></p> <p>Consider the following two classes:</p> <pre><code>struct Base { std::string const *str; }; struct Foo : Base { Foo() { std::cout &lt;&lt; *str &lt;&lt; "\n"; } }; </code></pre> <p>As ...
0debug
How can I change the height of the ListView item(UWP) that is clicked? Like Mail App does : I have created a simple ListView item in XAML and I want to change height of Item that is clicked, like the Mail app does in Windows. And also please don't suggest method that require MMVM, cos I am new to devloping.
0debug
Auto update chat system : <p>I am trying to auto update my chat system whenever a user Types a message but there are no good tutorials on YouTube i can update when a user starts typing but i want it to be live ive tried: Infinite loops (page crashed) and When a user Types update (i want it live)</p> <p>And my page c...
0debug
When should I use `publishReplay` vs `shareReplay`? : <p>I already know that</p> <ul> <li><p><code>publish</code> shares a single subscription and also returns a <code>ConnectableObservable</code> ( so we have to <code>Connect()</code>)</p></li> <li><p><code>Share()</code> is <code>publish().refcount()</code></p></l...
0debug
static void kill_channel(DBDMA_channel *ch) { DBDMA_DPRINTF("kill_channel\n"); ch->regs[DBDMA_STATUS] |= cpu_to_be32(DEAD); ch->regs[DBDMA_STATUS] &= cpu_to_be32(~ACTIVE); qemu_irq_raise(ch->irq); }
1threat
tslint-loader with webpack 2.1.0-beta.25 : <p>I have an angular2 Project that I compress/compile with webpack.</p> <p>I use tslink loader with webpack so I have tslint related configuration in <code>webpack.config.js</code>.</p> <pre><code>module.exports = { ... tslint: { configuration: { rules: { ...
0debug
static TCGv gen_lea_indexed(CPUM68KState *env, DisasContext *s, TCGv base) { uint32_t offset; uint16_t ext; TCGv add; TCGv tmp; uint32_t bd, od; offset = s->pc; ext = cpu_lduw_code(env, s->pc); s->pc += 2; if ((ext & 0x800) == 0 && !m68k_feature(s->env, M68K_FEATURE_WORD_INDEX)) ...
1threat
Set in javascript : Can you clarify why boolean is used while adding objects to the WeakMaps in the code below. I understand set takes two(key and value) arguments. The boolean values gets printed in the console as well…that is my doubt… Thanks in Advance. const book1 = { title: ‘Pride and Prejudice’, author:...
0debug
Parse JSON using Newtonsoft.Json C# : <p>I have the following json string:</p> <pre><code>{ "data": { "id": "1", "city": "London" }, "cityDetails": { "_id": "1", "location": "UK", "th": 0, "title": "Default Group", } }, "limit": 0.60451203584671021, "_id": "1234" } </code...
0debug
.NET decompiler distinction between "using" and "try...finally" : <p>Given the following C# code in which the <em>Dispose</em> method is called in two different ways:</p> <pre><code>class Disposable : IDisposable { public void Dispose() { } } class Program { static void Main(string[] args) { ...
0debug
static uint64_t nvic_sysreg_read(void *opaque, target_phys_addr_t addr, unsigned size) { uint32_t offset = addr; if (offset >= 0xfe0) { if (offset & 3) { return 0; } return nvic_id[(offset - 0xfe0) >> 2]; } if (si...
1threat
static sPAPRDREntitySense logical_entity_sense(sPAPRDRConnector *drc) { if (drc->dev && (drc->allocation_state != SPAPR_DR_ALLOCATION_STATE_UNUSABLE)) { return SPAPR_DR_ENTITY_SENSE_PRESENT; } else { return SPAPR_DR_ENTITY_SENSE_UNUSABLE; } }
1threat
How to change button color by click another button from another activity permanently : i have a problem i have button A in first activity and button B in second activity,i want when someone click button B in second activity then color of A button is change permanently it never reverse to previous colour again when ev...
0debug
how to run the python script file which contains some arguments to pass? : I have a module which contains the python code and I execute using the following code: python script.py \ --eps 12 \ --minpts \ --train \ --predict \ --lower_case \ --input_file data.csv \ ...
0debug
Getting error ImportMismatchError while running py.test : <p>When I am running tests locally its working fine, but after creating the docker and running inside the container I am getting below error.</p> <pre><code> /usr/local/lib/python3.5/site-packages/_pytest/config.py:325: in _getconftestmodules return self...
0debug
Ho do I perform an active sleep/timeout in Nodejs? : <p>I know that Javascript is single-threaded and blocking the event loop is not the right way. But I was wondering if there is a way to perform something like <code>sleep(5000ms)</code> to <strong>simulate</strong> code that takes a long time to perform.</p> <p>I ne...
0debug
angular 2 include html templates : <p>in angular 2 I need to create a large html-template with redundant parts. Therefore I want to create multiple html-templates and put them together by including them in the main html-file (like ng-include in angular1)</p> <p>But how can I include sub-templates in the main-template?...
0debug
static void scsi_do_read(void *opaque, int ret) { SCSIDiskReq *r = opaque; SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, r->req.dev); uint32_t n; if (r->req.aiocb != NULL) { r->req.aiocb = NULL; bdrv_acct_done(s->qdev.conf.bs, &r->acct); } if (ret < 0) { ...
1threat
I wan't to center my blog body in blogger : I want to center my blog body (Posts and Pages) in blogger, its a custom template Link: www.temsah.ga I tried adding this code below `</b:skin>` : <style> #sidebar-atas1 { display: none; } #main-wrapper { width: 100%; backgrou...
0debug
C# - How do I check if all files in folder have certain extension : <p>I need to check if all files in folder have a certain extension. I am trying to display a message/form if all the files in the folder have a .txt extension. Can anyone please provide code on how this can be done? Thanks.</p>
0debug
static void *sigwait_compat(void *opaque) { struct sigfd_compat_info *info = opaque; int err; sigset_t all; sigfillset(&all); sigprocmask(SIG_BLOCK, &all, NULL); do { siginfo_t siginfo; err = sigwaitinfo(&info->mask, &siginfo); if (err == -1 && errno == EI...
1threat
C programming error: expected '{' before string constant : <p>Here is the error I am receiving,</p> <pre><code>drivers/mmc/host/sdhci-msm.c: In function 'sdhci_msm_probe': drivers/mmc/host/sdhci-msm.c:169:23: error: expected '{' before string constant #define HOST_MMC_MMC "mmc0" ^ drivers/mmc/...
0debug
Python type hints for types not yet defined : <p>How do I provide type hints for an alternative constructor for a class? For example if I have a method like this converting something to my new class,</p> <pre><code>class MyClass: @classmethod def from_string(cl: Type[????], s: str) -&gt; ????: p, q = s...
0debug
What is the meaning of this -> symbol in Java? : <p>I am not able to understand how to make this code should work in Java7</p> <pre><code>RetryPolicy retryPolicy = new RetryPolicy() .retryWhen((ClientResponse response) -&gt; response.getStatus() != 200) .withDelay(1, TimeUnit.SECONDS) .withMaxRetries(3); Recurr...
0debug
static int img_convert(int argc, char **argv) { int c, ret = 0, n, n1, bs_n, bs_i, compress, cluster_size, cluster_sectors; int progress = 0, flags; const char *fmt, *out_fmt, *cache, *out_baseimg, *out_filename; BlockDriver *drv, *proto_drv; BlockDriverState **bs = NULL, *out_bs = NULL; ...
1threat
int virtio_bus_device_plugged(VirtIODevice *vdev) { DeviceState *qdev = DEVICE(vdev); BusState *qbus = BUS(qdev_get_parent_bus(qdev)); VirtioBusState *bus = VIRTIO_BUS(qbus); VirtioBusClass *klass = VIRTIO_BUS_GET_CLASS(bus); VirtioDeviceClass *vdc = VIRTIO_DEVICE_GET_CLASS(vdev); DPRIN...
1threat
static int configure_video_filters(FilterGraph *fg) { InputStream *ist = fg->inputs[0]->ist; OutputStream *ost = fg->outputs[0]->ost; AVFilterContext *in_filter, *out_filter, *filter; AVCodecContext *codec = ost->st->codec; AVBufferSinkParams *buffersink_params = av_buffersink_params_alloc();...
1threat
how to set the equivalent of a src attribute of an img tag in CSS? : Currently, I am doing like this: <img class="myimg" /> .mgimg{ content:url('/images/user_logo.png') center no-repeat; } But the image is not getting displayed. I want to achieve it without using background image
0debug
Watch route changes in Vue.js with Typescript : <p>I'd like to detect changes in my URL in a Vue.js application using TypeScript. In JavaScript this can be done as follows:</p> <pre><code>watch: { '$route': { handler: 'onUrlChange', immediate: true, deep: true } }, onUrlChange(newUrl){ // Some ...
0debug
static av_cold int alac_decode_init(AVCodecContext * avctx) { int ret; int req_packed; ALACContext *alac = avctx->priv_data; alac->avctx = avctx; if (alac->avctx->extradata_size != ALAC_EXTRADATA_SIZE) { av_log(avctx, AV_LOG_ERROR, "expected %d extradata bytes\n", ...
1threat
With Circe Json why is implicit resolution slower at runtime : <p>Why is Circe Json slower with implicit decoder lookup compared to saving the implicit decoder to a val.</p> <p>I would expect these to be the same because implicit resolution is done at runtime.</p> <pre><code>import io.circe._ import io.circe.generic....
0debug
MYSQL HELP PLEASE CANNOT INPUT ENTRY BECAUSE OF FOREIGN KEY? : Hello i need help please, i keep getting this error when trying to add an entry to one of my tables. Trying to add this code: `INSERT INTO ROUTE VALUES ('7418','66','200','313');` into this table CREATE TABLE ROUTE ( ROUTE_ID INT NOT NULL P...
0debug
static int proxy_readdir_r(FsContext *ctx, V9fsFidOpenState *fs, struct dirent *entry, struct dirent **result) { return readdir_r(fs->dir, entry, result); }
1threat
How to convert date of string format to another string format in swift(ios) : <p>I have a string "<strong>2020-01-01T00:00:00</strong>". How shall I convert it to another string of format <strong>"01-Jan-2020"</strong> in swift (iOS)?</p>
0debug
Javascript new Date() giving different outputs for different timezones : <p>I have below code in my function</p> <pre><code>alert(date); var result = new Date(date); alert(result); </code></pre> <p>Output as below</p> <p>When I set my system time as India</p> <pre><code>2017-11-07 Tue Nov 07 2017 05:30:00 GMT...
0debug