Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 128 for Statuses (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/server/httplog/httplog.go

    	return rl
    }
    
    // StatusIsNot returns a StacktracePred which will cause stacktraces to be logged
    // for any status *not* in the given list.
    func StatusIsNot(statuses ...int) StacktracePred {
    	statusesNoTrace := map[int]bool{}
    	for _, s := range statuses {
    		statusesNoTrace[s] = true
    	}
    	return func(status int) bool {
    		_, ok := statusesNoTrace[status]
    		return !ok
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 10:10:35 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		}
    		status := resp.GetStatus()
    		if status == nil {
    			return nil, remote.ErrContainerStatusNil
    		}
    		cStatus := m.convertToKubeContainerStatus(status)
    		statuses = append(statuses, cStatus)
    	}
    
    	sort.Sort(containerStatusByCreated(statuses))
    	return statuses, nil
    }
    
    func toKubeContainerStatus(status *runtimeapi.ContainerStatus, runtimeName string) *kubecontainer.Status {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  8. pkg/apis/core/fuzzer/fuzzer.go

    		func(s *core.PodStatus, c fuzz.Continue) {
    			c.Fuzz(&s)
    			s.HostIPs = []core.HostIP{{IP: s.HostIP}}
    		},
    		func(j *core.PodPhase, c fuzz.Continue) {
    			statuses := []core.PodPhase{core.PodPending, core.PodRunning, core.PodFailed, core.PodUnknown}
    			*j = statuses[c.Rand.Intn(len(statuses))]
    		},
    		func(j *core.Binding, c fuzz.Continue) {
    			c.Fuzz(&j.ObjectMeta)
    			j.Target.Name = c.RandString()
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. pkg/config/analysis/incluster/controller.go

    					log.Debugf("enqueueing update for %s/%s", r.Namespace, r.Name)
    					c.statusctl.EnqueueStatusUpdateResource(m, r)
    				}
    			}
    			oldmsgs[a] = res.MappedMessages[a]
    		}
    		log.Debugf("finished enqueueing all statuses")
    	}
    	db.Run(chKind, stop, 1*time.Second, features.AnalysisInterval, pushFn)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/statusupdater/node_status_updater.go

    )
    
    // NodeStatusUpdater defines a set of operations for updating the
    // VolumesAttached field in the Node Status.
    type NodeStatusUpdater interface {
    	// Gets a list of node statuses that should be updated from the actual state
    	// of the world and updates them.
    	UpdateNodeStatuses(logger klog.Logger) error
    	// Update any pending status change for the given node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top