Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for keys2 (0.05 sec)

  1. 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)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    	return arrayType("set", nil, items)
    }
    
    func listMapType(keys []string, items *schema.Structural) schema.Structural {
    	return arrayType("map", keys, items)
    }
    
    func listMapTypePtr(keys []string, items *schema.Structural) *schema.Structural {
    	l := listMapType(keys, items)
    	return &l
    }
    
    func arrayType(listType string, keys []string, items *schema.Structural) schema.Structural {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            self._output_saved_model_path,
            signature_keys=signatures.keys(),
            tags=tags,
        )
    
        # The original and converted model should have the same signature map.
        self.assertAllInSet(
            list(original_signature_map.keys()), set(signatures.keys())
        )
        self.assertDictEqual(original_signature_map, converted_signature_map)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    			Current:  `{}`,
    			Modified: `{"complex_nullable":["key1",null,"key2"]}`,
    
    			ExpectedTwoWay:         `{"complex_nullable":["key1",null,"key2"]}`,
    			ExpectedTwoWayResult:   `{"complex_nullable":["key1",null,"key2"]}`,
    			ExpectedThreeWay:       `{"complex_nullable":["key1",null,"key2"]}`,
    			ExpectedThreeWayResult: `{"complex_nullable":["key1",null,"key2"]}`,
    		},
    		"added only": {
    			Original: `{"name":"foo"}`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    			fmt.Fprintf(w, "unexpected URL: %v", r.URL)
    		}
    	}))
    	klog.V(4).Infof("Serving OIDC at: %v", ts.URL)
    	return ts
    }
    
    func toKeySet(keys []*jose.JSONWebKey) jose.JSONWebKeySet {
    	ret := jose.JSONWebKeySet{}
    	for _, k := range keys {
    		ret.Keys = append(ret.Keys, *k)
    	}
    	return ret
    }
    
    func (c *claimsTest) run(t *testing.T) {
    	var (
    		signer jose.Signer
    		err    error
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Maps.java

          Iterable<K> keys, Function<? super K, V> valueFunction) {
        return toMap(keys.iterator(), valueFunction);
      }
    
      /**
       * Returns an immutable map whose keys are the distinct elements of {@code keys} and whose value
       * for each key was computed by {@code valueFunction}. The map's iteration order is the order of
       * the first appearance of each key in {@code keys}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Maps.java

          Iterable<K> keys, Function<? super K, V> valueFunction) {
        return toMap(keys.iterator(), valueFunction);
      }
    
      /**
       * Returns an immutable map whose keys are the distinct elements of {@code keys} and whose value
       * for each key was computed by {@code valueFunction}. The map's iteration order is the order of
       * the first appearance of each key in {@code keys}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          },
          "peerDependencies": {
            "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
          }
        },
        "node_modules/@typescript-eslint/visitor-keys": {
          "version": "5.59.6",
          "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.6.tgz",
          "integrity": "sha512-zEfbFLzB9ETcEJ4HZEEsCR9HHeNku5/Qw1jSS5McYJv5BR+ftYXwFFAH5Al+xkGaZEqowMwl7uoJjQb1YSPF8Q==",
          "dev": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

       */
      @CheckForNull
      Map<K, V> loadAll(Set<? extends K> keys, CacheLoader<? super K, V> loader)
          throws ExecutionException {
        checkNotNull(loader);
        checkNotNull(keys);
        Stopwatch stopwatch = Stopwatch.createStarted();
        Map<K, V> result;
        boolean success = false;
        try {
          @SuppressWarnings("unchecked") // safe since all keys extend K
          Map<K, V> map = (Map<K, V>) loader.loadAll(keys);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

       */
      @CheckForNull
      Map<K, V> loadAll(Set<? extends K> keys, CacheLoader<? super K, V> loader)
          throws ExecutionException {
        checkNotNull(loader);
        checkNotNull(keys);
        Stopwatch stopwatch = Stopwatch.createStarted();
        Map<K, V> result;
        boolean success = false;
        try {
          @SuppressWarnings("unchecked") // safe since all keys extend K
          Map<K, V> map = (Map<K, V>) loader.loadAll(keys);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top