Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GetStatus (0.09 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		if err != nil {
    			// Merely log this here; GetPodStatus will actually report the error out.
    			klog.V(4).InfoS("ContainerStatus return error", "containerID", c.Id, "err", err)
    			return nil, err
    		}
    		status := resp.GetStatus()
    		if status == nil {
    			return nil, remote.ErrContainerStatusNil
    		}
    		cStatus := m.convertToKubeContainerStatus(status)
    		statuses = append(statuses, cStatus)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                }
    
                DistributionManagement distMgmt = m.getDistributionManagement();
                if (distMgmt != null) {
                    if (distMgmt.getStatus() != null) {
                        addViolation(
                                problems,
                                Severity.ERROR,
                                Version.V20,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  3. pkg/workloadapi/workload.pb.go

    		return x.Services
    	}
    	return nil
    }
    
    func (x *Workload) GetAuthorizationPolicies() []string {
    	if x != nil {
    		return x.AuthorizationPolicies
    	}
    	return nil
    }
    
    func (x *Workload) GetStatus() WorkloadStatus {
    	if x != nil {
    		return x.Status
    	}
    	return WorkloadStatus_HEALTHY
    }
    
    func (x *Workload) GetClusterId() string {
    	if x != nil {
    		return x.ClusterId
    	}
    	return ""
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
Back to top