Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 78 for Statuses (0.13 sec)

  1. istioctl/pkg/internaldebug/internal-debug.go

    	Writer                 io.Writer
    	Namespace              string
    	InternalDebugAllIstiod bool
    }
    
    func (s *DebugWriter) PrintAll(drs map[string]*discovery.DiscoveryResponse) error {
    	// Gather the statuses before printing so they may be sorted
    	mappedResp := map[string]string{}
    	for id, dr := range drs {
    		for _, resource := range dr.Resources {
    			if s.InternalDebugAllIstiod {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/node/graph_populator.go

    			resourceClaimStatusesEqual(oldPod.Status.ResourceClaimStatuses, pod.Status.ResourceClaimStatuses) {
    			// Node and uid are unchanged, all object references in the pod spec are immutable respectively unmodified (claim statuses).
    			klog.V(5).Infof("updatePod %s/%s, node unchanged", pod.Namespace, pod.Name)
    			return
    		}
    	}
    
    	klog.V(4).Infof("updatePod %s/%s for node %s", pod.Namespace, pod.Name, pod.Spec.NodeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. pkg/volume/util/resize_util_test.go

    				return MarkForFSResize(pvc, c)
    			},
    		},
    		{
    			name: "mark fs resize, when other resource statuses are present",
    			pvc:  basePVC.withResourceStatus(v1.ResourceCPU, v1.PersistentVolumeClaimControllerResizeFailed).get(),
    			expectedPVC: basePVC.withResourceStatus(v1.ResourceCPU, v1.PersistentVolumeClaimControllerResizeFailed).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/conversion.go

    	"pod.beta.kubernetes.io/init-containers":          true,
    	"pod.alpha.kubernetes.io/init-containers":         true,
    	"pod.beta.kubernetes.io/init-container-statuses":  true,
    	"pod.alpha.kubernetes.io/init-container-statuses": true,
    }
    
    // dropInitContainerAnnotations returns a copy of the annotations with init container annotations removed,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:30:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/interface.go

    type NodeScoreList []NodeScore
    
    // NodeScore is a struct with node name and score.
    type NodeScore struct {
    	Name  string
    	Score int64
    }
    
    // NodeToStatusMap contains the statuses of the Nodes where the incoming Pod was not schedulable.
    // A PostFilter plugin that uses this map should interpret absent Nodes as UnschedulableAndUnresolvable.
    type NodeToStatusMap map[string]*Status
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  6. pkg/controller/resourceclaim/controller.go

    	}
    
    	if newPodClaims != nil {
    		// Patch the pod status with the new information about
    		// generated ResourceClaims.
    		statuses := make([]*corev1apply.PodResourceClaimStatusApplyConfiguration, 0, len(newPodClaims))
    		for podClaimName, resourceClaimName := range newPodClaims {
    			statuses = append(statuses, corev1apply.PodResourceClaimStatus().WithName(podClaimName).WithResourceClaimName(resourceClaimName))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/cds.go

    		if b.svc.Attributes.Labels[features.PersistentSessionLabel] != "" {
    			// see core/v1alpha3/cluster.go
    			defaultCluster.CommonLbConfig.OverrideHostStatus = &core.HealthStatusSet{
    				Statuses: []core.HealthStatus{
    					core.HealthStatus_HEALTHY,
    					core.HealthStatus_DRAINING, core.HealthStatus_UNKNOWN, core.HealthStatus_DEGRADED,
    				},
    			}
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. pkg/kubelet/container/runtime.go

    	ContainerStatuses []*Status
    	// Status of the pod sandbox.
    	// Only for kuberuntime now, other runtime may keep it nil.
    	SandboxStatuses []*runtimeapi.PodSandboxStatus
    	// Timestamp at which container and pod statuses were recorded
    	TimeStamp time.Time
    }
    
    // ContainerResources represents the Resources allocated to the running container.
    type ContainerResources struct {
    	// CPU capacity reserved for the container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

        // We will run every Join even if there are bad statuses in case the user
        // wants to recover and continue running ops on the parallel device (which
        // would otherwise deadlock).
        if (TF_GetCode(status) != TF_OK &&
            (first_bad_status == nullptr
             // Prefer propagating non-cancellation related statuses to avoid
             // shadowing the original failure.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  10. pkg/volume/util/util.go

    }
    
    // notRunning returns true if every status is terminated or waiting, or the status list
    // is empty.
    func notRunning(statuses []v1.ContainerStatus) bool {
    	for _, status := range statuses {
    		if status.State.Terminated == nil && status.State.Waiting == nil {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
Back to top