Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for cleaned (0.18 sec)

  1. guava/src/com/google/common/cache/CacheBuilder.java

       *
       * <p>Expired entries may be counted in {@link Cache#size}, but will never be visible to read or
       * write operations. Expired entries are cleaned up as part of the routine maintenance described
       * in the class javadoc.
       *
       * @param duration the length of time after an entry is created that it should be automatically
       *     removed
       * @return this {@code CacheBuilder} instance (for chaining)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers.go

    	// IsPodTerminationRequested returns true when pod termination has been requested
    	// until the termination completes and the pod is removed from config. This should
    	// not be used in cleanup loops because it will return false if the pod has already
    	// been cleaned up - use ShouldPodContainersBeTerminating instead. Also, this method
    	// may return true while containers are still being initialized by the pod worker.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  3. cmd/erasure-healing_test.go

    		dir := path.Join(drive, bucket, object, uuid.String())
    		_, err := os.ReadFile(pathJoin(dir, "part.1"))
    		if err == nil {
    			t.Fatal("expected data dit to be cleaned up")
    		}
    	}
    
    	// Remove the bucket - to simulate the case where bucket was
    	// created when the disk was down.
    	err = os.RemoveAll(path.Join(fsDirs[0], bucket))
    	if err != nil {
    		t.Fatal(err)
    	}
    	// This would create the bucket.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal.go

    		if scaleUpLimit < args.CurrentReplicas {
    			// We shouldn't scale up further until the scaleUpEvents will be cleaned up
    			scaleUpLimit = args.CurrentReplicas
    		}
    		maximumAllowedReplicas := args.MaxReplicas
    		if maximumAllowedReplicas > scaleUpLimit {
    			maximumAllowedReplicas = scaleUpLimit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                if (!incomingEdge.isArtifactOnlyEdge()) {
                    return false;
                }
            }
            return true;
        }
    
        /*
         * When a node exits the graph, its constraints need to be cleaned up.
         * This means:
         * * Rescheduling any deferred selection impacted by a constraint coming from this node
         * * Making sure we no longer are registered as pending interest on nodes pointed by constraints
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/proxier.go

    	} else {
    		// If no service exists, just cleanup the remote endpoints
    		klog.V(3).InfoS("Endpoints are orphaned, cleaning up")
    		// Cleanup Endpoints references
    		epInfos, exists := proxier.endpointsMap[*svcPortName]
    
    		if exists {
    			// Cleanup Endpoints references
    			for _, ep := range epInfos {
    				epInfo, ok := ep.(*endpointInfo)
    
    				if ok {
    					epInfo.Cleanup()
    				}
    
    			}
    		}
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    // queue, reporting whether any were popped.
    func (q *wantConnQueue) cleanFrontNotWaiting() (cleaned bool) {
    	for {
    		w := q.peekFront()
    		if w == nil || w.waiting() {
    			return cleaned
    		}
    		q.popFront()
    		cleaned = true
    	}
    }
    
    // cleanFrontCanceled pops any wantConns with canceled dials from the head of the queue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_utils_test.go

    			claim.SetOwnerReferences(claimRefs)
    			updateClaimOwnerRefForSetAndPod(logger, &claim, &set, &pod)
    			// Confirm that after the update, the specified owner is set as the only controller.
    			// Any other controllers will be cleaned update by the update.
    			check := func(target, owner metav1.Object) bool {
    				for _, ref := range target.GetOwnerReferences() {
    					if ref.UID == owner.GetUID() {
    						return ref.Controller != nil && *ref.Controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        # model and saving the output quantized model. These two member
        # attributes can be used to specify the paths for such models,
        # respectively. These paths will be cleaned up after each test case.
        self._input_saved_model_path = self.create_tempdir('input').full_path
        self._output_saved_model_path = self.create_tempdir('output').full_path
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	r.removeStorage_locked(newCRD.UID)
    }
    
    // removeStorage_locked removes the cached storage with the given uid as key from the storage map. This function
    // updates r.customStorage with the cleaned-up storageMap and tears down the old storage.
    // NOTE: Caller MUST hold r.customStorageLock to write r.customStorage thread-safely.
    func (r *crdHandler) removeStorage_locked(uid types.UID) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top