repo_full_name
stringlengths
6
93
repo_url
stringlengths
25
112
repo_api_url
stringclasses
28 values
owner
stringclasses
28 values
repo_name
stringclasses
28 values
description
stringclasses
28 values
stars
int64
617
98.8k
forks
int64
31
355
watchers
int64
990
999
license
stringclasses
2 values
default_branch
stringclasses
2 values
repo_created_at
timestamp[s]date
2012-07-24 23:12:50
2025-06-16 08:07:28
repo_updated_at
timestamp[s]date
2026-02-23 15:23:15
2026-05-03 18:52:12
repo_topics
listlengths
0
13
repo_languages
unknown
is_fork
bool
1 class
open_issues
int64
3
104
file_path
stringlengths
3
208
file_name
stringclasses
509 values
file_extension
stringclasses
1 value
file_size_bytes
int64
101
84k
file_url
stringclasses
627 values
file_raw_url
stringclasses
627 values
file_sha
stringclasses
624 values
language
stringclasses
8 values
parsed_at
stringdate
2026-05-04 01:12:36
2026-05-04 19:41:55
text
stringlengths
100
102k
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
go/nxt_cgo_lib.h
null
null
null
null
null
null
C
2026-05-04T19:39:34.079674
/* * Copyright (C) Max Romanov * Copyright (C) NGINX, Inc. */ #ifndef _NXT_CGO_LIB_H_INCLUDED_ #define _NXT_CGO_LIB_H_INCLUDED_ #include <stdint.h> #include <stdlib.h> #include <sys/types.h> #include <nxt_unit.h> #include <nxt_unit_request.h> enum { NXT_FIELDS_OFFSET = offsetof(nxt_unit_request_t, fields) }...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
fuzzing/nxt_json_fuzz.c
null
null
null
null
null
null
C
2026-05-04T19:39:34.081669
/* * Copyright (C) NGINX, Inc. */ #include <nxt_main.h> #include <nxt_conf.h> #include <nxt_router.h> #define KMININPUTLENGTH 2 #define KMAXINPUTLENGTH 1024 extern int LLVMFuzzerInitialize(int *argc, char ***argv); extern int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size); extern char **environ; in...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni.c
null
null
null
null
null
null
C
2026-05-04T19:39:34.082942
/* * Copyright (C) NGINX, Inc. */ #include <nxt_auto_config.h> #include <jni.h> #include <nxt_unit.h> #include <nxt_unit_field.h> #include "nxt_jni.h" static jclass nxt_java_NoSuchElementException_class; static jclass nxt_java_IOException_class; static jclass nxt_java_IllegalStateException_class; st...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
fuzzing/nxt_http_h1p_peer_fuzz.c
null
null
null
null
null
null
C
2026-05-04T19:39:34.125963
/* * Copyright (C) NGINX, Inc. */ #include <nxt_main.h> /* DO NOT TRY THIS AT HOME! */ #include "nxt_h1proto.c" #define KMININPUTLENGTH 2 #define KMAXINPUTLENGTH 1024 extern int LLVMFuzzerInitialize(int *argc, char ***argv); extern int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size); extern char **e...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni.h
null
null
null
null
null
null
C
2026-05-04T19:39:34.127622
/* * Copyright (C) NGINX, Inc. */ #ifndef _NXT_JAVA_JNI_H_INCLUDED_ #define _NXT_JAVA_JNI_H_INCLUDED_ #include <jni.h> #include <nxt_unit_typedefs.h> int nxt_java_jni_init(JNIEnv *env); void nxt_java_throw_NoSuchElementException(JNIEnv *env, const char *msg); void nxt_java_throw_IOException(JNIEnv *env, const...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni_HeaderNamesEnumeration.h
null
null
null
null
null
null
C
2026-05-04T19:39:34.993373
/* * Copyright (C) NGINX, Inc. */ #ifndef _NXT_JAVA_HEADERNAMESENUMERATION_H_INCLUDED_ #define _NXT_JAVA_HEADERNAMESENUMERATION_H_INCLUDED_ #include <jni.h> #include <nxt_unit_typedefs.h> int nxt_java_initHeaderNamesEnumeration(JNIEnv *env, jobject cl); jobject nxt_java_newHeaderNamesEnumeration(JNIEnv *env, n...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni_HeadersEnumeration.c
null
null
null
null
null
null
C
2026-05-04T19:39:34.994307
/* * Copyright (C) NGINX, Inc. */ #include <nxt_auto_config.h> #include <nxt_unit.h> #include <nxt_unit_request.h> #include <jni.h> #include <stdio.h> #include "nxt_jni.h" #include "nxt_jni_URLClassLoader.h" #include "nxt_jni_HeadersEnumeration.h" static jclass nxt_java_HeadersEnumeration_class; static jmet...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni_Context.c
null
null
null
null
null
null
C
2026-05-04T19:39:34.996670
/* * Copyright (C) NGINX, Inc. */ #include <nxt_auto_config.h> #include <nxt_unit.h> #include <jni.h> #include "nxt_jni.h" #include "nxt_jni_Context.h" #include "nxt_jni_URLClassLoader.h" static jclass nxt_java_Context_class; static jmethodID nxt_java_Context_start; static jmethodID nxt_java_Context_servi...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni_HeaderNamesEnumeration.c
null
null
null
null
null
null
C
2026-05-04T19:39:34.997266
/* * Copyright (C) NGINX, Inc. */ #include <nxt_auto_config.h> #include <nxt_unit.h> #include <nxt_unit_request.h> #include <jni.h> #include <stdio.h> #include "nxt_jni.h" #include "nxt_jni_URLClassLoader.h" #include "nxt_jni_HeaderNamesEnumeration.h" static jlong JNICALL nxt_java_HeaderNamesEnumeration_nextEle...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni_Context.h
null
null
null
null
null
null
C
2026-05-04T19:39:34.998798
/* * Copyright (C) NGINX, Inc. */ #ifndef _NXT_JAVA_CONTEXT_H_INCLUDED_ #define _NXT_JAVA_CONTEXT_H_INCLUDED_ #include <jni.h> int nxt_java_initContext(JNIEnv *env, jobject cl); jobject nxt_java_startContext(JNIEnv *env, const char *webapp, jobject classpaths); void nxt_java_service(JNIEnv *env, jobject c...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni_OutputStream.h
null
null
null
null
null
null
C
2026-05-04T19:39:35.203639
/* * Copyright (C) NGINX, Inc. */ #ifndef _NXT_JAVA_OUTPUTSTREAM_H_INCLUDED_ #define _NXT_JAVA_OUTPUTSTREAM_H_INCLUDED_ #include <jni.h> int nxt_java_initOutputStream(JNIEnv *env, jobject cl); int nxt_java_OutputStream_flush_buf(JNIEnv *env, nxt_unit_request_info_t *req); #endif /* _NXT_JAVA_OUTPUTSTREAM_H_I...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni_OutputStream.c
null
null
null
null
null
null
C
2026-05-04T19:39:35.229718
/* * Copyright (C) NGINX, Inc. */ #include <nxt_auto_config.h> #include <jni.h> #include <nxt_unit.h> #include "nxt_jni.h" #include "nxt_jni_OutputStream.h" #include "nxt_jni_URLClassLoader.h" static void JNICALL nxt_java_OutputStream_writeByte(JNIEnv *env, jclass cls, jlong req_info_ptr, jint b); static nx...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni_InputStream.c
null
null
null
null
null
null
C
2026-05-04T19:39:35.231403
/* * Copyright (C) NGINX, Inc. */ #include <nxt_auto_config.h> #include <jni.h> #include <nxt_unit.h> #include <string.h> #include "nxt_jni.h" #include "nxt_jni_InputStream.h" #include "nxt_jni_URLClassLoader.h" static jint JNICALL nxt_java_InputStream_readLine(JNIEnv *env, jclass cls, jlong req_info_ptr, j...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni_InputStream.h
null
null
null
null
null
null
C
2026-05-04T19:39:35.232603
/* * Copyright (C) NGINX, Inc. */ #ifndef _NXT_JAVA_INPUTSTREAM_H_INCLUDED_ #define _NXT_JAVA_INPUTSTREAM_H_INCLUDED_ #include <jni.h> int nxt_java_initInputStream(JNIEnv *env, jobject cl); #endif /* _NXT_JAVA_INPUTSTREAM_H_INCLUDED_ */
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni_Thread.h
null
null
null
null
null
null
C
2026-05-04T19:39:36.307715
/* * Copyright (C) NGINX, Inc. */ #ifndef _NXT_JAVA_THREAD_H_INCLUDED_ #define _NXT_JAVA_THREAD_H_INCLUDED_ #include <jni.h> int nxt_java_initThread(JNIEnv *env); void nxt_java_setContextClassLoader(JNIEnv *env, jobject cl); jobject nxt_java_getContextClassLoader(JNIEnv *env); #endif /* _NXT_JAVA_THREAD_H_I...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni_URLClassLoader.h
null
null
null
null
null
null
C
2026-05-04T19:39:36.309644
/* * Copyright (C) NGINX, Inc. */ #ifndef _NXT_JAVA_URLCLASSLOADER_H_INCLUDED_ #define _NXT_JAVA_URLCLASSLOADER_H_INCLUDED_ #include <jni.h> int nxt_java_initURLClassLoader(JNIEnv *env); jobject nxt_java_newURLClassLoader(JNIEnv *env, int url_count, char **urls); jobject nxt_java_newURLClassLoader_parent(JNIE...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nodejs/unit-http/nxt_napi.h
null
null
null
null
null
null
C
2026-05-04T19:39:36.310837
/* * Copyright (C) NGINX, Inc. */ #ifndef _NXT_NODEJS_NAPI_H_INCLUDED_ #define _NXT_NODEJS_NAPI_H_INCLUDED_ #include <node_api.h> #ifdef __cplusplus extern "C" { #endif #include "version.h" #include <nxt_unit.h> #if NXT_VERNUM != NXT_NODE_VERNUM #error "libunit version mismatch." #endif #include <nxt_unit_res...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni_URLClassLoader.c
null
null
null
null
null
null
C
2026-05-04T19:39:36.355611
/* * Copyright (C) NGINX, Inc. */ #include <nxt_unit.h> #include <jni.h> #include "nxt_jni_URLClassLoader.h" static jclass nxt_java_URLClassLoader_class; static jmethodID nxt_java_URLClassLoader_ctor; static jmethodID nxt_java_URLClassLoader_parent_ctor; static jmethodID nxt_java_URLClassLoader_loadClass;...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni_Response.h
null
null
null
null
null
null
C
2026-05-04T19:39:36.891983
/* * Copyright (C) NGINX, Inc. */ #ifndef _NXT_JAVA_RESPONSE_H_INCLUDED_ #define _NXT_JAVA_RESPONSE_H_INCLUDED_ #include <jni.h> #include <nxt_unit_typedefs.h> int nxt_java_initResponse(JNIEnv *env, jobject cl); jobject nxt_java_newResponse(JNIEnv *env, nxt_unit_request_info_t *req); #endif /* _NXT_JAVA_RESP...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni_Request.h
null
null
null
null
null
null
C
2026-05-04T19:39:36.894276
/* * Copyright (C) NGINX, Inc. */ #ifndef _NXT_JAVA_REQUEST_H_INCLUDED_ #define _NXT_JAVA_REQUEST_H_INCLUDED_ #include <jni.h> #include <nxt_unit_typedefs.h> int nxt_java_initRequest(JNIEnv *env, jobject cl); jobject nxt_java_newRequest(JNIEnv *env, jobject ctx, nxt_unit_request_info_t *req); void nxt_java_Re...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni_Thread.c
null
null
null
null
null
null
C
2026-05-04T19:39:36.894883
/* * Copyright (C) NGINX, Inc. */ #include <nxt_unit.h> #include <jni.h> #include "nxt_jni_Thread.h" static jclass nxt_java_Thread_class; static jmethodID nxt_java_Thread_currentThread; static jmethodID nxt_java_Thread_getContextClassLoader; static jmethodID nxt_java_Thread_setContextClassLoader; int nx...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni_Response.c
null
null
null
null
null
null
C
2026-05-04T19:39:36.896539
/* * Copyright (C) NGINX, Inc. */ #include <nxt_auto_config.h> #include <nxt_unit.h> #include <nxt_unit_response.h> #include <jni.h> #include <stdio.h> #include "nxt_jni.h" #include "nxt_jni_Response.h" #include "nxt_jni_HeadersEnumeration.h" #include "nxt_jni_HeaderNamesEnumeration.h" #include "nxt_jni_OutputStr...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni_Request.c
null
null
null
null
null
null
C
2026-05-04T19:39:36.897576
/* * Copyright (C) NGINX, Inc. */ #include <nxt_auto_config.h> #include <nxt_unit.h> #include <nxt_unit_request.h> #include <jni.h> #include <stdio.h> #include <stdlib.h> #include "nxt_jni.h" #include "nxt_jni_Request.h" #include "nxt_jni_URLClassLoader.h" #include "nxt_jni_HeadersEnumeration.h" #include "nxt_jni...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_app_nncq.h
null
null
null
null
null
null
C
2026-05-04T19:39:37.071529
/* * Copyright (C) NGINX, Inc. */ #ifndef _NXT_APP_NNCQ_H_INCLUDED_ #define _NXT_APP_NNCQ_H_INCLUDED_ /* Appilcation Numeric Naive Circular Queue */ #define NXT_APP_NNCQ_SIZE 131072 typedef uint32_t nxt_app_nncq_atomic_t; typedef uint16_t nxt_app_nncq_cycle_t; typedef struct { nxt_app_nncq_atomic_t head;...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_aix_send_file.c
null
null
null
null
null
null
C
2026-05-04T19:39:37.092518
/* * Copyright (C) Igor Sysoev * Copyright (C) NGINX, Inc. */ #include <nxt_main.h> /* send_file() has been introduced in AIX 4.3.2 */ ssize_t nxt_aix_event_conn_io_send_file(nxt_event_conn_t *c, nxt_buf_t *b, size_t limit); ssize_t nxt_aix_event_conn_io_send_file(nxt_event_conn_t *c, nxt_buf_t *b, size_t...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nodejs/unit-http/unit.h
null
null
null
null
null
null
C
2026-05-04T19:39:37.093779
/* * Copyright (C) NGINX, Inc. */ #ifndef _NXT_NODEJS_UNIT_H_INCLUDED_ #define _NXT_NODEJS_UNIT_H_INCLUDED_ #include "nxt_napi.h" class Unit : public nxt_napi { public: static napi_value init(napi_env env, napi_value exports); private: Unit(napi_env env, napi_value jsthis); ~Unit(); static napi...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_app_log.c
null
null
null
null
null
null
C
2026-05-04T19:39:37.094982
/* * Copyright (C) Igor Sysoev * Copyright (C) NGINX, Inc. */ #include <nxt_main.h> #include <nxt_runtime.h> static nxt_time_string_t nxt_log_error_time_cache; static u_char *nxt_log_error_time(u_char *buf, nxt_realtime_t *now, struct tm *tm, size_t size, const char *format); static nxt_time_string_t nxt_l...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_array.h
null
null
null
null
null
null
C
2026-05-04T19:39:37.551194
/* * Copyright (C) Igor Sysoev * Copyright (C) NGINX, Inc. */ #ifndef _NXT_ARRAY_H_INCLUDED_ #define _NXT_ARRAY_H_INCLUDED_ typedef struct { void *elts; /* nelts has uint32_t type because it is used most often. */ uint32_t nelts; uint16_t size; uint16_t nalloc; nxt_mp_t *mem_pool...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_app_queue.h
null
null
null
null
null
null
C
2026-05-04T19:39:37.552518
/* * Copyright (C) NGINX, Inc. */ #ifndef _NXT_APP_QUEUE_H_INCLUDED_ #define _NXT_APP_QUEUE_H_INCLUDED_ #include <nxt_app_nncq.h> /* Using Numeric Naive Circular Queue as a backend. */ #define NXT_APP_QUEUE_SIZE NXT_APP_NNCQ_SIZE #define NXT_APP_QUEUE_MSG_SIZE 31 typedef struct { uint8_t size; ...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_array.c
null
null
null
null
null
null
C
2026-05-04T19:39:37.597680
/* * Copyright (C) Igor Sysoev * Copyright (C) NGINX, Inc. */ #include <nxt_main.h> nxt_array_t * nxt_array_create(nxt_mp_t *mp, nxt_uint_t n, size_t size) { nxt_array_t *array; array = nxt_mp_alloc(mp, sizeof(nxt_array_t) + n * size); if (nxt_slow_path(array == NULL)) { return NULL; }...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_application.c
null
null
null
null
null
null
C
2026-05-04T19:39:37.598883
/* * Copyright (C) Max Romanov * Copyright (C) Igor Sysoev * Copyright (C) Valentin V. Bartenev * Copyright (C) NGINX, Inc. */ #include <nxt_main.h> #include <nxt_runtime.h> #include <nxt_main_process.h> #include <nxt_router.h> #include <nxt_http.h> #include <nxt_application.h> #include <nxt_unit.h> #include <nx...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_application.h
null
null
null
null
null
null
C
2026-05-04T19:39:37.616728
/* * Copyright (C) Max Romanov * Copyright (C) Valentin V. Bartenev * Copyright (C) NGINX, Inc. */ #ifndef _NXT_APPLICATION_H_INCLUDED_ #define _NXT_APPLICATION_H_INCLUDED_ #include <nxt_conf.h> #include <nxt_unit_typedefs.h> typedef enum { NXT_APP_EXTERNAL, NXT_APP_PYTHON, NXT_APP_PHP, NXT_A...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_brotli.c
null
null
null
null
null
null
C
2026-05-04T19:39:37.674322
/* * Copyright (C) Andrew Clayton * Copyright (C) F5, Inc. */ #include <stddef.h> #include <stdint.h> #include <stdbool.h> #include <brotli/encode.h> #include "nxt_http_compression.h" static int nxt_brotli_init(nxt_http_comp_compressor_ctx_t *ctx) { BrotliEncoderState **brotli = &ctx->brotli_ctx; *bro...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_buf.h
null
null
null
null
null
null
C
2026-05-04T19:39:37.682983
/* * Copyright (C) Igor Sysoev * Copyright (C) NGINX, Inc. */ #ifndef _NXT_BUF_H_INCLUDED_ #define _NXT_BUF_H_INCLUDED_ /* * There are four types of buffers. They are different sizes, so they * should be allocated by appropriate nxt_buf_XXX_alloc() function. * * 1) Memory-only buffers, their size is less th...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_atomic.h
null
null
null
null
null
null
C
2026-05-04T19:39:37.711352
/* * Copyright (C) Igor Sysoev * Copyright (C) NGINX, Inc. */ #ifndef _NXT_ATOMIC_H_INCLUDED_ #define _NXT_ATOMIC_H_INCLUDED_ /* * nxt_atomic_try_lock() must set an acquire barrier on lock. * nxt_atomic_xchg() must set an acquire barrier. * nxt_atomic_release() must set a release barrier. */ #if (NXT_HAVE_G...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_buf.c
null
null
null
null
null
null
C
2026-05-04T19:39:37.750687
/* * Copyright (C) Igor Sysoev * Copyright (C) NGINX, Inc. */ #include <nxt_main.h> static void nxt_buf_completion(nxt_task_t *task, void *obj, void *data); static void nxt_buf_ts_completion(nxt_task_t *task, void *obj, void *data); typedef struct { nxt_work_t work; nxt_event_engine_t *engine...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_buf_pool.c
null
null
null
null
null
null
C
2026-05-04T19:39:38.187235
/* * Copyright (C) Igor Sysoev * Copyright (C) NGINX, Inc. */ #include <nxt_main.h> nxt_int_t nxt_buf_pool_mem_alloc(nxt_buf_pool_t *bp, size_t size) { nxt_buf_t *b; b = bp->current; if (b != NULL && b->mem.free < b->mem.end) { return NXT_OK; } b = bp->free; if (b != NULL) { ...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_buf_pool.h
null
null
null
null
null
null
C
2026-05-04T19:39:38.215661
/* * Copyright (C) Igor Sysoev * Copyright (C) NGINX, Inc. */ #ifndef _NXT_BUF_POOL_H_INCLUDED_ #define _NXT_BUF_POOL_H_INCLUDED_ /* * nxt_buf_pool_t is intended to allocate up to the "max" number * memory, memory/file, or mmap/file buffers. A size of the buffers * is set in the "size" field. The size howev...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_capability.h
null
null
null
null
null
null
C
2026-05-04T19:39:38.514326
/* * Copyright (C) Igor Sysoev * Copyright (C) NGINX, Inc. */ #ifndef _NXT_CAPABILITY_INCLUDED_ #define _NXT_CAPABILITY_INCLUDED_ typedef struct { uint8_t setid; /* 1 bit */ uint8_t chroot; /* 1 bit */ } nxt_capabilities_t; NXT_EXPORT nxt_int_t nxt_capability_set(nxt_task_t *task, nxt_capabi...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_cert.h
null
null
null
null
null
null
C
2026-05-04T19:39:38.514920
/* * Copyright (C) Valentin V. Bartenev * Copyright (C) NGINX, Inc. */ #ifndef _NXT_CERT_INCLUDED_ #define _NXT_CERT_INCLUDED_ typedef struct nxt_cert_s nxt_cert_t; nxt_cert_t *nxt_cert_mem(nxt_task_t *task, nxt_buf_mem_t *mbuf); void nxt_cert_destroy(nxt_cert_t *cert); void nxt_cert_info_init(nxt_task_t *tas...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_capability.c
null
null
null
null
null
null
C
2026-05-04T19:39:38.515518
/* * Copyright (C) Igor Sysoev * Copyright (C) NGINX, Inc. */ #include <nxt_main.h> #if (NXT_HAVE_LINUX_CAPABILITY) #include <linux/capability.h> #include <sys/syscall.h> #if (_LINUX_CAPABILITY_VERSION_3) #define NXT_CAPABILITY_VERSION _LINUX_CAPABILITY_VERSION_3 #elif (_LINUX_CAPABILITY_VERSION_2) #define NXT...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_cert.c
null
null
null
null
null
null
C
2026-05-04T19:39:38.516248
/* * Copyright (C) Valentin V. Bartenev * Copyright (C) NGINX, Inc. */ #include <nxt_main.h> #include <nxt_conf.h> #include <nxt_cert.h> #include <dirent.h> #include <openssl/bio.h> #include <openssl/pem.h> #include <openssl/evp.h> #include <openssl/x509.h> #include <openssl/x509v3.h> #include <openssl/rsa.h> #i...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_cgroup.h
null
null
null
null
null
null
C
2026-05-04T19:39:38.516767
/* * Copyright (C) Andrew Clayton * Copyright (C) F5, Inc. */ #ifndef _NXT_CGROUP_H_INCLUDED_ #define _NXT_CGROUP_H_INCLUDED_ nxt_int_t nxt_cgroup_proc_add(nxt_task_t *task, nxt_process_t *process); void nxt_cgroup_cleanup(nxt_task_t *task, const nxt_process_t *process); #endif /* _NXT_CGROUP_H_INCLUDED_ */
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/nxt_cgroup.c
null
null
null
null
null
null
C
2026-05-04T19:39:38.517316
/* * Copyright (C) Andrew Clayton * Copyright (C) F5, Inc. */ #include <nxt_main.h> #include <nxt_cgroup.h> static int nxt_mk_cgpath_relative(nxt_task_t *task, const char *dir, char *cgpath); static nxt_int_t nxt_mk_cgpath(nxt_task_t *task, const char *dir, char *cgpath); nxt_int_t nxt_cgroup_proc_add(...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
src/java/nxt_jni_HeadersEnumeration.h
null
null
null
null
null
null
C
2026-05-04T19:39:40.097417
/* * Copyright (C) NGINX, Inc. */ #ifndef _NXT_JAVA_HEADERSENUMERATION_H_INCLUDED_ #define _NXT_JAVA_HEADERSENUMERATION_H_INCLUDED_ #include <jni.h> #include <nxt_unit_typedefs.h> int nxt_java_initHeadersEnumeration(JNIEnv *env, jobject cl); jobject nxt_java_newHeadersEnumeration(JNIEnv *env, nxt_unit_field_t ...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/BlockRuntime/runtime.c
null
null
null
null
null
null
C
2026-05-04T19:39:43.916298
// This source file is part of the Swift.org open source project // // Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See http://swift.org/LICENSE.txt for license information // See http://swift.org/CONTRIBUTORS.txt for the l...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/BlockRuntime/data.c
null
null
null
null
null
null
C
2026-05-04T19:39:43.919594
// This source file is part of the Swift.org open source project // // Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See http://swift.org/LICENSE.txt for license information // See http://swift.org/CONTRIBUTORS.txt for the l...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBag.c
null
null
null
null
null
null
C
2026-05-04T19:39:43.920925
/* CFBag.c Copyright (c) 1998-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUTORS.txt ...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBase.c
null
null
null
null
null
null
C
2026-05-04T19:39:43.926147
/* CFBase.c Copyright (c) 1998-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUTORS.txt...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFApplicationPreferences.c
null
null
null
null
null
null
C
2026-05-04T19:39:43.927355
/* CFApplicationPreferences.c Copyright (c) 1998-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.or...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/BlockRuntime/include/Block_private.h
null
null
null
null
null
null
C
2026-05-04T19:39:43.937010
// This source file is part of the Swift.org open source project // // Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See http://swift.org/LICENSE.txt for license information // See http://swift.org/CONTRIBUTORS.txt for the l...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/BlockRuntime/include/Block.h
null
null
null
null
null
null
C
2026-05-04T19:39:43.981371
// This source file is part of the Swift.org open source project // // Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See http://swift.org/LICENSE.txt for license information // See http://swift.org/CONTRIBUTORS.txt for the l...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFArray.c
null
null
null
null
null
null
C
2026-05-04T19:39:44.093268
/* CFArray.c Copyright (c) 1998-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUTORS.tx...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFAttributedString.c
null
null
null
null
null
null
C
2026-05-04T19:39:44.099416
/* CFAttributedString.c Copyright (c) 2004-2019, Apple Inc. All rights reserved. Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUT...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBasicHash.c
null
null
null
null
null
null
C
2026-05-04T19:39:44.112173
/* CFBasicHash.m Copyright (c) 2008-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUTOR...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBigNumber.c
null
null
null
null
null
null
C
2026-05-04T19:39:44.565126
/* CFBigNumber.c Copyright (c) 2012-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUTOR...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBitVector.c
null
null
null
null
null
null
C
2026-05-04T19:39:44.571949
/* CFBitVector.c Copyright (c) 1998-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUTOR...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBinaryPList.c
null
null
null
null
null
null
C
2026-05-04T19:39:44.599452
/* CFBinaryPList.c Copyright (c) 2000-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUT...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBundle.c
null
null
null
null
null
null
C
2026-05-04T19:39:44.610701
/* CFBundle.c Copyright (c) 1999-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUT...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBundle_Binary.c
null
null
null
null
null
null
C
2026-05-04T19:39:44.643770
/* CFBundle_Binary.c Copyright (c) 1999-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CO...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBuiltinConverters.c
null
null
null
null
null
null
C
2026-05-04T19:39:44.684462
/* CFBuiltinConverters.c Copyright (c) 1999-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CON...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBinaryHeap.c
null
null
null
null
null
null
C
2026-05-04T19:39:44.711852
/* CFBinaryHeap.c Copyright (c) 1998-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUTO...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBundle_Executable.c
null
null
null
null
null
null
C
2026-05-04T19:39:44.741505
/* CFBundle_Executable.c Copyright (c) 1999-2017, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2017, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.or...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBundle_DebugStrings.c
null
null
null
null
null
null
C
2026-05-04T19:39:44.797747
/* CFBundle_DebugStrings.c Copyright (c) 1999-2017, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2017, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift....
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBundle_Grok.c
null
null
null
null
null
null
C
2026-05-04T19:39:44.903322
/* CFBundle_Grok.c Copyright (c) 1999-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONT...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBundle_InfoPlist.c
null
null
null
null
null
null
C
2026-05-04T19:39:45.169214
/* CFBundle_InfoPlist.c Copyright (c) 2012-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBundle_Locale.c
null
null
null
null
null
null
C
2026-05-04T19:39:45.178326
/* CFBundle_Locale.c Copyright (c) 1999-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CO...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBundle_Main.c
null
null
null
null
null
null
C
2026-05-04T19:39:45.182810
/* CFBundle_Main.c Copyright (c) 1999-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONT...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBundle_ResourceFork.c
null
null
null
null
null
null
C
2026-05-04T19:39:45.216707
/* CFBundle_ResourceFork.c Copyright (c) 1999-2017, Apple Inc. All rights reserved. Responsibility: Tony Parker */ #include "CFBundle.h"
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBundle_Resources.c
null
null
null
null
null
null
C
2026-05-04T19:39:45.281164
/* CFBundle_Resources.c Copyright (c) 1999-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBundle_Tables.c
null
null
null
null
null
null
C
2026-05-04T19:39:45.329862
/* CFBundle_Tables.c Copyright (c) 1999-2017, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2017, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CO...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBundle_SplitFileName.c
null
null
null
null
null
null
C
2026-05-04T19:39:45.342570
/* CFBundle_SplitFileName.c Copyright (c) 2019, Apple Inc. All rights reserved. */ #include "CFBundle_SplitFileName.h" #include "CFPriv.h" #define _CFBundleiPadDeviceNameSuffix CFSTR("~ipad") static Boolean _CFBundleFileVersionFoundMatchingPlatform(_CFBundleFileVersion version) { return version == ...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBurstTrie.c
null
null
null
null
null
null
C
2026-05-04T19:39:45.433757
/* CFBurstTrie.c Copyright (c) 2008-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUTOR...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFBundle_Strings.c
null
null
null
null
null
null
C
2026-05-04T19:39:45.529451
/* CFBundle_Strings.c Copyright (c) 1999-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/C...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFConcreteStreams.c
null
null
null
null
null
null
C
2026-05-04T19:39:45.597136
/* CFConcreteStreams.c Copyright (c) 2000-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTR...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFDate.c
null
null
null
null
null
null
C
2026-05-04T19:39:46.109074
/* CFDate.c Copyright (c) 1998-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUTORS.txt...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFDateInterval.c
null
null
null
null
null
null
C
2026-05-04T19:39:46.146179
/* CFDateInterval.c Copyright (c) 2017-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2017-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information Se...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFDateComponents.c
null
null
null
null
null
null
C
2026-05-04T19:39:46.213380
/* CFDateComponents.c Copyright (c) 2004-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information ...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFDateIntervalFormatter.c
null
null
null
null
null
null
C
2026-05-04T19:39:46.219601
/* CFDateIntervalFormatter.c Copyright (c) 1998-2018, Apple Inc. and the Swift project authors Portions Copyright (c) 2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONT...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFData.c
null
null
null
null
null
null
C
2026-05-04T19:39:46.226874
/* CFData.c Copyright (c) 1998-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUTORS.txt...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFError.c
null
null
null
null
null
null
C
2026-05-04T19:39:46.287274
/* CFError.c Copyright (c) 2006-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUTORS.tx...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFDictionary.c
null
null
null
null
null
null
C
2026-05-04T19:39:46.293483
/* CFDictionary.c Copyright (c) 1998-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUTO...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFKnownLocations.c
null
null
null
null
null
null
C
2026-05-04T19:39:46.445539
/* CFKnownLocations.c Copyright (c) 1999-2017, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2017, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRI...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFICUConverters.c
null
null
null
null
null
null
C
2026-05-04T19:39:46.462314
/* CFICUConverters.c Copyright (c) 2004-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIB...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFFileUtilities.c
null
null
null
null
null
null
C
2026-05-04T19:39:46.491292
/* CFFileUtilities.c Copyright (c) 1999-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIB...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFListFormatter.c
null
null
null
null
null
null
C
2026-05-04T19:39:46.781580
/* CFListFormatter.h Copyright (c) 2018-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://sw...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFLocale.c
null
null
null
null
null
null
C
2026-05-04T19:39:46.863773
/* CFLocale.c Copyright (c) 2002-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUT...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFNumberFormatter.c
null
null
null
null
null
null
C
2026-05-04T19:39:46.893679
/* CFNumberFormatter.c Copyright (c) 2002-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTR...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFLocaleKeys.c
null
null
null
null
null
null
C
2026-05-04T19:39:46.912085
/* CFLocaleKeys.c Copyright (c) 2008-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUTO...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFNumber.c
null
null
null
null
null
null
C
2026-05-04T19:39:47.013144
/* CFNumber.c Copyright (c) 1999-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUTORS.t...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFOldStylePList.c
null
null
null
null
null
null
C
2026-05-04T19:39:47.041669
/* CFOldStylePList.c Copyright (c) 1999-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIB...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFPlugIn.c
null
null
null
null
null
null
C
2026-05-04T19:39:47.049561
/* CFPlugIn.c Copyright (c) 1999-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUT...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFPlatformConverters.c
null
null
null
null
null
null
C
2026-05-04T19:39:47.055193
/* CFPlatformConverters.c Copyright (c) 1998-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CO...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFPlatform.c
null
null
null
null
null
null
C
2026-05-04T19:39:47.091252
/* CFPlatform.c Copyright (c) 1999-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUTORS...
swiftlang/swift-corelibs-foundation
https://github.com/swiftlang/swift-corelibs-foundation
null
null
null
null
5,425
null
null
apache-2.0
null
null
null
null
null
null
null
Sources/CoreFoundation/CFPreferences.c
null
null
null
null
null
null
C
2026-05-04T19:39:47.125068
/* CFPreferences.c Copyright (c) 1998-2019, Apple Inc. and the Swift project authors Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors Licensed under Apache License v2.0 with Runtime Library Exception See http://swift.org/LICENSE.txt for license information See http://swift.org/CONTRIBUT...
tboox/tbox
https://github.com/tboox/tbox
null
null
null
null
5,111
null
null
apache-2.0
null
null
null
null
null
null
null
src/demo/container/hash_map.c
null
null
null
null
null
null
C
2026-05-04T19:39:50.242888
/* ////////////////////////////////////////////////////////////////////////////////////// * includes */ #include "../demo.h" /* ////////////////////////////////////////////////////////////////////////////////////// * macros */ #ifdef __tb_debug__ # define tb_hash_map_test_dump(h) tb_hash_map_dump(h) #el...
tboox/tbox
https://github.com/tboox/tbox
null
null
null
null
5,111
null
null
apache-2.0
null
null
null
null
null
null
null
src/demo/algorithm/sort.c
null
null
null
null
null
null
C
2026-05-04T19:39:50.639262
/* ////////////////////////////////////////////////////////////////////////////////////// * includes */ #include "../demo.h" /* ////////////////////////////////////////////////////////////////////////////////////// * test */ static tb_void_t tb_sort_int_test_perf(tb_size_t n) { __tb_volatile__ tb_size_t i = 0;...
tboox/tbox
https://github.com/tboox/tbox
null
null
null
null
5,111
null
null
apache-2.0
null
null
null
null
null
null
null
src/demo/container/heap.c
null
null
null
null
null
null
C
2026-05-04T19:39:50.640603
/* ////////////////////////////////////////////////////////////////////////////////////// * includes */ #include "../demo.h" /* ////////////////////////////////////////////////////////////////////////////////////// * test */ static tb_long_t tb_test_heap_max_comp(tb_element_ref_t element, tb_cpointer_t ldata, tb_...
tboox/tbox
https://github.com/tboox/tbox
null
null
null
null
5,111
null
null
apache-2.0
null
null
null
null
null
null
null
src/demo/container/circle_queue.c
null
null
null
null
null
null
C
2026-05-04T19:39:50.642255
/* ////////////////////////////////////////////////////////////////////////////////////// * includes */ #include "../demo.h" /* ////////////////////////////////////////////////////////////////////////////////////// * implementation */ static tb_void_t tb_circle_queue_put_and_pop_test() { // init tb_circle_...
tboox/tbox
https://github.com/tboox/tbox
null
null
null
null
5,111
null
null
apache-2.0
null
null
null
null
null
null
null
src/demo/algorithm/find.c
null
null
null
null
null
null
C
2026-05-04T19:39:50.643479
/* ////////////////////////////////////////////////////////////////////////////////////// * includes */ #include "../demo.h" /* ////////////////////////////////////////////////////////////////////////////////////// * test */ static tb_void_t tb_find_int_test() { __tb_volatile__ tb_size_t i = 0; __tb_volati...