Home
last modified time | relevance | path

Searched refs:step (Results 1 – 5 of 5) sorted by path

/unit/
H A DREADME.md171 step forward for the NGINX Unit community. While working on it, we kindly ask
/unit/docs/
H A Dunit-openapi.yaml5796 description: "An object whose options define a step's
5808 description: "Defines the step’s conditions to be matched."
5815 description: "An object whose options define a step's conditions."
5887 description: "An object whose options define a step's action."
5897 description: "An object whose single option defines a step's pass action."
5910 description: "An object whose single option defines a step's
5929 description: "An object whose single option defines a step's
/unit/src/
H A Dnxt_time_parse.c335 } step; in nxt_term_parse() local
381 step = st_year; in nxt_term_parse()
390 step = st_month; in nxt_term_parse()
399 step = st_week; in nxt_term_parse()
405 if (step >= st_day) { in nxt_term_parse()
408 step = st_day; in nxt_term_parse()
417 step = st_hour; in nxt_term_parse()
428 step = st_msec; in nxt_term_parse()
437 step = st_min; in nxt_term_parse()
446 step = st_sec; in nxt_term_parse()
[all …]
/unit/test/python/delayed/
H A Dasgi.py44 step = int(len(body) / parts)
45 for i in range(0, len(body), step):
49 'body': body[i : i + step],
H A Dwsgi.py17 step = int(len(body) / parts)
18 for i in range(0, len(body), step):
20 write(body[i : i + step])