Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 694 for chain (0.12 sec)

  1. src/crypto/x509/verify_test.go

    	// Every returned chain should match 1 expected chain (or <2 if testing against the system)
    	for _, chain := range chains {
    		nMatched := 0
    		for _, expectedChain := range test.expectedChains {
    			if doesMatch(expectedChain, chain) {
    				nMatched++
    			}
    		}
    		// Allow additional unknown chains if systemLax is set
    		if nMatched == 0 && test.systemLax == false || nMatched > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  2. src/crypto/x509/verify.go

    	}
    
    	return chains, nil
    }
    
    func appendToFreshChain(chain []*Certificate, cert *Certificate) []*Certificate {
    	n := make([]*Certificate, len(chain)+1)
    	copy(n, chain)
    	n[len(chain)] = cert
    	return n
    }
    
    // alreadyInChain checks whether a candidate certificate is present in a chain.
    // Rather than doing a direct byte for byte equivalency check, we check if the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier_test.go

    		add chain ip kube-proxy firewall-check
    		add chain ip kube-proxy mark-for-masquerade
    		add chain ip kube-proxy masquerading
    		add chain ip kube-proxy nat-output { type nat hook output priority -100 ; }
    		add chain ip kube-proxy nat-postrouting { type nat hook postrouting priority 100 ; }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier.go

    	kubePostroutingChain utiliptables.Chain = "KUBE-POSTROUTING"
    
    	// kubeMarkMasqChain is the mark-for-masquerade chain
    	kubeMarkMasqChain utiliptables.Chain = "KUBE-MARK-MASQ"
    
    	// kubeNodePortChain is the kubernetes node port chain
    	kubeNodePortChain utiliptables.Chain = "KUBE-NODE-PORT"
    
    	// kubeForwardChain is the kubernetes forward chain
    	kubeForwardChain utiliptables.Chain = "KUBE-FORWARD"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/tf_to_corert_pipeline.mlir

    // CHECK-LABEL: func @__forward_call_369
    // CHECK-SAME: ([[in_chain:%.*]]: !tfrt.chain
    // CHECK-SAME: [[arg1:%.*]]: !tfrt_fallback.tf_tensor {tf._user_specified_name = "inputs"},
    // CHECK-SAME: [[arg2:%.*]]: !tfrt_fallback.tf_tensor, [[arg3:%.*]]: !tfrt_fallback.tf_tensor, [[arg4:%.*]]: !tfrt_fallback.tf_tensor, [[arg5:%.*]]: !tfrt_fallback.tf_tensor)
    // CHECK-SAME: -> (!tfrt.chain
    // CHECK: [[o1:%.*]] = tfrt_fallback_async.const_dense_tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/run.go

    		if cfg.cfg.InboundInterceptionMode == constants.TPROXY {
    			// When using TPROXY, create a new chain for routing all inbound traffic to
    			// Envoy. Any packet entering this chain gets marked with the ${INBOUND_TPROXY_MARK} mark,
    			// so that they get routed to the loopback interface in order to get redirected to Envoy.
    			// In the ISTIOINBOUND chain, '-j ISTIODIVERT' reroutes to the loopback
    			// interface.
    			// Mark all inbound packets.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  7. src/crypto/tls/ticket.go

    	b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    		for _, chain := range s.verifiedChains {
    			b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    				// We elide the first certificate because it's always the leaf.
    				if len(chain) == 0 {
    					b.SetError(errors.New("tls: internal error: empty verified chain"))
    					return
    				}
    				for _, cert := range chain[1:] {
    					b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/RestFilter.java

         */
        public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
            if (!(request instanceof HttpServletRequest && response instanceof HttpServletResponse)) {
                chain.doFilter(request, response);
                return;
            }
    
            HttpServletRequest httpRequest = (HttpServletRequest) request;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listenertest/match.go

    	// present.
    	TotalMatch bool
    }
    
    type FilterChainTest struct {
    	// Match a filter chain by name
    	Name string
    	// Match filter chain by 'type'. This can be important since Name is currently not unique
    	Type FilterChainType
    	// Port the filter chain matches
    	Port uint32
    
    	NetworkFilters []string
    	HTTPFilters    []string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/decompose_resource_op.mlir

    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 293 : i32}} {
    
    // CHECK-LABEL: func @gather
    // CHECK-SAME: ([[in_chain:%.*]]: !tfrt.chain
    // CHECK-SAME: [[arg0:%.*]]: !tfrt_fallback.tf_tensor, [[arg1:%.*]]: !tfrt_fallback.tf_tensor)
    // CHECK: [[const:%.*]] = tfrt_fallback_async.const_dense_tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 00:40:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top