Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 579 for chains (0.14 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/ir/fallback_opt.mlir

    // CHECK-LABEL: func @createop
    func.func @createop(%in_ch: !tfrt.chain) -> !tfrt.chain {
    
      // CHECK: [[ch:%.*]] = tfrt_fallback_async.createop(%{{.*}}) key(100) device("cpu") "tf.AddV2"() {T = i32} num_args(2)
      %out_ch = tfrt_fallback_async.createop(%in_ch) key(100) device("cpu") "tf.AddV2"() {T = i32} num_args(2)
    
      // CHECK: tfrt.return [[ch]]
      tfrt.return %out_ch: !tfrt.chain
    }
    
    // CHECK-LABEL: func @fallback_resource
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 11:03:04 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/match/match_test.go

    				//   <no matches>
    				//   fallback (dest ip):
    				//     1.2.3.4: chain
    				fallback := NewDestinationIP()
    				fallback.Map["1.2.3.4"] = ToChain("chain")
    
    				root := NewDestinationPort()
    				root.OnNoMatch = ToMatcher(fallback.Matcher)
    				return root
    			},
    			want: func() *matcher.Matcher {
    				// root (dest ip):
    				//   1.2.3.4: chain
    
    				// fallback becomes root
    				want := NewDestinationIP()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_network_linux.go

    	utilexec "k8s.io/utils/exec"
    )
    
    const (
    	// KubeIPTablesHintChain is the chain whose existence in either iptables-legacy
    	// or iptables-nft indicates which version of iptables the system is using
    	KubeIPTablesHintChain utiliptables.Chain = "KUBE-IPTABLES-HINT"
    
    	// KubeFirewallChain is kubernetes firewall rules
    	KubeFirewallChain utiliptables.Chain = "KUBE-FIREWALL"
    )
    
    func (kl *Kubelet) initNetworkUtil() {
    	exec := utilexec.New()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 20:51:47 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/request/union/union.go

    // unionAuthRequestHandler authenticates requests using a chain of authenticator.Requests
    type unionAuthRequestHandler struct {
    	// Handlers is a chain of request authenticators to delegate to
    	Handlers []authenticator.Request
    	// FailOnError determines whether an error returns short-circuits the chain
    	FailOnError bool
    }
    
    // New returns a request authenticator that validates credentials using a chain of authenticator.Request objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/chain_test.go

    	tests := []struct {
    		name      string
    		ns        string
    		operation Operation
    		options   runtime.Object
    		chain     chainAdmissionHandler
    		accept    bool
    		calls     map[string]bool
    	}{
    		{
    			name:      "all accept",
    			ns:        sysns,
    			operation: Create,
    			options:   &metav1.CreateOptions{},
    			chain: []Interface{
    				makeHandler("a", true, Update, Delete, Create),
    				makeHandler("b", true, Delete, Create),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/builder/testdata/insert-multi-restore.golden

    * table
    -N chain
    -I chain 1 -f foo -b bar
    -I chain 2 -f foo -b baaz
    -I chain 3 -f foo -b baz
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 99 bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizerTest.groovy

            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/hello/shared/libhello.dylib
        Static library 'hello:staticLibrary'
            build using task: :helloStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/attributes/CompatibilityRuleChain.java

         *
         * @param rule the rule to add to the chain
         * @since 4.0
         */
        void add(Class<? extends AttributeCompatibilityRule<T>> rule);
    
        /**
         * <p>Adds an arbitrary compatibility rule to the chain, possibly configuring the rule as well.</p>
         *
         * @param rule the rule to add to the chain
         * @param configureAction the action to use to configure the rule
         * @since 4.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 3K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/builder/testdata/insert-multi.golden

    -t table -N chain
    -t table -I chain 1 -f foo -b bar
    -t table -I chain 2 -f foo -b baaz
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 120 bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/builder/testdata/append-insert-multi-restore.golden

    * table
    -N chain
    -A chain -f foo -b bar
    -I chain 2 -f foo -b bar
    -A chain -f foo -b baz
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 94 bytes
    - Viewed (0)
Back to top