Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 344 for chain (0.04 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/control_flow.mlir

      // CHECK-SAME: (!tfrt.chain, !tfrt_fallback.tf_tensor) -> (!tfrt.chain, !tfrt_fallback.tf_tensor)
      %2 = "tf.PartitionedCall"(%0) {config = "", config_proto = "", executor_type = "", f = @callee} : (tensor<i32>) -> (tensor<i32>)
      // CHECK-NEXT: [[results_2:%.*]]:2 = tfrt.call @callee([[chain]]
      // CHECK-SAME: (!tfrt.chain, !tfrt_fallback.tf_tensor) -> (!tfrt.chain, !tfrt_fallback.tf_tensor)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 00:40:32 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/helpers_test.go

    	tx.Add(&knftables.Table{})
    	tx.Add(&knftables.Chain{
    		Name: "mark-masq-chain",
    	})
    	tx.Add(&knftables.Chain{
    		Name: "masquerade-chain",
    	})
    	tx.Add(&knftables.Chain{
    		Name: "empty-chain",
    	})
    
    	tx.Add(&knftables.Rule{
    		Chain: "mark-masq-chain",
    		Rule:  "mark set mark or 0x4000",
    	})
    
    	tx.Add(&knftables.Rule{
    		Chain: "masquerade-chain",
    		Rule:  "mark and 0x4000 == 0 return",
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_inbound.go

    		}
    		// Build the actual chain
    		chains := lb.inboundChainForOpts(cc, mtls, opts)
    
    		if cc.bindToPort {
    			// If this config is for bindToPort, we want to actually create a real Listener.
    			listeners = append(listeners, lb.inboundCustomListener(cc, chains))
    		} else {
    			// Otherwise, just append the filter chain to the virtual inbound chains.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt

        )
        fun getLevel(): Level = level
    
        @Throws(IOException::class)
        override fun intercept(chain: Interceptor.Chain): Response {
          val level = this.level
    
          val request = chain.request()
          if (level == Level.NONE) {
            return chain.proceed(request)
          }
    
          val logBody = level == Level.BODY
          val logHeaders = logBody || level == Level.HEADERS
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. pilot/pkg/leaderelection/leaderelection_test.go

    		})
    	}
    }
    
    func alreadyHit(cur instance, chain []instance) bool {
    	for _, cc := range chain {
    		if cur == cc {
    			return true
    		}
    	}
    	return false
    }
    
    func checkCycles(t *testing.T, start instance, cases []instance, chain []instance) {
    	if alreadyHit(start, chain) {
    		t.Fatalf("cycle on leader election: cur %v, chain %v", start, chain)
    	}
    	for _, nextHop := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

            "parent"            | ":"
        }
    
        def "reports problem when root project build script uses chain of methods #chain { } to apply plugins to other projects"() {
            createDirs("a", "b")
            settingsFile << """
                include("a")
                include("b")
            """
            buildFile << """
                $chain { it.plugins.apply('java-library') }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  10. pkg/istio-agent/agent_test.go

    }
    
    func copyCerts(t *testing.T, dir string) {
    	if err := os.MkdirAll(dir, 0o755); err != nil {
    		t.Fatal(err)
    	}
    	if err := file.Copy(filepath.Join(env.IstioSrc, "./tests/testdata/certs/pilot/cert-chain.pem"), dir, "cert-chain.pem"); err != nil {
    		t.Fatal(err)
    	}
    	if err := file.Copy(filepath.Join(env.IstioSrc, "./tests/testdata/certs/pilot/key.pem"), dir, "key.pem"); err != nil {
    		t.Fatal(err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top