Home
last modified time | relevance | path

Searched full:serve (Results 1 – 25 of 297) sorted by relevance

12345678910>>...12

/freebsd/usr.bin/hexdump/
H A Dhexdump.1331 $ echo "FreeBSD: The power to serve" | hexdump -C
333 00000010 65 72 20 74 6f 20 73 65 72 76 65 0a |er to serve.|
340 $ echo "FreeBSD: The power to serve" | hexdump -C -s 4 -n 3
376 $ echo "FreeBSD: The power to serve" | hexdump -f format.txt -C
380 00000010 65 72 20 74 6f 20 73 65 72 76 65 0a |er to serve.|
H A Dod.1247 $ echo "FreeBSD: The power to serve" | od -a -c
258 $ echo "FreeBSD: The power to serve" | od -An -a -j 13 -N 5
/freebsd/contrib/unbound/doc/
H A Dexample.conf.in732 # Serve expired responses from cache, with serve-expired-reply-ttl in
734 # serve-expired: no
738 # serve-expired-ttl: 0
740 # Set the TTL of expired records to the serve-expired-ttl value after a
744 # serve-expired-ttl-reset: no
747 # serve-expired-reply-ttl: 30
750 # This essentially enables the serve-stale behavior as specified in
754 # serve-expired-client-timeout: 0
761 # serve-original-ttl: no
805 # wish to serve such zone you can unblock them by uncommenting one
[all …]
H A Dexample.conf592 # Serve expired responses from cache, with serve-expired-reply-ttl in
594 # serve-expired: no
598 # serve-expired-ttl: 0
600 # Set the TTL of expired records to the serve-expired-ttl value after a
604 # serve-expired-ttl-reset: no
607 # serve-expired-reply-ttl: 30
610 # This essentially enables the serve-stale behavior as specified in
614 # serve-expired-client-timeout: 0
621 # serve-original-ttl: no
665 # wish to serve such zone you can unblock them by uncommenting one
[all …]
H A Dunbound.conf.5.in124 The number of threads to create to serve clients. Use 1 for no threading.
309 larger than serve\-expired\-client\-timeout if that is enabled.
1391 .B serve\-expired: \fI<yes or no>
1392 If enabled, Unbound attempts to serve old responses from cache with a
1393 TTL of \fBserve\-expired\-reply\-ttl\fR in the response without waiting for the
1397 .B serve\-expired\-ttl: \fI<seconds>
1399 disables the limit. This option only applies when \fBserve\-expired\fR is
1403 .B serve\-expired\-ttl\-reset: \fI<yes or no>
1404 Set the TTL of expired records to the \fBserve\-expired\-ttl\fR value after a
1409 .B serve\-expired\-reply\-ttl: \fI<seconds>
[all …]
H A Dunbound.conf.5116 The number of threads to create to serve clients. Use 1 for no threading.
1198 .B serve\-expired: \fI<yes or no>
1199 If enabled, Unbound attempts to serve old responses from cache with a
1200 TTL of \fBserve\-expired\-reply\-ttl\fR in the response without waiting for the
1204 .B serve\-expired\-ttl: \fI<seconds>
1206 disables the limit. This option only applies when \fBserve\-expired\fR is
1210 .B serve\-expired\-ttl\-reset: \fI<yes or no>
1211 Set the TTL of expired records to the \fBserve\-expired\-ttl\fR value after a
1216 .B serve\-expired\-reply\-ttl: \fI<seconds>
1218 \fBserve\-expired\-client\-timeout\fR is also used then it is RECOMMENDED to
[all …]
/freebsd/contrib/unbound/util/data/
H A Dmsgparse.h88 /** If we serve expired entries and prefetch them */
90 /** Time to serve records after expiration */
92 /** Reset serve expired TTL after failed update attempt */
98 /** If we serve the original TTL or decrementing TTLs */
H A Dmsgreply.h162 * Reply TTL extended with serve expired TTL, to limit time to serve
170 * This is just an efficiency timer when serve-expired-client-timeout
258 * @param expttl: serve expired ttl
259 * @param norecttl: serve expired no recursion ttl
/freebsd/contrib/unbound/util/
H A Dconfiglexer.lex412 serve-expired{COLON} { YDVAR(1, VAR_SERVE_EXPIRED) }
413 serve-expired-ttl{COLON} { YDVAR(1, VAR_SERVE_EXPIRED_TTL) }
414 serve-expired-ttl-reset{COLON} { YDVAR(1, VAR_SERVE_EXPIRED_TTL_RESET) }
415 serve-expired-reply-ttl{COLON} { YDVAR(1, VAR_SERVE_EXPIRED_REPLY_TTL) }
416 serve-expired-client-timeout{COLON} { YDVAR(1, VAR_SERVE_EXPIRED_CLIENT_TIMEOUT) }
417 ede-serve-expired{COLON} { YDVAR(1, VAR_EDE_SERVE_EXPIRED) }
418 serve-original-ttl{COLON} { YDVAR(1, VAR_SERVE_ORIGINAL_TTL) }
575 cachedb-check-when-serve-expired{COLON} { YDVAR(1, VAR_CACHEDB_CHECK_WHEN_SERVE_EXPIRED) }
H A Dconfig_file.h427 /** serve expired entries and prefetch them */
429 /** serve expired entries until TTL after expiration */
431 /** reset serve expired TTL after failed update attempt */
433 /** TTL for the serve expired replies */
435 /** serve expired entries only after trying to update the entries and this
438 /** serve EDE code 3 - Stale Answer (RFC8914) for expired entries */
440 /** serve original TTLs rather than decrementing ones */
736 /** cachedb check before serving serve-expired response */
H A Dconfig_file.c725 else if(strcmp(opt, "serve-expired:") == 0) in config_set_option()
728 else if(strcmp(opt, "serve-expired-ttl:") == 0) in config_set_option()
730 else if(strcmp(opt, "serve-expired-ttl-reset:") == 0) in config_set_option()
733 else if(strcmp(opt, "serve-expired-reply-ttl:") == 0) in config_set_option()
735 else S_NUMBER_OR_ZERO("serve-expired-client-timeout:", serve_expired_client_timeout) in config_set_option()
737 else S_YNO("ede-serve-expired:", ede_serve_expired) in config_set_option()
741 else S_YNO("serve-original-ttl:", serve_original_ttl) in config_set_option()
867 else S_YNO("cachedb-check-when-serve-expired:", cachedb_check_when_serve_expired) in config_set_option()
1206 else O_YNO(opt, "serve-expired", serve_expired) in config_get_option()
1207 else O_DEC(opt, "serve-expired-ttl", serve_expired_ttl) in config_get_option()
[all …]
/freebsd/lib/libpmc/pmu-events/arch/x86/elkhartlake/
H A Dvirtual-memory.json67 …page walk is outstanding from start till PMH becomes idle again (ready to serve next walk). Includ…
115 …page walk is outstanding from start till PMH becomes idle again (ready to serve next walk). Includ…
233 …e. A page walk is outstanding from start till PMH becomes idle again (ready to serve next walk).",
/freebsd/sys/contrib/device-tree/Bindings/arc/
H A Dpct.txt9 counted, the HW events themselves cannot serve as a trigger for a sample.
/freebsd/tools/tools/nanobsd/dhcpd/
H A DREADME6 This creates a simple appliance that uses dnsmasq to serve DNS
/freebsd/contrib/openpam/doc/man/
H A Dpam_start.328 created context will serve to authenticate.
/freebsd/tools/tools/nanobsd/embedded/
H A DREADME6 This creates a simple appliance that uses dnsmasq to serve DNS
/freebsd/contrib/ofed/infiniband-diags/src/
H A Dibping.c85 DEBUG("starting to serve..."); in ibping_serv()
233 IBEXIT("can't serve class %d on this port", in main()
/freebsd/lib/libpmc/pmu-events/arch/x86/tremontx/
H A Dvirtual-memory.json79 …page walk is outstanding from start till PMH becomes idle again (ready to serve next walk). Includ…
161 …page walk is outstanding from start till PMH becomes idle again (ready to serve next walk). Includ…
314 …e. A page walk is outstanding from start till PMH becomes idle again (ready to serve next walk).",
/freebsd/contrib/unbound/services/
H A Dmesh.c347 verbose(VERB_ALGO, "Serve expired: bogus answer found in cache"); in mesh_serve_expired_lookup()
350 verbose(VERB_ALGO, "Serve expired: unchecked entry needs " in mesh_serve_expired_lookup()
355 verbose(VERB_ALGO, "Serve expired: secure entry" in mesh_serve_expired_lookup()
369 /** Init the serve expired data structure */
521 /* add serve expired timer if required and not already there */ in mesh_new_client()
523 log_err("mesh_new_client: out of memory initializing serve expired"); in mesh_new_client()
532 log_err("mesh_new_client: out of memory initializing serve expired"); in mesh_new_client()
641 /* add serve expired timer if not already there */ in mesh_new_callback()
965 /* Stop and delete the serve expired timer */ in mesh_state_cleanup()
1506 /* No need for the serve expired timer anymore; we are going to reply. */ in mesh_query_done()
[all …]
/freebsd/usr.sbin/nfsd/
H A Dnfsd.8214 Serve TCP NFS clients.
216 Serve UDP NFS clients.
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DBuiltinGCs.h20 /// serve any purpose except to link in the plugins.
/freebsd/sys/contrib/device-tree/Bindings/remoteproc/
H A Dti,omap-remoteproc.yaml147 One or more phandles to OMAP DMTimer nodes, that serve
166 serve as Watchdog timers for the processor cores. This
/freebsd/sys/contrib/device-tree/Bindings/arm/tegra/
H A Dnvidia,tegra30-actmon.txt5 which the external memory needs to be clocked in order to serve all requests
/freebsd/sys/contrib/device-tree/Bindings/clock/
H A Dqcom,gcc-apq8084.yaml60 /* UFS PHY on APQ8084 is not supported (yet), so these bindings just serve an example */
/freebsd/crypto/openssl/doc/man3/
H A DRSA_sign_ASN1_OCTET_STRING.pod56 These functions serve no recognizable purpose.

12345678910>>...12