Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for Statuses (0.34 sec)

  1. pkg/controller/resourceclaim/controller_test.go

    					actualStatuses = make(map[string][]v1.PodResourceClaimStatus)
    				}
    				actualStatuses[pod.Name] = pod.Status.ResourceClaimStatuses
    			}
    			assert.Equal(t, tc.expectedStatuses, actualStatuses, "pod resource claim statuses")
    
    			scheduling, err := fakeKubeClient.ResourceV1alpha2().PodSchedulingContexts("").List(ctx, metav1.ListOptions{})
    			if err != nil {
    				t.Fatalf("unexpected error while listing claims: %v", err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/cpu_manager.go

    	// activePods is a method for listing active pods on the node
    	// so all the containers can be updated in the reconciliation loop.
    	activePods ActivePodsFunc
    
    	// podStatusProvider provides a method for obtaining pod statuses
    	// and the containerID of their containers
    	podStatusProvider status.PodStatusProvider
    
    	// containerMap provides a mapping from (pod, container) -> containerID
    	// for all containers a pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  3. pkg/scheduler/testing/wrappers.go

    	return wrapper
    }
    
    // ResourceClaims sets that field of the inner object.
    func (wrapper *PodSchedulingWrapper) ResourceClaims(statuses ...resourcev1alpha2.ResourceClaimSchedulingStatus) *PodSchedulingWrapper {
    	wrapper.Status.ResourceClaims = statuses
    	return wrapper
    }
    
    type ResourceSliceWrapper struct {
    	resourcev1alpha2.ResourceSlice
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/v2/conversion_test.go

                  items:
                    type: string
                  type: array
      status:
        description: Status of Foo
        type: object
        properties:
          bars:
            description: List of Bars and their statuses.
            type: array
            items:
              type: object
              properties:
                name:
                  description: Name of Bar.
                  type: string
                available:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 14:34:26 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top