Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 114 for Statuses (0.16 sec)

  1. pkg/kubelet/kubelet_test.go

    		cStatus := &kubecontainer.Status{
    			ID:   kubecontainer.BuildContainerID("test", id),
    			Name: containerName,
    		}
    		// Rearrange container statuses
    		if i%2 == 0 {
    			cStatuses = append(cStatuses, cStatus)
    		} else {
    			cStatuses = append([]*kubecontainer.Status{cStatus}, cStatuses...)
    		}
    		specContainerList = append(specContainerList, v1.Container{Name: containerName})
    	}
    	pod := podWithUIDNameNs("uid1", "foo", "test")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    				Message: reason.Message,
    			},
    		}
    		statuses[container.Name] = status
    	}
    
    	// Sort the container statuses since clients of this interface expect the list
    	// of containers in a pod has a deterministic order.
    	if isInitContainer {
    		return kubetypes.SortStatusesOfInitContainers(pod, statuses)
    	}
    	containerStatuses := make([]v1.ContainerStatus, 0, len(statuses))
    	for _, status := range statuses {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager.go

    	go wait.Forever(func() {
    		for {
    			select {
    			case <-m.podStatusChannel:
    				klog.V(4).InfoS("Syncing updated statuses")
    				m.syncBatch(false)
    			case <-syncTicker:
    				klog.V(4).InfoS("Syncing all statuses")
    				m.syncBatch(true)
    			}
    		}
    	}, 0)
    }
    
    // GetContainerResourceAllocation returns the last checkpointed AllocatedResources values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  4. src/runtime/tracestatus.go

    //
    // They correspond directly to the various goroutine
    // statuses.
    type traceGoStatus uint8
    
    const (
    	traceGoBad traceGoStatus = iota
    	traceGoRunnable
    	traceGoRunning
    	traceGoSyscall
    	traceGoWaiting
    )
    
    // traceProcStatus is the status of a P.
    //
    // They mostly correspond to the various P statuses.
    type traceProcStatus uint8
    
    const (
    	traceProcBad traceProcStatus = iota
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. pkg/kubelet/container/cache.go

    	lock sync.RWMutex
    	// Map that stores the pod statuses.
    	pods map[types.UID]*data
    	// A global timestamp represents how fresh the cached data is. All
    	// cache content is at the least newer than this timestamp. Note that the
    	// timestamp is nil after initialization, and will only become non-nil when
    	// it is ready to serve the cached statuses.
    	timestamp *time.Time
    	// Map that stores the subscriber records.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 07:37:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReportStatusIntegrationSpec.groovy

            then:
            out =~ """^$DaemonMessages.NO_DAEMONS_RUNNING
    
    $ReportDaemonStatusClient.STATUS_FOOTER.*""".toString()
        }
    
        def "reports idle, busy and stopped statuses of daemons"() {
            given:
            server.start()
            buildFile << """
    task block {
        doLast {
            ${server.callFromBuild("block")}
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. pkg/kubelet/container/helpers.go

    func HasAnyRegularContainerStarted(spec *v1.PodSpec, statuses []v1.ContainerStatus) bool {
    	if len(statuses) == 0 {
    		return false
    	}
    
    	containerNames := make(map[string]struct{})
    	for _, c := range spec.Containers {
    		containerNames[c.Name] = struct{}{}
    	}
    
    	for _, status := range statuses {
    		if _, ok := containerNames[status.Name]; !ok {
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. pkg/controller/certificates/cleaner/cleaner.go

    )
    
    const (
    	// The interval to list all CSRs and check each one against the criteria to
    	// automatically clean it up.
    	pollingInterval = 1 * time.Hour
    	// The time periods after which these different CSR statuses should be
    	// cleaned up.
    	approvedExpiration = 1 * time.Hour
    	deniedExpiration   = 1 * time.Hour
    	pendingExpiration  = 24 * time.Hour
    )
    
    // CSRCleanerController is a controller that garbage collects old certificate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. pkg/scheduler/schedule_one.go

    		}
    
    		for failedNodeName, failedMsg := range failedAndUnresolvableMap {
    			var aggregatedReasons []string
    			if _, found := statuses[failedNodeName]; found {
    				aggregatedReasons = statuses[failedNodeName].Reasons()
    			}
    			aggregatedReasons = append(aggregatedReasons, failedMsg)
    			statuses[failedNodeName] = framework.NewStatus(framework.UnschedulableAndUnresolvable, aggregatedReasons...)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  10. cmd/bucket-replication-utils.go

    	ResetStatusesMap           map[string]string                 // map of ARN-> stringified reset id and timestamp for all the targets
    }
    
    // Equal returns true if replication state is identical for version purge statuses and (replica)tion statuses.
    func (rs *ReplicationState) Equal(o ReplicationState) bool {
    	return rs.ReplicaStatus == o.ReplicaStatus &&
    		rs.ReplicationStatusInternal == o.ReplicationStatusInternal &&
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top