Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 458 for keyA (0.04 sec)

  1. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

            def result = getMapUnderTestToRead().stringPropertyNames().containsAll(Arrays.asList(key1, key2))
    
            then:
            result == expectedResult
            1 * onAccess.accept(key1, reportedValue1)
            1 * onAccess.accept(key2, reportedValue2)
            0 * onAccess._
    
            where:
            key1       | reportedValue1  | key2           | reportedValue2 | expectedResult
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_executable_persistor_test.cc

      XlaSerializedCacheEntry entry;
      TF_ASSERT_OK(ReadTextOrBinaryProto(
          Env::Default(), GetFilePath(key1, persistor.persistent_cache_directory()),
          &entry));
      // Change the entry's key to key2.
      *entry.mutable_key() = key2;
      // Write the modified entry to file corresponding to key2.
      TF_ASSERT_OK(WriteBinaryProto(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route_internal_test.go

    		},
    		{
    			name: "@request.auth.claims.key1-key2",
    			in:   &networking.StringMatch{MatchType: &networking.StringMatch_Exact{Exact: "exact"}},
    			want: authz.MetadataMatcherForJWTClaims([]string{"key1-key2"}, authzmatcher.StringMatcher("exact"), false),
    		},
    		{
    			name: "@request.auth.claims.prefix",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch_test.go

        original:
          simpleMap:
            key1: 1
            key2: 1
        modified:
          simpleMap:
            key1: 1
        current:
          simpleMap:
            key1: a
            key2: 1
            other: a
        threeWay:
          simpleMap:
            key1: 1
            key2: null
        result:
          simpleMap:
            key1: 1
            other: a
      - description: delete all fields from map
        original:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Joiner.java

       *
       * <ul>
       *   <li>To output a separate entry for each key-value pair, pass {@code multimap.entries()} to a
       *       {@code MapJoiner} method that accepts entries as input, and receive output of the form
       *       {@code key1=A&key1=B&key2=C}.
       *   <li>To output a single entry for each key, pass {@code multimap.asMap()} to a {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  6. tests/common/jwt/jwt_token.go

    	//  "iss": "******@****.***",
    	//  "nested": {
    	//    "key2": "valueC",
    	//    "nested-2": {
    	//      "key2": "valueC"
    	//    }
    	//  },
    	//  "sub": "sub-1"
    	// }
    	// Generated by: security/tools/jwt/samples/gen-jwt.py tests/common/jwt/key.pem -jwks=tests/common/jwt/jwks.json
    	// --expire=3153600000 --iss=******@****.*** --sub=sub-1 --nestedclaim key2 valueC
    	// nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    	}
    
    	// Initial LIST comes from the moment of RV=10.
    	store.Replace(nil, "10")
    
    	addEvent("key1", 20, now)
    
    	// Force "key1" to rotate our of cache.
    	later := now.Add(2 * eventFreshDuration)
    	addEvent("key2", 30, later)
    	addEvent("key3", 40, later)
    
    	// Force cache resize.
    	addEvent("key4", 50, later.Add(time.Second))
    
    	_, err := store.getAllEventsSince(15, storage.ListOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. src/text/template/doc.go

    	    $x.Field1.Field2
    	- The name of a key of the data, which must be a map, preceded
    	  by a period, such as
    		.Key
    	  The result is the map element value indexed by the key.
    	  Key invocations may be chained and combined with fields to any
    	  depth:
    	    .Field1.Key1.Field2.Key2
    	  Although the key must be an alphanumeric identifier, unlike with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. src/internal/profile/encode.go

    		numLabels := make(map[string][]int64)
    		for _, l := range s.labelX {
    			var key, value string
    			key, err = getString(p.stringTable, &l.keyX, err)
    			if l.strX != 0 {
    				value, err = getString(p.stringTable, &l.strX, err)
    				labels[key] = append(labels[key], value)
    			} else {
    				numLabels[key] = append(numLabels[key], l.numX)
    			}
    		}
    		if len(labels) > 0 {
    			s.Label = labels
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Joiner.java

       *
       * <ul>
       *   <li>To output a separate entry for each key-value pair, pass {@code multimap.entries()} to a
       *       {@code MapJoiner} method that accepts entries as input, and receive output of the form
       *       {@code key1=A&key1=B&key2=C}.
       *   <li>To output a single entry for each key, pass {@code multimap.asMap()} to a {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
Back to top