Home
last modified time | relevance | path

Searched full:post (Results 1 – 25 of 1981) sorted by relevance

12345678910>>...80

/freebsd/crypto/openssl/test/ssl-tests/
H A D26-tls13_client_auth.cnf11 test-6 = 6-client-auth-TLSv1.3-request-post-handshake
12 test-7 = 7-client-auth-TLSv1.3-require-fail-post-handshake
13 test-8 = 8-client-auth-TLSv1.3-require-post-handshake
14 test-9 = 9-client-auth-TLSv1.3-require-non-empty-names-post-handshake
15 test-10 = 10-client-auth-TLSv1.3-noroot-post-handshake
16 test-11 = 11-client-auth-TLSv1.3-request-force-client-post-handshake
17 test-12 = 12-client-auth-TLSv1.3-request-force-server-post-handshake
18 test-13 = 13-client-auth-TLSv1.3-request-force-both-post-handshake
210 [6-client-auth-TLSv1.3-request-post-handshake]
211 ssl_conf = 6-client-auth-TLSv1.3-request-post-handshake-ssl
[all …]
H A D26-tls13_client_auth.cnf.in12 ## TLSv1.3 and post-handshake authentication
133 name => "client-auth-TLSv1.3-request-post-handshake",
149 name => "client-auth-TLSv1.3-require-fail-post-handshake",
166 name => "client-auth-TLSv1.3-require-post-handshake",
193 name => "client-auth-TLSv1.3-require-non-empty-names-post-handshake",
221 name => "client-auth-TLSv1.3-noroot-post-handshake",
243 name => "client-auth-TLSv1.3-request-force-client-post-handshake",
262 name => "client-auth-TLSv1.3-request-force-server-post-handshake",
281 name => "client-auth-TLSv1.3-request-force-both-post-handshake",
/freebsd/contrib/mandoc/
H A Deqn_html.c37 struct tag *post, *row, *cell, *t; in eqn_box() local
47 post = NULL; in eqn_box()
69 post = print_otag(p, TAG_MTABLE, ""); in eqn_box()
98 post = print_otag(p, TAG_MOVER, ""); in eqn_box()
101 post = print_otag(p, TAG_MSUP, ""); in eqn_box()
104 post = print_otag(p, TAG_MUNDER, ""); in eqn_box()
107 post = print_otag(p, TAG_MSUB, ""); in eqn_box()
110 post = print_otag(p, TAG_MFRAC, ""); in eqn_box()
113 post = print_otag(p, TAG_MUNDEROVER, ""); in eqn_box()
116 post = print_otag(p, TAG_MSUBSUP, ""); in eqn_box()
[all …]
/freebsd/contrib/bmake/unit-tests/
H A Ddir.exp13 Expanding "{fetch,extract}{,-post}"... Expanding "fetch{,-post}"... fetch fetch-post
14 Expanding "extract{,-post}"... fetch fetch-post extract extract-post
15 fetch fetch-post extract extract-post
40 : fetch-post
42 : extract-post
H A Darchive.mk38 create-archive: ${ARCHIVE} pre post
44 ${ARCHIVE}: $${:Ulibprog.a}(archive.mk modmisc.mk $${:Uvarmisc.mk}) pre post
48 list-archive: ${ARCHIVE} pre post
55 list-archive-wildcard: ${ARCHIVE}([at]*.mk) pre post
60 # expect+1: Error in source archive spec "libprog.a${UNDEF}(archive.mk) pre post"
61 list-archive-undef-archive: ${ARCHIVE}$${UNDEF}(archive.mk) pre post
68 list-archive-undef-member: ${ARCHIVE}(archive$${UNDEF}.mk) pre post
72 depend-on-existing-member: ${ARCHIVE}(archive.mk) pre post
75 depend-on-nonexistent-member: ${ARCHIVE}(nonexistent.mk) pre post
78 remove-archive: pre post
[all …]
H A Ddir.mk63 all: {fetch,extract}{,-post}
65 fetch fetch-post extract extract-post:
94 .PHONY: fetch fetch-post extract extract-post
/freebsd/sys/kern/
H A Dvnode_if.src47 # Lines starting with %! specify a pre or post-condition function
88 %! create post vop_create_post
100 %! whiteout post vop_whiteout_post
112 %! mknod post vop_mknod_post
123 %! open post vop_open_post
135 %! close post vop_close_post
206 %! setattr post vop_setattr_post
223 %! read post vop_read_post
234 %! read_pgcache post vop_read_pgcache_post
246 %! write post VOP_WRITE_POST
[all …]
/freebsd/contrib/ofed/librdmacm/man/
H A Drdma_cm.743 rdma_post_recv - post a buffer to receive a message
45 rdma_post_send - post a buffer to send a message
47 rdma_post_read - post an RDMA to read data into a buffer
49 rdma_post_write - post an RDMA to send data from a buffer
51 rdma_post_recvv - post a vector of buffers to receive a message
53 rdma_post_sendv - post a vector of buffers to send a message
55 rdma_post_readv - post a vector of buffers to receive an RDMA read
57 rdma_post_writev - post a vector of buffers to send an RDMA write
59 rdma_post_ud_send - post a buffer to send a message on a UD QP
/freebsd/contrib/atf/atf-c/detail/
H A Dsanity_test.c51 enum type { inv, pre, post, unreachable }; enumerator
75 case post: in do_test_child()
76 POST(td->m_cond); in do_test_child()
134 case post: in do_test()
192 ATF_TC(post);
193 ATF_TC_HEAD(post, tc) in ATF_TC_HEAD() argument
195 atf_tc_set_md_var(tc, "descr", "Tests the POST macro"); in ATF_TC_HEAD()
197 ATF_TC_BODY(post, tc) in ATF_TC_BODY() argument
201 do_test(post, false); in ATF_TC_BODY()
202 do_test(post, true); in ATF_TC_BODY()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64PostCoalescerPass.cpp1 //===- AArch64PostCoalescerPass.cpp - AArch64 Post Coalescer pass ---------===//
18 #define DEBUG_TYPE "aarch64-post-coalescer-pass"
35 return "AArch64 Post Coalescer pass"; in getPassName()
49 INITIALIZE_PASS_BEGIN(AArch64PostCoalescer, "aarch64-post-coalescer-pass",
50 "AArch64 Post Coalescer Pass", false, false)
52 INITIALIZE_PASS_END(AArch64PostCoalescer, "aarch64-post-coalescer-pass", in INITIALIZE_PASS_DEPENDENCY()
53 "AArch64 Post Coalescer Pass", false, false) in INITIALIZE_PASS_DEPENDENCY()
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/sysevent/
H A Dtst.post.d40 sysevent:::post
48 sysevent:::post
56 sysevent:::post
64 sysevent:::post
71 sysevent:::post
78 sysevent:::post
H A Dtst.post_chan.d40 sysevent:::post
47 sysevent:::post
55 sysevent:::post
63 sysevent:::post
70 sysevent:::post
77 sysevent:::post
/freebsd/crypto/openssl/crypto/
H A Dcore_algorithm.c25 int (*post)(OSSL_PROVIDER *, int operation_id, int no_store, void *data, member
80 /* Do we fulfill post-conditions? */ in algorithm_do_map()
81 if (data->post == NULL) { in algorithm_do_map()
82 /* If there is no post-condition function, assume "yes" */ in algorithm_do_map()
84 } else if (!data->post(provider, cur_operation, no_store, data->data, in algorithm_do_map()
129 /* If post-condition not fulfilled, set general failure */ in algorithm_do_this()
146 int (*post)(OSSL_PROVIDER *, int operation_id, in ossl_algorithm_do_all()
158 cbdata.post = post; in ossl_algorithm_do_all()
/freebsd/sys/contrib/openzfs/tests/test-runner/bin/
H A Dtest-runner.py.in418 props = ['outputdir', 'timeout', 'user', 'pre', 'pre_user', 'post',
422 pre=None, pre_user=None, post=None, post_user=None, argument
427 self.post = post or ''
448 Post: %s%s
452 self.pre, pre_user, self.post, post_user, self.failsafe,
457 Check the pre/post/failsafe scripts, user and Test. Omit the Test from
460 files = [self.pre, self.pathname, self.post, self.failsafe]
479 Create Cmd instances for the pre/post/failsafe scripts. If the pre
480 script doesn't pass, skip this Test. Run the post script regardless.
493 odir = os.path.join(self.outputdir, os.path.basename(self.post))
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolutionNormalization.h12 // The following example illustrates post-increment uses and how normalized
27 // "post-incremented" value.
29 // Expressions for post-incremented uses are represented as an expression
30 // paired with a set of loops for which the expression is in "post-increment"
52 /// Normalize \p S to be post-increment for all loops present in \p
64 /// Denormalize \p S to be post-increment for all loops present in \p
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_unmount/
H A Dzfs_unmount_nested.ksh80 log_fail "$TESTPOOL/$ds_post (post) not initially mounted"
95 log_fail "$ds_post (post) is mounted"
110 log_fail "$TESTPOOL/$ds_post (post) not initially mounted"
125 log_fail "$TESTPOOL/$ds_post (post) is mounted"
140 log_fail "$TESTPOOL/$ds_post (post) not initially mounted"
155 log_fail "$TESTPOOL/$ds_post (post) is mounted"
170 log_fail "$TESTPOOL/$ds_post (post) not initially mounted"
185 log_fail "$ds_post (post) is mounted"
/freebsd/sys/contrib/device-tree/Bindings/clock/
H A Dkeystone-pll.txt2 a divider and a post divider. The additional PLL IPs like ARMPLL, DDRPLL
16 - reg-names : control, multiplier and post-divider. The multiplier and
17 post-divider registers are applicable only for main pll clock
18 - fixed-postdiv : fixed post divider value. If absent, use clkod register bits
27 reg-names = "control", "multiplier", "post-divider";
/freebsd/contrib/bmake/
H A Dimport.sh84 post=$SB/tmp/bmake-post.sh
91 if [ -s $post ]; then
92 last=`sed -n '/ tag/s,.*/,bmake-,p' $post`
117 } > $post
120 echo "After you commit, run $post"
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafetyTIL.cpp161 // Sorts the CFGs blocks using a reverse post-order depth-first traversal.
182 // before their post-dominator (because it's a reverse topological traversal).
232 // Computes the immediate post-dominator of the current block. Assumes that all
233 // of its successors have already computed their post-dominators. This is
237 // Walk back from each predecessor to find the common post-dominator node. in computePostDominator()
241 // If we don't yet have a candidate for post-dominator yet, take this one. in computePostDominator()
288 // 2) Computing dominators and post-dominators
316 // Compute post-dominators and compute the sizes of each node in the in computeNormalForm()
322 // Compute the sizes of each node in the post-dominator tree and assign IDs in in computeNormalForm()
328 // Assign IDs in the post-dominator tree. in computeNormalForm()
/freebsd/crypto/heimdal/appl/push/
H A Dpush.826 retrieves mail from the post office box
95 points to the post office, if no other hostname is specified.
105 from the post office at
116 lines for current user at post office
/freebsd/sys/contrib/openzfs/man/man1/
H A Dtest-runner.1102 The exception is options pertaining to pre and post scripts, which act on all
114 When a pre script fails for a test group, only the post script is executed,
177 .It Sy post No = Ar script
182 Execute the post script as
252 Execute the post script as
287 post =
/freebsd/contrib/kyua/utils/fs/
H A Dlua_module.cpp103 /// \post stack(-1) The basename of the input path.
123 /// \post stack(-1) The directory part of the input path.
143 /// \post stack(-1) Whether the input path exists or not.
195 /// \post The DIR* object is closed.
222 /// \post stack(-1) The iterator function.
260 /// \post stack(-1) Whether the input path is absolute or not.
282 /// \post stack(-1) The concatenation of the two paths.
305 /// \post The global 'fs' symbol is set to a table that contains functions to a
318 /// \post The global 'fs' symbol is set to a table that contains functions to a
/freebsd/sys/contrib/openzfs/.github/
H A Dcodecov.yml3 require_ci_to_pass: false # always post
22 behavior: once # update if exists; post new; skip if deleted
23 require_changes: yes # only post when coverage changes
/freebsd/sys/contrib/openzfs/tests/runfiles/
H A Dcommon.run25 post = cleanup
98 post =
164 post =
175 post =
379 post =
426 post =
487 post =
675 post =
683 post =
723 post
[all...]
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zpool_upgrade/
H A Dzpool_upgrade_004_pos.ksh87 check_pool $POOL_NAME post > /dev/null
90 # called $TMPDIR/pool-checksums.$POOL_NAME.post
92 $TMPDIR/pool-checksums.$POOL_NAME.post
94 $RM $TMPDIR/pool-checksums.$POOL_NAME.pre $TMPDIR/pool-checksums.$POOL_NAME.post

12345678910>>...80