Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for key_1 (0.99 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    }
    
    // In general, we convert the following form of sort to tf.TopK:
    //
    // %result = "mhlo.sort" (%keys, %indices) ({
    //  ^bb0(%key_0, %key_1, %index_0, %index_1):
    //     %1 = "mhlo.compare"(%key_0, %key_1) {mhlo::ComparisonDirection::GT}
    //     -> tensor<i1>
    //  }),
    //
    // where the indices is obtained by an IotaOp (maybe folded).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

        original:
          simpleMap:
            key1: 1
            key2: 1
        twoWay:
          simpleMap:
            key2: null
        modified:
          simpleMap:
            key1: 1
        current:
          simpleMap:
            key1: a
            key2: 1
            other: a
        threeWay:
          simpleMap:
            key1: 1
            key2: null
        result:
          simpleMap:
            key1: 1
            other: a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  3. tests/integration/pilot/common/routing.go

    			return map[string]any{
    				"Headers": []configData{{"@request.auth.claims.sub", "prefix", "sub"}},
    				"WithoutHeaders": []configData{
    					{"@request.auth.claims.nested.key1", "exact", "value-not-matched"},
    					{"@request.auth.claims.nested.key1", "regex", "(\\W|^)value\\s{0,3}not{0,1}\\s{0,3}matched(\\W|$)"},
    				},
    				"SystemNamespace":   t.Istio.Settings().SystemNamespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

          return ImmutableMap.of();
        }
        Entry<K, ? extends V> entry1 = entryItr.next();
        K key1 = entry1.getKey();
        V value1 = entry1.getValue();
        checkEntryNotNull(key1, value1);
        // Do something that works for j2cl, where we can't call getDeclaredClass():
        EnumMap<K, V> enumMap = new EnumMap<>(singletonMap(key1, value1));
        while (entryItr.hasNext()) {
          Entry<K, ? extends V> entry = entryItr.next();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Maps.java

          return ImmutableMap.of();
        }
        Entry<K, ? extends V> entry1 = entryItr.next();
        K key1 = entry1.getKey();
        V value1 = entry1.getValue();
        checkEntryNotNull(key1, value1);
        // Do something that works for j2cl, where we can't call getDeclaredClass():
        EnumMap<K, V> enumMap = new EnumMap<>(singletonMap(key1, value1));
        while (entryItr.hasNext()) {
          Entry<K, ? extends V> entry = entryItr.next();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    	}
    
    	doReq("first")
    	keys1 := tr.IdleConnKeysForTesting()
    
    	ts.CloseClientConnections()
    
    	var keys2 []string
    	waitCondition(t, 10*time.Millisecond, func(d time.Duration) bool {
    		keys2 = tr.IdleConnKeysForTesting()
    		if len(keys2) != 0 {
    			if d > 0 {
    				t.Logf("Transport hasn't noticed idle connection's death in %v.\nbefore: %q\n after: %q\n", d, keys1, keys2)
    			}
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. pkg/config/validation/validation_test.go

    					MatchLabels: map[string]string{
    						"app": "httpbin",
    					},
    				},
    				Rules: []*security_beta.Rule{
    					{
    						When: []*security_beta.Condition{
    							{
    								Key:    "key1",
    								Values: []string{"v1"},
    							},
    						},
    					},
    				},
    			},
    			valid: false,
    		},
    		{
    			name: "L7DenyWithFrom",
    			in: &security_beta.AuthorizationPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
Back to top