Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 241 for inactive (0.34 sec)

  1. src/cmd/vendor/rsc.io/markdown/inline.go

    each node contains
    
     - type of delimiter [ ![ _ *
     - number of delimiters
     - active or not
     - potential opener, potential closer, or obth
    
    when a ] is hit, call look for link or image
    when end is hit, call process emphasis
    
    look for link or image:
    
    	find topmost [ or ![
    	if none, emit literal ]
    	if its inactive, remove and emit literal ]
    	parse ahead to look for rest of link; if none, remove and emit literal ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. src/internal/trace/testtrace/validation.go

    				} else {
    					e.Errorf("stopping proc %d not bound to any active context", id)
    				}
    			}
    		}
    	case trace.EventRangeBegin, trace.EventRangeActive, trace.EventRangeEnd:
    		// Validate ranges.
    		r := ev.Range()
    		switch ev.Kind() {
    		case trace.EventRangeBegin:
    			if v.hasRange(r.Scope, r.Name) {
    				e.Errorf("already active range %q on %v begun again", r.Name, r.Scope)
    			}
    			v.addRange(r.Scope, r.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    			id:         sandbox.Id,
    			createTime: time.Unix(0, sandbox.CreatedAt),
    		}
    
    		// Set ready sandboxes and sandboxes that still have containers to be active.
    		if sandbox.State == runtimeapi.PodSandboxState_SANDBOX_READY || sandboxIDs.Has(sandbox.Id) {
    			sandboxInfo.active = true
    		}
    
    		sandboxesByPod[podUID] = append(sandboxesByPod[podUID], sandboxInfo)
    	}
    
    	for podUID, sandboxes := range sandboxesByPod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/dra/plugin/noderesources.go

    	c.mutex.Lock()
    	defer c.mutex.Unlock()
    
    	if active := c.activePlugins[driverName]; active != nil {
    		active.cancel(errors.New("plugin has re-registered"))
    	}
    	active := &activePlugin{}
    	cancelCtx, cancel := context.WithCancelCause(c.ctx)
    	active.cancel = cancel
    	c.activePlugins[driverName] = active
    	c.queue.Add(driverName)
    
    	c.wg.Add(1)
    	go func() {
    		defer c.wg.Done()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. pkg/kubelet/pleg/generic.go

    func (g *GenericPLEG) updateCache(ctx context.Context, pod *kubecontainer.Pod, pid types.UID) (error, bool) {
    	if pod == nil {
    		// The pod is missing in the current relist. This means that
    		// the pod has no visible (active or inactive) containers.
    		klog.V(4).InfoS("PLEG: Delete status for pod", "podUID", string(pid))
    		g.cache.Delete(pid)
    		return nil, true
    	}
    
    	g.podCacheMutex.Lock()
    	defer g.podCacheMutex.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/manager.go

    	server plugin.Server
    
    	// activePods is a method for listing active pods on the node
    	// so the amount of pluginResources requested by existing pods
    	// could be counted when updating allocated devices
    	activePods ActivePodsFunc
    
    	// sourcesReady provides the readiness of kubelet configuration sources such as apiserver update readiness.
    	// We use it to determine when we can purge inactive pods from checkpointed state.
    	sourcesReady config.SourcesReady
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  7. src/runtime/time.go

    	}
    	t.unlock()
    	ts.unlock()
    	releasem(mp)
    	if wake {
    		wakeNetPoller(when)
    	}
    }
    
    // reset resets the time when a timer should fire.
    // If used for an inactive timer, the timer will become active.
    // Reports whether the timer was active and was stopped.
    func (t *timer) reset(when, period int64) bool {
    	return t.modify(when, period, nil, nil, 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. pkg/controller/deployment/deployment_controller.go

    	podMap := make(map[types.UID][]*v1.Pod, len(rsList))
    	for _, rs := range rsList {
    		podMap[rs.UID] = []*v1.Pod{}
    	}
    	for _, pod := range pods {
    		// Do not ignore inactive Pods because Recreate Deployments need to verify that no
    		// Pods from older versions are running before spinning up new Pods.
    		controllerRef := metav1.GetControllerOf(pod)
    		if controllerRef == nil {
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. 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)
  10. cmd/bucket-lifecycle.go

    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/minio/internal/s3select"
    	xnet "github.com/minio/pkg/v3/net"
    	"github.com/zeebo/xxh3"
    )
    
    const (
    	// Disabled means the lifecycle rule is inactive
    	Disabled = "Disabled"
    	// TransitionStatus status of transition
    	TransitionStatus = "transition-status"
    	// TransitionedObjectName name of transitioned object
    	TransitionedObjectName = "transitioned-object"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top