Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for isActive (0.3 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

          this.oldValue = oldValue;
        }
    
        @Override
        public boolean isLoading() {
          return true;
        }
    
        @Override
        public boolean isActive() {
          return oldValue.isActive();
        }
    
        @Override
        public int getWeight() {
          return oldValue.getWeight();
        }
    
        @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

        }
    
        @Override
        public boolean isLoading() {
          return true;
        }
    
        @Override
        public boolean isActive() {
          return oldValue.isActive();
        }
    
        @Override
        public int getWeight() {
          return oldValue.getWeight();
        }
    
        @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    	lambdaMap := make(map[string][]madmin.TargetIDStatus)
    
    	for _, tgt := range globalEventNotifier.Targets() {
    		targetIDStatus := make(map[string]madmin.Status)
    		active, _ := tgt.IsActive()
    		targetID := tgt.ID()
    		if active {
    			targetIDStatus[targetID.ID] = madmin.Status{Status: string(madmin.ItemOnline)}
    		} else {
    			targetIDStatus[targetID.ID] = madmin.Status{Status: string(madmin.ItemOffline)}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    	// pods are considered inactive if the config source has observed a
    	// terminal phase (if the Kubelet recorded that the pod reached a terminal
    	// phase the pod should never be restarted)
    	if pod.Status.Phase == v1.PodSucceeded || pod.Status.Phase == v1.PodFailed {
    		return true
    	}
    	// a pod that has been marked terminal within the Kubelet is considered
    	// inactive (may have been rejected by Kubelet admission)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. src/debug/elf/elf.go

    func (i SectionIndex) GoString() string { return stringName(uint32(i), shnStrings, true) }
    
    // Section type.
    type SectionType uint32
    
    const (
    	SHT_NULL           SectionType = 0          /* inactive */
    	SHT_PROGBITS       SectionType = 1          /* program defined information */
    	SHT_SYMTAB         SectionType = 2          /* symbol table section */
    	SHT_STRTAB         SectionType = 3          /* string table section */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top