/unit/ |
H A D | CHANGES | 4 *) Change: if building with njs, version 0.8.0 or later is now required. 206 *) Change: the "share" option now specifies the entire path to the files 344 module are now compliant with Stream API. 388 *) Change: HTTP header fields with underscores ("_") are now discarded 428 *) Change: the PHP module is now initialized before chrooting; this 436 *) Feature: the Python module now fully supports applications that use 439 *) Feature: the Python module now has a built-in WebSocket server 716 *) Change: now three numbers are always used for versioning: major, 719 *) Change: now QUERY_STRING is always defined even if the request does 864 *) Change: UTF-8 characters are now allowed in request header field [all …]
|
/unit/pkg/deb/debian.module/ |
H A D | copyright.unit-jsc-common | 544 1.11. "Patent Claims" means any patent claim(s), now owned or
|
H A D | unit.example-python-app | 6 output = datetime.datetime.now().strftime("%Y-%m-%d %I:%M:%S %p")
|
/unit/pkg/deb/debian/ |
H A D | unit.example-python-app | 6 output = datetime.datetime.now().strftime("%Y-%m-%d %I:%M:%S %p")
|
/unit/pkg/rpm/rpmbuild/SOURCES/ |
H A D | COPYRIGHT.unit-jsc-common | 544 1.11. "Patent Claims" means any patent claim(s), now owned or
|
H A D | unit.example-python-app | 6 output = datetime.datetime.now().strftime("%Y-%m-%d %I:%M:%S %p")
|
/unit/pkg/rpm/ |
H A D | unit.spec.in | 21 %define LD_OPT -Wl,-z,relro -Wl,-z,now -pie
|
/unit/src/java/nginx/unit/websocket/server/ |
H A D | WsWriteTimeout.java | 49 long now = System.currentTimeMillis(); in backgroundProcess() local 51 if (endpoint.getTimeoutExpiry() < now) { in backgroundProcess()
|
/unit/src/ |
H A D | nxt_app_log.c | 12 static u_char *nxt_log_error_time(u_char *buf, nxt_realtime_t *now, 15 static u_char *nxt_log_debug_time(u_char *buf, nxt_realtime_t *now, 112 nxt_log_error_time(u_char *buf, nxt_realtime_t *now, struct tm *tm, size_t size, in nxt_log_error_time() argument 132 nxt_log_debug_time(u_char *buf, nxt_realtime_t *now, struct tm *tm, size_t size, in nxt_log_debug_time() argument 138 now->nsec / 1000000); in nxt_log_debug_time()
|
H A D | nxt_controller.c | 124 static u_char *nxt_controller_date(u_char *buf, nxt_realtime_t *now, 2651 nxt_controller_date(u_char *buf, nxt_realtime_t *now, struct tm *tm, in nxt_controller_date() argument
|
H A D | nxt_event_engine.c | 135 engine->timers.now = nxt_thread_monotonic_time(thread) / 1000000; in nxt_event_engine_create() 513 nxt_msec_t timeout, now; in nxt_event_engine_start() local 551 now = nxt_thread_monotonic_time(thr) / 1000000; in nxt_event_engine_start() 553 nxt_timer_expire(engine, now); in nxt_event_engine_start()
|
H A D | nxt_http_request.c | 28 static u_char *nxt_http_date_cache_handler(u_char *buf, nxt_realtime_t *now, 870 nxt_http_date_cache_handler(u_char *buf, nxt_realtime_t *now, struct tm *tm, in nxt_http_date_cache_handler() argument
|
H A D | nxt_http_variables.c | 27 static u_char *nxt_http_log_date(u_char *buf, nxt_realtime_t *now, 237 nxt_nsec_t now; in nxt_http_var_request_time() local 242 now = nxt_thread_monotonic_time(task->thread); in nxt_http_var_request_time() 243 ms = (now - r->start_time) / 1000000; in nxt_http_var_request_time() 358 nxt_http_log_date(u_char *buf, nxt_realtime_t *now, struct tm *tm, in nxt_http_log_date() argument
|
H A D | nxt_log_moderation.c | 18 nxt_time_t now; in nxt_log_moderate_allow() local 23 now = nxt_thread_time(thr); in nxt_log_moderate_allow() 32 if (now != mod->last) { in nxt_log_moderate_allow() 35 mod->last = now; in nxt_log_moderate_allow()
|
H A D | nxt_router.c | 4756 main_app_port->idle_start = task->thread->engine->timers.now; in nxt_router_app_port_release() 4901 threshold = engine->timers.now + app->joint->idle_timer.bias; in nxt_router_adjust_idle_timer()
|
H A D | nxt_semaphore.c | 81 nxt_realtime_t *now; in nxt_sem_wait() local 132 now = nxt_thread_realtime(thr); in nxt_sem_wait() 133 ns = now->nsec + timeout; in nxt_sem_wait() 134 ts.tv_sec = now->sec + ns / 1000000000; in nxt_sem_wait()
|
H A D | nxt_thread_cond.c | 64 nxt_realtime_t *now; in nxt_thread_cond_wait() local 87 now = nxt_thread_realtime(thr); in nxt_thread_cond_wait() 89 ns = now->nsec + timeout; in nxt_thread_cond_wait() 90 ts.tv_sec = now->sec + ns / 1000000000; in nxt_thread_cond_wait()
|
H A D | nxt_thread_time.c | 120 nxt_monotonic_time(&now); in nxt_time_thread() 123 nxt_shared_time = now; in nxt_time_thread() 137 thr->time.now = now; in nxt_time_thread() 168 if (now->realtime.sec == t && now->realtime.nsec == n in nxt_thread_time_shared() 169 && now->monotonic == m && now->update == u) in nxt_thread_time_shared() 204 if (now->monotonic >= now->update) { in nxt_thread_realtime_update() 208 now->update = now->monotonic + delta; in nxt_thread_realtime_update() 216 if (now->monotonic >= now->update) { in nxt_thread_realtime_update() 220 now->update = now->monotonic + delta; in nxt_thread_realtime_update() 355 nxt_realtime_t now; in nxt_thread_time_string_no_cache() local [all …]
|
H A D | nxt_thread_time.h | 20 u_char *(*handler)(u_char *buf, nxt_realtime_t *now, 41 nxt_monotonic_time_t now; member 74 (thr)->time.now.monotonic
|
H A D | nxt_time.c | 25 nxt_realtime(nxt_realtime_t *now) in nxt_realtime() argument 32 now->nsec = ts.tv_nsec; in nxt_realtime() 49 nxt_realtime(nxt_realtime_t *now) in nxt_realtime() argument 56 now->nsec = ts.tv_nsec; in nxt_realtime() 72 nxt_realtime(nxt_realtime_t *now) in nxt_realtime() argument 79 now->nsec = ts.tv_nsec; in nxt_realtime() 88 nxt_realtime(nxt_realtime_t *now) in nxt_realtime() argument 95 now->nsec = tv.tv_usec * 1000; in nxt_realtime() 239 now->previous = current; in nxt_monotonic_time() 246 now->monotonic++; in nxt_monotonic_time() [all …]
|
H A D | nxt_time.h | 38 NXT_EXPORT void nxt_realtime(nxt_realtime_t *now); 39 NXT_EXPORT void nxt_monotonic_time(nxt_monotonic_time_t *now);
|
H A D | nxt_timer.c | 76 time = engine->timers.now + timeout; in nxt_timer_add() 265 time, timer->bias, timers->now); in nxt_timer_find() 267 delta = nxt_msec_diff(time, timers->now); in nxt_timer_find() 274 timers->minimum = timers->now + 24 * 60 * 60 * 1000; in nxt_timer_find() 281 nxt_timer_expire(nxt_event_engine_t *engine, nxt_msec_t now) in nxt_timer_expire() argument 289 timers->now = now; in nxt_timer_expire() 292 timers->minimum, now); in nxt_timer_expire() 295 if (nxt_msec_diff(timers->minimum , now) > 0) { in nxt_timer_expire() 308 if (nxt_msec_diff(timer->time , now) > (int32_t) timer->bias) { in nxt_timer_expire()
|
H A D | nxt_timer.h | 66 nxt_msec_t now; member 97 void nxt_timer_expire(nxt_event_engine_t *engine, nxt_msec_t now);
|