Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for isActive (0.12 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. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    i=t.selTarget;return i&&Ce(i,e)||e},widthElement:function(t,e){return xt(t.widthElement,e)||this.placeholder},isActive:{get:function(){return Oe(this.selTarget,this.clsActive)},set:function(t){t&&!this.isActive?(Be(this.selTarget,this.clsInactive,this.clsActive),Kt(this.$el,"active")):t||Oe(this.selTarget,this.clsInactive)||(Be(this.selTarget,this.clsActive,this.clsInactive),Kt(this.$el,"inactive"))}}},connected:function(){this.placeholder=Ce("+ .uk-sticky-placeholder",this.$el)||Ce('<div class="uk-s...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Active */
        public static final String LABELS_scheduledjob_active = "{labels.scheduledjob_active}";
    
        /** The key of the message: Inactive */
        public static final String LABELS_scheduledjob_nojob = "{labels.scheduledjob_nojob}";
    
        /** The key of the message: Start now */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
Back to top