Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 220 for xremove (0.21 sec)

  1. internal/bucket/lifecycle/lifecycle_test.go

    			objectName:     "foxdir/fooobject/foo.txt",
    			objectModTime:  time.Now().UTC().Add(-10 * 24 * time.Hour), // Created 10 days ago
    			expectedAction: DeleteAction,
    		},
    		// Too early to remove (test Days)
    		{
    			inputConfig:    `<LifecycleConfiguration><Rule><Filter><Prefix>foodir/</Prefix></Filter><Status>Enabled</Status><Expiration><Days>5</Days></Expiration></Rule></LifecycleConfiguration>`,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    }
    
    func (cl *connLRU) removeOldest() *persistConn {
    	ele := cl.ll.Back()
    	pc := ele.Value.(*persistConn)
    	cl.ll.Remove(ele)
    	delete(cl.m, pc)
    	return pc
    }
    
    // remove removes pc from cl.
    func (cl *connLRU) remove(pc *persistConn) {
    	if ele, ok := cl.m[pc]; ok {
    		cl.ll.Remove(ele)
    		delete(cl.m, pc)
    	}
    }
    
    // len returns the number of items in the cache.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/manager_test.go

    	// is removed from capacity and it no longer exists in healthyDevices after the call.
    	e1.setStopTime(time.Now().Add(-1*endpointStopGracePeriod - time.Duration(10)*time.Second))
    	capacity, allocatable, removed := testManager.GetCapacity()
    	as.Equal([]string{resourceName1}, removed)
    	as.NotContains(capacity, v1.ResourceName(resourceName1))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  4. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Must be empty before the object is deleted from the registry. Each entry
      // is an identifier for the responsible component that will remove the entry
      // from the list. If the deletionTimestamp of the object is non-nil, entries
      // in this list can only be removed.
      // Finalizers may be processed and removed in any order.  Order is NOT enforced
      // because it introduces significant risk of stuck finalizers.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Must be empty before the object is deleted from the registry. Each entry
      // is an identifier for the responsible component that will remove the entry
      // from the list. If the deletionTimestamp of the object is non-nil, entries
      // in this list can only be removed.
      // Finalizers may be processed and removed in any order.  Order is NOT enforced
      // because it introduces significant risk of stuck finalizers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	wantObjects = append(wantObjects, expected.added...)
    	for _, remove := range expected.removed {
    		for i, obj := range wantObjects {
    			// This is a bit relaxed (no GVR comparison, no UID
    			// comparison) to simplify writing the test cases.
    			if obj.GetName() == remove.GetName() && obj.GetNamespace() == remove.GetNamespace() {
    				wantObjects = append(wantObjects[0:i], wantObjects[i+1:]...)
    				break
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/SetsTest.java

                        int size = elements.length;
                        // Remove last element, if size > 1
                        Set<String> set1 =
                            (size > 1)
                                ? Sets.newHashSet(Arrays.asList(elements).subList(0, size - 1))
                                : Sets.newHashSet(elements);
                        // Remove first element, if size > 0
                        Set<String> set2 =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Sets.java

          NavigableSet<E> navigableSet) {
        return Synchronized.navigableSet(navigableSet);
      }
    
      /** Remove each element in an iterable from a set. */
      static boolean removeAllImpl(Set<?> set, Iterator<?> iterator) {
        boolean changed = false;
        while (iterator.hasNext()) {
          changed |= set.remove(iterator.next());
        }
        return changed;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers_test.go

    			status, exists := podWorkers.podSyncStatuses[podUID]
    			if tc.removed && exists {
    				t.Fatalf("Expected pod worker to be removed")
    			}
    			if !tc.removed && !exists {
    				t.Fatalf("Expected pod worker to not be removed")
    			}
    			if tc.removed {
    				return
    			}
    			if tc.expectGracePeriod > 0 && status.gracePeriod != tc.expectGracePeriod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  10. tensorflow/BUILD

        ],
    )
    
    # Packages that use private types symbols, until they are exported.
    # TODO(b/154650521) Remove.
    # If this is modified, then copy.bara.sky must also be modified.
    package_group(name = "types_allowlist")
    
    # Packages that use StructuredTensors.
    # TODO(b/159007891) Remove this package once StructuredTensor is exported.
    # LINT.IfChange
    package_group(name = "structured_tensor_allowlist")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
Back to top