Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for newLru (0.16 sec)

  1. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

        for (int i = 0; i < params.size(); i++) {
          List<Object> newArgs = Lists.newArrayList(args);
          Object newArg = argGenerators.get(i).generateFresh(params.get(i).getType());
    
          if (newArg == null || Objects.equal(args.get(i), newArg)) {
            if (params.get(i).getType().getRawType().isEnum()) {
              continue; // Nothing better we can do if it's single-value enum
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

        for (int i = 0; i < params.size(); i++) {
          List<Object> newArgs = Lists.newArrayList(args);
          Object newArg = argGenerators.get(i).generateFresh(params.get(i).getType());
    
          if (newArg == null || Objects.equal(args.get(i), newArg)) {
            if (params.get(i).getType().getRawType().isEnum()) {
              continue; // Nothing better we can do if it's single-value enum
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. internal/grid/handlers.go

    }
    
    func recycleFunc[RT RoundTripper](newRT func() RT) (newFn func() RT, recycle func(r RT)) {
    	rAny := any(newRT())
    	var rZero RT
    	if _, ok := rAny.(Recycler); ok {
    		return newRT, func(r RT) {
    			if r != rZero {
    				if rc, ok := any(r).(Recycler); ok {
    					rc.Recycle()
    				}
    			}
    		}
    	}
    	pool := sync.Pool{
    		New: func() interface{} {
    			return newRT()
    		},
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. build/dependencies.yaml

          match: registry.k8s.io/node-problem-detector/node-problem-detector
        - path: cluster/addons/node-problem-detector/npd.yaml
          match: app.kubernetes.io/version
        # TODO(dims): Ensure newer versions get uploaded to
        # - https://console.cloud.google.com/storage/browser/gke-release/winnode/node-problem-detector
        # - https://gcsweb.k8s.io/gcs/kubernetes-release/node-problem-detector/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    Once enabled, you must create an initial lock state.
    It will cause Gradle to verify that resolution results do not change, resulting in the same selected dependencies even if newer versions are produced.
    Modifications to your build that would impact the resolved set of dependencies will cause it to fail.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. pkg/kubelet/images/image_gc_manager.go

    		klog.V(5).InfoS("Evaluating image ID for possible garbage collection based on disk usage", "imageID", image.id, "runtimeHandler", image.imageRecord.runtimeHandlerUsedToPullImage)
    		// Images that are currently in used were given a newer lastUsed.
    		if image.lastUsed.Equal(freeTime) || image.lastUsed.After(freeTime) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/volume_manager.go

    	// minutes to complete, we set the timeout to 2 minutes because kubelet
    	// will retry in the next sync iteration. This frees the associated
    	// goroutine of the pod to process newer updates if needed (e.g., a delete
    	// request to the pod).
    	// Value is slightly offset from 2 minutes to make timeouts due to this
    	// constant recognizable.
    	podAttachAndMountTimeout = 2*time.Minute + 3*time.Second
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. cluster/gce/upgrade.sh

        echo "export ETCD_VERSION=3.0.17"
        echo
        echo "Alternatively, if you choose to allow an etcd upgrade that doesn't support downgrade,"
        echo "you might still be able to downgrade Kubernetes by pinning to the newer etcd version."
        echo "In all cases, it is strongly recommended to have an etcd backup before upgrading."
        echo
        if [ -t 0 ] && [ -t 1 ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. pilot/pkg/xds/delta.go

    			ResourceNames: res,
    			Wildcard:      wildcard,
    		}
    		return true
    	}
    
    	// If there is mismatch in the nonce, that is a case of expired/stale nonce.
    	// A nonce becomes stale following a newer nonce being sent to Envoy.
    	// TODO: due to concurrent unsubscribe, this probably doesn't make sense. Do we need any logic here?
    	if request.ResponseNonce != "" && request.ResponseNonce != previousInfo.NonceSent {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        // We can continue if it's 1.8, and we can continue if it's an integer in [9, 20).
        if (javaVersion != null && javaVersion >= 20) {
          // TODO(b/261217224): Make this test work under newer JDKs.
          return;
        }
        TimedWaiterThread thread =
            new TimedWaiterThread(new AbstractFuture<Object>() {}, 2, TimeUnit.SECONDS);
        thread.start();
        thread.awaitWaiting();
        thread.suspend();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
Back to top