Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  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/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)
  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. 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)
  7. 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)
  8. 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)
  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. src/cmd/go/go_test.go

    	tg.wantExecutable(tg.path("bin/b"+exeSuffix), "go install example/a example/b did not install binaries")
    	tg.must(os.Remove(tg.path("bin/a" + exeSuffix)))
    	tg.must(os.Remove(tg.path("bin/b" + exeSuffix)))
    	tg.run("install", "-tags", "mytag", "example/...")
    	tg.wantExecutable(tg.path("bin/a"+exeSuffix), "go install example/... did not install binaries")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top