Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 128 for Statuses (0.28 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper_test.go

    		{Kind: "ReplicationController", Plural: "replicationcontrollers", Singular: "replicationcontroller"},
    		{Kind: "ImageRepository", Plural: "imagerepositories", Singular: "imagerepository"},
    		{Kind: "Status", Plural: "statuses", Singular: "status"},
    
    		{Kind: "lowercase", Plural: "lowercases", Singular: "lowercase"},
    		// TODO this test is broken.  This updates to reflect actual behavior.  Kinds are expected to be singular
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 01 08:38:57 UTC 2020
    - 28.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    type ResourceScope string
    
    const (
    	ClusterScoped   ResourceScope = "Cluster"
    	NamespaceScoped ResourceScope = "Namespaced"
    )
    
    type ConditionStatus string
    
    // These are valid condition statuses. "ConditionTrue" means a resource is in the condition.
    // "ConditionFalse" means a resource is not in the condition. "ConditionUnknown" means kubernetes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/types.go

    	Message string
    }
    
    // ConditionStatus is the status of the condition.
    type ConditionStatus string
    
    // These are valid condition statuses. "ConditionTrue" means a resource is in the condition.
    // "ConditionFalse" means a resource is not in the condition. "ConditionUnknown" means kubernetes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/preemption/preemption.go

    		}
    	}
    	return lowerPriorityPods
    }
    
    // DryRunPreemption simulates Preemption logic on <potentialNodes> in parallel,
    // returns preemption candidates and a map indicating filtered nodes statuses.
    // The number of candidates depends on the constraints defined in the plugin's args. In the returned list of
    // candidates, ones that do not violate PDB are preferred over ones that do.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  5. pkg/apis/autoscaling/types.go

    	Conditions []HorizontalPodAutoscalerCondition
    }
    
    // ConditionStatus indicates the status of a condition (true, false, or unknown).
    type ConditionStatus string
    
    // These are valid condition statuses. "ConditionTrue" means a resource is in the condition;
    // "ConditionFalse" means a resource is not in the condition; "ConditionUnknown" means kubernetes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    						klog.ErrorS(err, "getPodContainerStatuses for pod failed", "pod", klog.KObj(pod))
    					}
    					return nil, err
    				}
    			} else {
    				// Get the statuses of all containers visible to the pod and
    				// timestamp from sandboxStatus.
    				timestamp = time.Unix(resp.Timestamp, 0)
    				for _, cs := range resp.ContainersStatuses {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster.go

    				// DRAINING/UNHEALTHY will not be used normally for new requests. They will be used if cookie/header
    				// selects them.
    				defaultCluster.cluster.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 Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    // ConditionStatus is the status of the condition.
    type ConditionStatus string
    
    // These are valid condition statuses. "ConditionTrue" means a resource is in the condition.
    // "ConditionFalse" means a resource is not in the condition. "ConditionUnknown" means kubernetes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/unicode/bidi/core.go

    		return 0
    	case L:
    		return 0
    	default: // AL, R
    		return 1
    	}
    }
    
    const maxDepth = 125
    
    // This stack will store the embedding levels and override and isolated
    // statuses
    type directionalStatusStack struct {
    	stackCounter        int
    	embeddingLevelStack [maxDepth + 1]level
    	overrideStatusStack [maxDepth + 1]Class
    	isolateStatusStack  [maxDepth + 1]bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    // ConditionStatus is the status of the condition.
    type ConditionStatus string
    
    // These are valid condition statuses. "ConditionTrue" means a resource is in the condition.
    // "ConditionFalse" means a resource is not in the condition. "ConditionUnknown" means kubernetes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
Back to top