Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 323 for xremove (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/syscall/zerrors_linux_amd64.go

    	EPIPE           = Errno(0x20)
    	EPROTO          = Errno(0x47)
    	EPROTONOSUPPORT = Errno(0x5d)
    	EPROTOTYPE      = Errno(0x5b)
    	ERANGE          = Errno(0x22)
    	EREMCHG         = Errno(0x4e)
    	EREMOTE         = Errno(0x42)
    	EREMOTEIO       = Errno(0x79)
    	ERESTART        = Errno(0x55)
    	ERFKILL         = Errno(0x84)
    	EROFS           = Errno(0x1e)
    	ESHUTDOWN       = Errno(0x6c)
    	ESOCKTNOSUPPORT = Errno(0x5e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "description": "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. finalizers is a shared field, any actor with permission can reorder it....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K 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