problem
stringlengths
26
131k
labels
class label
2 classes
Why can't I predict for new observations in my linear model in R : <p>Please read this before insisting it's already been answered. I've reviewed similar questions to no avail. I have the very simple goal of building a simple linear model and predicting new values. Here's my code:</p> <pre><code>a &lt;- c(9024492, 837...
0debug
I'm new to android development field and was making a MusicApp. Getting stuck with the following : private OnClickListener onButtonClick = new OnClickListener() { // @Override public void OnClick(View v) { switch (v.getId()) { case R.id.play: { ...
0debug
static int parse_strk(AVFormatContext *s, FourxmDemuxContext *fourxm, uint8_t *buf, int size, int left) { AVStream *st; int track; if (size != strk_SIZE || left < size + 8) return AVERROR_INVALIDDATA; track = AV_RL32(buf + 8); if (...
1threat
rewrite java program as a hadoop job : This is my `java` program: import java.io.*; class evmTest { public static void main(String[] args) { try { Runtime rt = Runtime.getRuntime(); String command = "evm --debug --code 7f000000000000000000000000...
0debug
Bought a PowerBi premium P1 with report Server, but still we are not able to open shared reports without Pro : **My company has bought a PowerBi premium P1 with report Server, but still we are not able to open shared reports without Pro.** I have tried using Power bi App to open the shared reports but is asking to ...
0debug
How can i give dynamic id in jquery with append tag : My question is that i have two dynamic value in jquery how can i use these value with jquerty append. var pp=$(this).parents().eq(5).attr('id'); var tt = $('#'+pp).find('table').attr('id'); Now i want to use it in: ...
0debug
Replacing maximum value with minimum value in a array : <p>First input is n numbers then the numbers itself, then find the maximum value and minimum value and last, replace the maximum value with the minimum one. But this code doesn't work first test case ( 5 1 3 3 3 4 ), it returns 3 3 3 3 3. But it works on second te...
0debug
static struct omap_uwire_s *omap_uwire_init(MemoryRegion *system_memory, target_phys_addr_t base, qemu_irq txirq, qemu_irq rxirq, qemu_irq dma, ...
1threat
query = 'SELECT * FROM customers WHERE email = ' + email_input
1threat
AWS s3api json formatting error: Error parsing parameter 'cli-input-json': Invalid JSON: Expecting value: line 1 column 1 (char 0) : <p>Not sure what I'm getting wrong with my json format. Just trying to test out aws cli and run <code>aws s3api list-objects --cli-input-json &lt;json_file&gt;.json --profile &lt;profile_...
0debug
How to integrate an Angular 4 app with a Spring Boot stack? : <p>i would like to integrate an Angular 4 client app with a Java Spring application working on <code>http://localhost:8080/</code> and offering some Rest endpoints. My goal is to be able to call the Angular app from a url like <code>http://localhost:8080/adm...
0debug
Unsigned Number displays different results when a zero is appended to the number : <p>Why does this program display 2 different numbers when unsigned number is chnaged from '437' to '0437' cout statement? when I put 437 the cout shows 437 but when i use '0437' it shows '287'. Why is it so?</p> <pre><code>int main() { ...
0debug
Onclick Word Replacement not working correctly with PHP : <p>I have this code:</p> <p><code>&lt;a class='show' data-id='".$random."' href='javascript:void(0)' onclick='if(this.innerHTML == 'Click Here to Read More'){this.innerHTML = 'Click Here to Read Less'}else{this.innerHTML = 'Click Here to Read More'}'&gt;Click H...
0debug
static void register_to_network(RDMARegister *reg) { reg->key.current_addr = htonll(reg->key.current_addr); reg->current_index = htonl(reg->current_index); reg->chunks = htonll(reg->chunks); }
1threat
Getting a public IP for your computer or network : <p>I need to assign a public IP to my computer to access a CMS on a certain website. e.g <a href="http://www.example.com/wp-admin" rel="nofollow noreferrer">http://www.example.com/wp-admin</a>, a wordpress website has blocked access to their CMS and they will only allo...
0debug
static void quantize_mantissas_blk_ch(AC3EncodeContext *s, int32_t *fixed_coef, int8_t exp_shift, uint8_t *exp, uint8_t *bap, uint16_t *qmant, int n) { int i; for (i = 0; i < n; i++) { int v; int c = fixed_coef[...
1threat
Convert text data set to .arrd file : I have this data set https://archive.ics.uci.edu/ml/datasets/Sentiment+Labelled+Sentences and I need to convert it from .txt to .arff file to make classification with weka program . any help ?
0debug
import heapq from collections import Counter def rearange_string(S): ctr = Counter(S) heap = [(-value, key) for key, value in ctr.items()] heapq.heapify(heap) if (-heap[0][0]) * 2 > len(S) + 1: return "" ans = [] while len(heap) >= 2: nct1, char1 = heapq.heappop(heap) ...
0debug
How to fix '_react["default"].memo is not a function. (In '_react["default"].memo(connectFunction)' error in React native? : <p>I am trying to connect Redux mapStateToProps() and mapActionCreators() to Login Screen through Container and I am using React navigation.</p> <p>After build my app the following error message...
0debug
How do I create a "not" filter in python for pandas : <p>I have this large dataframe I've imported into pandas and I want to chop it down via a filter. Here is my basic sample code:</p> <pre><code>import pandas as pd import numpy as np from pandas import Series, DataFrame df = DataFrame({'A':[12345,0,3005,0,0,16455,...
0debug
How to rollback, reset, or drop Ecto test database? : <p>Usually <code>mix.test</code> cleans the test database, but it is not working. </p> <p>It may be because I was playing around with making a <code>users</code> schema, but didn't want to use what I made so I got rid of it. I then started over and made a new schem...
0debug
multiply a int in Java by it selft : Why if I multiply a int num = 2,147,483,647 by the same int num is returning 1 as result ? notes that i am in the limit of the int possible value. I already try to catch the exception but still give the result as 1
0debug
Helm V3 - Cannot find the official repo : <p>I have been trying to install nginx ingress using helm version 3</p> <pre><code>helm install my-ingress stable/nginx-ingress </code></pre> <p>But Helm doesn't seem to be able to find it's official <code>stable</code> repo. It gives the message: </p> <blockquote> <p>Erro...
0debug
Cant clean memory with delete[] in C++ : After uncommenting `delete[] array;` Im getting this error `CRT detected that the application wrote to memory after end of heap buffer` What do I have to do to correct this problem? ``` #include <iostream> using namespace std; int main(){ char ch; char* array =...
0debug
using map to check for true or false doesn't work : <p>I am trying no to use a loop as Im practicing map, filter etc. and wonder why my code doesn't work? </p> <pre><code>function checking(array,item){ var temporary=true; array.map(function(x){ if (x!=item){ temporary=false; } }); return temporary; } checking([...
0debug
from itertools import groupby def consecutive_duplicates(nums): return [key for key, group in groupby(nums)]
0debug
ImportError: cannot import name api - Error Configuring aws_cli on centos 7 : <p>I successfully installed aws using <code>pip install awscli --upgrade --user</code>. However, when I'm trying to <code>aws configure</code> or <code>aws --version</code>, I'm getting following error</p> <pre><code>Traceback (most recent c...
0debug
insert data in a std::map : <p>I have the following container:</p> <pre><code>map&lt;int,string,string&gt; data; </code></pre> <p>I have been trying to store information in that map using the following codes(one at a time) but none of them works.</p> <pre><code>data.insert( m, f, l ); data.insert( map&lt;int,string,...
0debug
How to setOnNavigationItemListener on BottomNavigationView in android using Kotlin? : <p>I use kotlin-android-extension and I can call <code>bottomNavigationView</code> id from layout file to kotlin file. I can use <code>bottomNavigationView.setOnNavigationItemSelectedListener(BottomNavigationView.OnNavigationItemSelec...
0debug
How to send an image onclick in a chat application : I have an application which includes chatting, I'm able to send texts however what I want to achieve is to send images whenever I click on one of the images in a gridview, so using the below code whenever I click on an image it displays in the chat a text however it'...
0debug
Json string desrialazation c# : [I have this json][1] and i want to desrialize it so i can get each object's value for example `"icon_url": "-9a81dlWLwJ2UUGcVs_nsVtzdOEdtWwKGZZLQHTxDZ7I56KU0Zwwo4NUX4oFJZEHLbXH5ApeO4YmlhxYQknCRvCo04DEVlxkKgpouLWzKjhzw8zFdC5K092kl5SClMj3PLXFhGpC_Pp8j-3I4IG7i1Hn_UI-Nmj3ItDGe1BoN1mCr1G4xL...
0debug
static gboolean qemu_chr_be_generic_open_bh(gpointer opaque) { CharDriverState *s = opaque; qemu_chr_be_event(s, CHR_EVENT_OPENED); s->idle_tag = 0; return FALSE; }
1threat
Render html in yii2 Gridview Widget : <p>That's how I am rendering the values on a grid view</p> <p><a href="https://i.stack.imgur.com/0SLKy.png" rel="noreferrer"><img src="https://i.stack.imgur.com/0SLKy.png" alt="enter image description here"></a></p> <p>but instead of links I can see the textual value. </p> <p><a...
0debug
Can I include and exclude html text with media queries? : <p>I've been using media queries quite a bit lately and I'm just trying to figure out what I can and can't change. My question is simple.</p> <p>Can you choose to exclude or include certain elements with @media queries?</p> <p>For example, having designed my w...
0debug
Can I do this relational algebra sentence in SQL? : <p>π LOC, DEPTNO(DEPT) – πDEPTNO (σLOC-‘DALLAS’(DEPT))</p>
0debug
alert('Hello ' + user_input);
1threat
static void usbredir_bulk_packet(void *priv, uint32_t id, struct usb_redir_bulk_packet_header *bulk_packet, uint8_t *data, int data_len) { USBRedirDevice *dev = priv; uint8_t ep = bulk_packet->endpoint; int len = bulk_packet->length; AsyncURB *aurb; DPRINTF("bulk-in status %d ep %0...
1threat
Data format: transform row to colum in R : This is my code but I want to format the data put it down in a web page. library(XML) noria=readHTMLTable("http://www.fundacionguanajuato.com/CGI-BIN/Clima/Actual.php?Est=noria") raws.data <- readLines(noria, warn="F") str(noria) noria #I get the result but ...
0debug
adding column filters to Angular collapsible material table with : I am using angular material table with collapsible feature. now i need to add column filters to my headers. can you help me to do it. <mat-form-field> <input matInput (keyup)="applyFilter($event.target.value)" placeholder="Filter"> ...
0debug
comparing list of objects in java 8 : This post may be duplicate one, apologies for that. I have worked extensively in Java-6, now moving to java 8. Is their efficient way to rewrite the below logic in Java 8. Comparing list of object with single object if "Identifier" parameter value is matching, return "true" ...
0debug
Changing style of a button on click : <p>Is it possible to change <code>background-color</code> of my button <code>onClick</code> function?</p> <p>ex. click <code>background-color: black</code>, another click <code>background-color: white</code> </p> <p>I've tried something like <code>this.style</code>, no result.</p...
0debug
Python natural smoothing splines : <p>I am trying to find a python package that would give an option to fit <em>natural smoothing splines</em> with user selectable smoothing factor. Is there an implementation for that? If not, how would you use what is available to implement it yourself?</p> <ul> <li><p>By natural spl...
0debug
Java -NullPointerException thrown and I'm not sure why : <p>I am writing a program, in which, I have a method called "equals" to test whether two 2-dimensional arrays are "equal" to each other. equals returns whether the two args are equivalent in the sense that If both args are null, return true If one arg is ...
0debug
How can I push to protected github branches with a deploy key : <p>We have github enterprise set up at work and I want a travis build to push code back to the repo as part of the master branch build. It basically updates the changelog, commits the file and need to push back to the repo. The problem is that we have prot...
0debug
static void to_meta_with_crop(AVCodecContext *avctx, AVFrame *p, int *dest) { int blockx, blocky, x, y; int luma = 0; int height = FFMIN(avctx->height, C64YRES); int width = FFMIN(avctx->width , C64XRES); uint8_t *src = p->data[0]; for (blocky = 0; blocky < C64YRES; blocky += 8) { ...
1threat
static int disas_cp14_write(CPUState * env, DisasContext *s, uint32_t insn) { int crn = (insn >> 16) & 0xf; int crm = insn & 0xf; int op1 = (insn >> 21) & 7; int op2 = (insn >> 5) & 7; int rt = (insn >> 12) & 0xf; TCGv tmp; if (arm_feature(env, ARM_FEATURE_THUMB2EE)) { if ...
1threat
how can i deserialize the above jason string to datatable in c# : {"m_MaxCapacity":2147483647,"Capacity":1888,"m_StringValue":"<table border=3><tr><th>Master ID</th><th>Tag ID</th><th>Plant ID</th><th>Machine Name</th><th>Sap ID</th><th>Log</th></tr><tr><td>2296</td><td>567</td><td>567</td><td>hjhnh</td><td>567</td><td...
0debug
static UHCIQueue *uhci_queue_get(UHCIState *s, UHCI_TD *td, USBEndpoint *ep) { uint32_t token = uhci_queue_token(td); UHCIQueue *queue; QTAILQ_FOREACH(queue, &s->queues, next) { if (queue->token == token) { return queue; } } queue = g_new0(UHCIQueue, 1); ...
1threat
Tensorflow, best way to save state in RNNs? : <p>I currently have the following code for a series of chained together RNNs in tensorflow. I am not using MultiRNN since I was to do something later on with the output of each layer.</p> <pre><code> for r in range(RNNS): with tf.variable_scope('recurent_%d' % r) as s...
0debug
Xamarin.Forms: How can I load ResourceDictionary from another file? : <p>I wrote following code, but XamlParseException has bean thrown. ("StaticResource not found for key CustomColor")</p> <p>MyPage.xaml</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;ContentPage xmlns="http://xamarin.com/schemas/201...
0debug
static int decode_fctl_chunk(AVCodecContext *avctx, PNGDecContext *s, uint32_t length) { uint32_t sequence_number; int cur_w, cur_h, x_offset, y_offset, dispose_op, blend_op; if (length != 26) return AVERROR_INVALIDDATA; if (!(s->state & PNG_IHDR)) { ...
1threat
int ff_mov_read_chan(AVFormatContext *s, AVStream *st, int64_t size) { AVIOContext *pb = s->pb; uint32_t layout_tag, bitmap, num_descr, label_mask; int i; if (size < 12) return AVERROR_INVALIDDATA; layout_tag = avio_rb32(pb); bitmap = avio_rb32(pb); num_descr = avio...
1threat
static uint32_t ahci_port_read(AHCIState *s, int port, int offset) { uint32_t val; AHCIPortRegs *pr; pr = &s->dev[port].port_regs; switch (offset) { case PORT_LST_ADDR: val = pr->lst_addr; break; case PORT_LST_ADDR_HI: val = pr->lst_addr_hi; break; ...
1threat
iterating over a list based on index using java : I have an ArrayList and I am iterating over the list to build a query but my query can have only 20000 characters so I am trying to iterate over certain index so I can have multiple query, how can I do it, any guidance would be helpful. for(int i=0;i<EntryList.si...
0debug
QEMUFile *qemu_popen_cmd(const char *command, const char *mode) { FILE *stdio_file; QEMUFileStdio *s; if (mode == NULL || (mode[0] != 'r' && mode[0] != 'w') || mode[1] != 0) { fprintf(stderr, "qemu_popen: Argument validity check failed\n"); return NULL; } stdio_file = pop...
1threat
Python program for identifying cellphone numbers based on the first four digits : cellnum = (input("Enter your 11-digit cellphone number with no spaces or dashes: ")) n1 = cellnum[:4] if n1 == "0917" or n1 == "0916": print(cellnum, "is Globe") elif n1 == "0935": print(cellnum, "is TM") elif n1 == "0918" or n1...
0debug
Conditional IN clause in SQL Server : <p>I have got a stored procedure which has five parameters. I want to include them in where clause as follows</p> <ul> <li>If parameter is not null then include it in query as an IN clause</li> </ul> <p>That is, parameter value can be like 'Test' or 'Test,Best' etc. I'm convertin...
0debug
Has a std::byte pointer the same aliasing implications as char*? : <p>C++ (and C) strict aliasing rules include that a <code>char*</code> and <code>unsigned char*</code> may alias any other pointer.</p> <p>AFAIK there is no analogous rule for <code>uint8_t*</code>.</p> <p>Thus my question: What are the aliasing rules...
0debug
Error C867 Within Header File's For Loop using "Length" : <p>I am making a program that converts Roman numerals and converts them into a decimal value. I have a header file that keeps giving me the following error:</p> <p><em>Error C3867 'std::basic_string,std::allocator>::length': non-standard syntax; use '&amp;' ...
0debug
cursor.execute('SELECT * FROM users WHERE username = ' + user_input)
1threat
static int vmdk_write_cid(BlockDriverState *bs, uint32_t cid) { char desc[DESC_SIZE], tmp_desc[DESC_SIZE]; char *p_name, *tmp_str; BDRVVmdkState *s = bs->opaque; memset(desc, 0, sizeof(desc)); if (bdrv_pread(bs->file, s->desc_offset, desc, DESC_SIZE) != DESC_SIZE) { return -EIO; ...
1threat
Calling out a code inside an if statement : I wanted to let the if statement perform the code inside it but it doesn't seem to do it at all, any idea on how I could let it perform the code inside? switch(act){ case 1: cout<<"Here are the list of activities in this section." <<endl; cout<<"[1.1]Conversion of C...
0debug
Why does Knuth use this clunky decrement? : <p>I'm looking at some of Prof. Don Knuth's code, written in CWEB that is converted to C. A specific example is dlx1.w, available from <a href="https://www-cs-faculty.stanford.edu/~knuth/programs.html" rel="noreferrer">Knuth's website</a></p> <p>At one stage, the .len value ...
0debug
Starting an app with android studio 'instant run' is very slow : <p>I just enabled instant run for my project. Building and uploading is faster but my app startup time has increased from a few hundreds of milliseconds to a few seconds.</p> <p>I'm generally happy with that compromise. I just wanted to know if I was the...
0debug
if a string starts with 'New: ',new message is starting : input_arr = [ "New: Hello", "How are", "you", "New: I am", "fine" ] def merge_messages(input_arr): #don't know that to do here return input_arr print(merge_messages(input_arr)) #Expected Output [ "New: Hello How...
0debug
'ts-node' is not recognized as an internal or external command, operable program or batch file : <p>I'm getting error in my Vs Code terminal and command prompt that <strong>'ts-node' is not recognized as an internal or external command, operable program or batch file.</strong> while i'm trying the start command in the ...
0debug
Consuming Java Generic in Kotlin - Java does not require specific generic, but Kotlin does : <p>I have this Java class that I want to use from Kotlin code.</p> <pre><code>class JavaDialogBuilder&lt;B extends JavaDialogBuilder&gt; </code></pre> <p>This java code compiles fine:</p> <pre><code>void javaTest() { new...
0debug
Deprecated - Methods with the same name as their class will not be constructors in a future version of PHP : <p>In php v 5 these php codes have no problem : </p> <pre><code>&lt;?php $ERRORS=array("INVALID_ERROR"=&gt;"Invalid/Unknown error", "ACCESS_DENIED"=&gt;"Access Denied", "INVALID_I...
0debug
Serilog in ASP.NET Core Windows Service cannot write file as Local System : <p>I am running an ASP.NET Core web server as a Windows service and am using Serilog to log to a file in %PROGRAMDATA%. When I run the service as Local System, nothing is logged.</p> <p>I am using .Net Core 2.2 on Windows 10. I am testing by t...
0debug
static void cadence_ttc_write(void *opaque, target_phys_addr_t offset, uint64_t value, unsigned size) { CadenceTimerState *s = cadence_timer_from_addr(opaque, offset); DB_PRINT("addr: %08x data %08x\n", offset, (unsigned)value); cadence_timer_sync(s); switch (offset) { case 0x00...
1threat
PHP install instructions? : <p>I need to learn php, but i'm struggling with the install process to run the code in a web browser.</p> <p>usually when I try to run a php code the screen stays white</p> <p>I tried to follow the php configuration process from some sites but usually I end up getting lost.</p> <p>So if a...
0debug
How to push to vue-router without adding to history? : <p>I have the following sequence happening:</p> <ul> <li><p>Main screen</p></li> <li><p>Loading screen</p></li> <li><p>Results screen</p></li> </ul> <p>On homepage, when someone clicks a button, I send them to the loading screen, thru:</p> <p><code>this.$router....
0debug
Python: ModuleNotFoundError : I am a beginner and learning Python. I have setup the environment with SublimeText and Python3.x I am fine in creating code on Sublime and building it locally through Ctrl+B and for input() function I installed SublimeREPL and it works find up till now. The issue I am facing is on Py...
0debug
Why does %d truncate 1.5 but %s prints the number correctly? : <p>I am taking the Python class at codecademy and I am supposed to print each item in a pair of dictionaries, followed by their prices and amount in stock. Here is the code I wrote:</p> <hr> <pre><code>prices = { "banana" : 4, "apple" : 2, "...
0debug
int cpu_x86_handle_mmu_fault(CPUX86State *env, target_ulong addr, int is_write1, int is_user, int is_softmmu) { uint64_t ptep, pte; uint32_t pdpe_addr, pde_addr, pte_addr; int error_code, is_dirty, prot, page_size, ret, is_write; unsigned long paddr, page_offset; ...
1threat
Can I include Aadhar details in android app by getting the aadhar number : <p>Sir I am doing a project on Android app development. Can I include Aadhar number and fetch details of the person by it? If so how? Please give me the code.</p>
0debug
static void filter_mb_mbaff_edgecv( H264Context *h, uint8_t *pix, int stride, int16_t bS[8], int qp[2] ) { int i; for( i = 0; i < 8; i++, pix += stride) { int index_a; int alpha; int beta; int qp_index; int bS_index = i; if( bS[bS_index] == 0 ) { ...
1threat
Find all n-dimensional lines and diagonals with NumPy : <p>Using NumPy, I would like to produce a list of all lines and diagonals of an n-dimensional array with lengths of k.</p> <hr> <p>Take the case of the following three-dimensional array with lengths of three.</p> <pre><code>array([[[ 0, 1, 2], [ 3, 4...
0debug
Resolving entity URI in custom controller (Spring HATEOAS) : <p>I have a project based on spring-data-rest and also it has some custom endpoints.</p> <p>For sending POST data I'm using json like </p> <pre><code>{ "action": "REMOVE", "customer": "http://localhost:8080/api/rest/customers/7" } </code></pre> <p>That ...
0debug
static void test_smram_lock(void) { QPCIBus *pcibus; QPCIDevice *pcidev; QDict *response; pcibus = qpci_init_pc(NULL); g_assert(pcibus != NULL); pcidev = qpci_device_find(pcibus, 0); g_assert(pcidev != NULL); smram_set_bit(pcidev, MCH_HOST_BRIDGE_SMRAM_D_OPEN, false); g_assert(s...
1threat
How to handle Internal server error (500) on spring rest API? : <p>Good day,</p> <p>I am working on spring rest api and i would like to sure everything is working fine. I would like to log abnormal behaviors like nullPointerException or database connection error or any Exception that could raise and not handled or not...
0debug
How to find the even numbers in my code? : <p>for my assignment I have to write another method called numberOfEvens which takes in the array of my random int generator code and uses a for loop to traverse through the array. Thus making it count the number of elements in the array which are even then returns this number...
0debug
static int tosa_dac_event(I2CSlave *i2c, enum i2c_event event) { TosaDACState *s = TOSA_DAC(i2c); s->len = 0; switch (event) { case I2C_START_SEND: break; case I2C_START_RECV: printf("%s: recv not supported!!!\n", __FUNCTION__); break; case I2C_FINISH: #ifdef...
1threat
What is `return of ()` syntax : <p>I'm looking at this snippet of code:</p> <p><a href="https://i.stack.imgur.com/JZXP5.png" rel="noreferrer"><img src="https://i.stack.imgur.com/JZXP5.png" alt="enter image description here"></a></p> <p>It's typescript. On the first line there is:</p> <pre><code>... return of (true);...
0debug
How can I do an average reverse in c#? : <p>I need to create a function that if i enter a number, return 3 numbers that your averange is the same number that I pass</p> <p>for example</p> <p>if i entered the number 3,92 the return value is a list of numbers 3,89 3,57 4,3 (Randomize)</p>
0debug
static void laio_cancel(BlockDriverAIOCB *blockacb) { struct qemu_laiocb *laiocb = (struct qemu_laiocb *)blockacb; struct io_event event; int ret; if (laiocb->ret != -EINPROGRESS) return; ret = io_cancel(laiocb->ctx->ctx, &laiocb->iocb, &event); if (ret == 0) { ...
1threat
yuv2mono_2_c_template(SwsContext *c, const int16_t *buf[2], const int16_t *ubuf[2], const int16_t *vbuf[2], const int16_t *abuf[2], uint8_t *dest, int dstW, int yalpha, int uvalpha, int y, enum PixelFormat target) { const ...
1threat
static void slirp_guestfwd(SlirpState *s, Monitor *mon, const char *config_str, int legacy_format) { struct in_addr server = { .s_addr = 0 }; struct GuestFwd *fwd; const char *p; char buf[128]; char *end; int port; p = config_str; if (legacy_format)...
1threat
static av_always_inline void rv40_weak_loop_filter(uint8_t *src, const int step, const ptrdiff_t stride, const int filter_p1, ...
1threat
connection.query('SELECT * FROM users WHERE username = ' + input_string)
1threat
static int qxl_init_primary(PCIDevice *dev) { PCIQXLDevice *qxl = DO_UPCAST(PCIQXLDevice, pci, dev); VGACommonState *vga = &qxl->vga; PortioList *qxl_vga_port_list = g_new(PortioList, 1); DisplayState *ds; int rc; qxl->id = 0; qxl_init_ramsize(qxl); vga->vram_size_mb = qxl->vg...
1threat
ssize_t slirp_send(struct socket *so, const void *buf, size_t len, int flags) { if (so->s == -1 && so->extra) { qemu_chr_fe_write(so->extra, buf, len); return len; } return send(so->s, buf, len, flags); }
1threat
static void usb_serial_event(void *opaque, int event) { USBSerialState *s = opaque; switch (event) { case CHR_EVENT_BREAK: s->event_trigger |= FTDI_BI; break; case CHR_EVENT_FOCUS: break; case CHR_EVENT_OPENED: usb_serial_reset(...
1threat
static void hScale16To19_c(SwsContext *c, int16_t *_dst, int dstW, const uint8_t *_src, const int16_t *filter, const int16_t *filterPos, int filterSize) { int i; int32_t *dst = (int32_t *) _dst; const uint16_t *src = (const uint16_t *) _src; i...
1threat
void qemu_set_dfilter_ranges(const char *filter_spec, Error **errp) { gchar **ranges = g_strsplit(filter_spec, ",", 0); int i; if (debug_regions) { g_array_unref(debug_regions); debug_regions = NULL; } debug_regions = g_array_sized_new(FALSE, FALSE, ...
1threat
Google Map API : Geometry Library is free? : I am using Google-maps Geometry Library, google.maps.geometry.spherical.computeDistanceBetween It is not available in pricing table anywhere. How google is charging money for the same. Is it coming under other library like places or distance-matrix? As far a...
0debug
combination of data frame columns in regression r : <p><br> I have a data frame with colnames A, B, C, D with numeric values. I am trying to generate a linear regression model using variables and trying all the possible combination like A, A+B, A+C, B, B+C ....<br> I am having trouble generating combinations with data ...
0debug
Git push/ pull error : <p>I use intellij terminal to get git repo. But when I try to pull or push I get this error:</p> <blockquote> <p>1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version.</p> </blockquote> <p>How can I fix the problem? Help me please.</p>
0debug
How to substring characters in sql : <p>Need your help guys! I don't know how to use substring yet. For example I have data like this </p> <pre><code>+-----------+ + Model + +-----------+ +-----------+ |Pal5c32gld | OUTPUT&gt;&gt;&gt; | Pal5c | |Pal5s64slv | | Pal5s | |Pal5sp...
0debug
how to inject javascript in HTML label? : I've registration form with same regular details with 'submit' button to fill up in order to get registered in the system. I tried to inject scripts into text boxes but those are protected. now I want to inject script on labels so whenever a person opens that page my injected s...
0debug