Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for inactive (0.36 sec)

  1. 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)
  2. 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)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_scheduledjob_running = "{labels.scheduledjob_running}";
    
        /** 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)
  4. guava/src/com/google/common/cache/LocalCache.java

        /**
         * Returns true if this reference contains an active value, meaning one that is still considered
         * present in the cache. Active values consist of live values, which are returned by cache
         * lookups, and dead values, which have been evicted but awaiting removal. Non-active values
         * consist strictly of loading values, though during refresh a value may be both active and
         * loading.
         */
        boolean isActive();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/LocalCache.java

        /**
         * Returns true if this reference contains an active value, meaning one that is still considered
         * present in the cache. Active values consist of live values, which are returned by cache
         * lookups, and dead values, which have been evicted but awaiting removal. Non-active values
         * consist strictly of loading values, though during refresh a value may be both active and
         * loading.
         */
        boolean isActive();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/generated.pb.go

    			postIndex := iNdEx + msglen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.Active = append(m.Active, v11.ObjectReference{})
    			if err := m.Active[len(m.Active)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		case 4:
    			if wireType != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 133K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_test.go

    		kubelet.recorder,
    	)
    	kubelet.setNodeStatusFuncs = kubelet.defaultNodeStatusFuncs()
    
    	// enable active deadline handler
    	activeDeadlineHandler, err := newActiveDeadlineHandler(kubelet.statusManager, kubelet.recorder, kubelet.clock)
    	require.NoError(t, err, "Can't initialize active deadline handler")
    
    	kubelet.AddPodSyncLoopHandler(activeDeadlineHandler)
    	kubelet.AddPodSyncHandler(activeDeadlineHandler)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  8. go.sum

    github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=
    github.com/josharian/native v1.0.0/go.mod h1:7X/raswPFr05uY3HiLlYeyQntB6OO7E/d2Cu7qoaN2w=
    github.com/josharian/native v1.1.0 h1:uuaP0hAbW7Y4l0ZRQ6C9zfb7Mg1mbFKry/xzDAfmtLA=
    github.com/josharian/native v1.1.0/go.mod h1:7X/raswPFr05uY3HiLlYeyQntB6OO7E/d2Cu7qoaN2w=
    github.com/jpillora/backoff v1.0.0 h1:uvFg412JmmHBHw7iwprIxkPMI+sGQ4kzOWsMeHnm2EA=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  9. 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)
  10. pkg/apis/core/zz_generated.deepcopy.go

    	*out = *in
    	if in.Assigned != nil {
    		in, out := &in.Assigned, &out.Assigned
    		*out = new(NodeConfigSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Active != nil {
    		in, out := &in.Active, &out.Active
    		*out = new(NodeConfigSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.LastKnownGood != nil {
    		in, out := &in.LastKnownGood, &out.LastKnownGood
    		*out = new(NodeConfigSource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
Back to top