<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
#include <iostream> | |
#include <stdint.h> | |
namespace Home { namespace Arun { | |
class Log | |
{ | |
public: | |
static void Init(std::string& logPath, std::string& logFilename, | |
int32_t maxFileSize); |
mode := release | |
CC := gcc | |
v := 0 | |
cov := 0 | |
arc := 64 | |
ifeq ($(cov), 0) | |
else | |
COV_CFLAGS = -fprofile-arcs -ftest-coverage | |
COV_LFLAGS = -lgcov | |
endif |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
char **explode(char *string, char separator, int *arraySize) | |
{ | |
int start = 0, i, k = 0, count = 2; | |
char **strarr; | |
for (i = 0; string[i] != '\0'; i++){ | |
/* Number of elements in the array */ |
#include <errno.h> | |
#include <unistd.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <dirent.h> | |
#include <pthread.h> | |
#define NAME_MAX (256) | |
/* #define MAX_THREADS (99) */ |
<?xml version="1.0" encoding="UTF-8"?> | |
<style-scheme version="1.0" name="Inkpot (Dark)"> | |
<style name="Text" foreground="#cfcfcf" background="#141414"/> | |
<style name="Link" foreground="#409090"/> | |
<style name="Selection" foreground="#ffffff" background="#4e4e8f"/> | |
<style name="LineNumber" foreground="#5f5fff" background="#2e2e2e"/> | |
<style name="SearchResult" foreground="#000000" background="#ffef0b"/> | |
<style name="SearchScope" foreground="#000000" background="#f8fafc"/> | |
<style name="Parentheses" foreground="#ffff00" background="#4e4e8f"/> | |
<style name="CurrentLine" foreground="#000000" background="#2d2d32"/> |
#include <unistd.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <stdio.h> | |
#include <stdbool.h> | |
#include <arpa/inet.h> | |
#include <pthread.h> | |
void* do_work(void *arg) | |
{ |
import std.stdio; [59/187] | |
// import std.math; | |
import core.stdc.stdio; | |
import core.stdc.math; | |
enum pi = 3.141592653589793; | |
enum solar_mass = (4 * pi * pi); | |
enum days_per_year = 365.24; | |
struct Planet { |
Intel(R) Core(TM) i7-6770HQ CPU @ 2.60GHz | |
16 GB RAM | |
--- | |
dmd memcpyd.d | |
./memcpyd | |
size memcpyC memcpyD | |
1 38096 26341 | |
2 40524 27605 |
# maximum capability of system | |
user@ubuntu:~$ cat /proc/sys/fs/file-max | |
708444 | |
# available limit | |
user@ubuntu:~$ ulimit -n | |
1024 | |
# To increase the available limit to say 200000 | |
user@ubuntu:~$ sudo vim /etc/sysctl.conf |