Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for PodSchedulingContext (0.29 sec)

  1. staging/src/k8s.io/api/resource/v1alpha2/register.go

    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&ResourceClass{},
    		&ResourceClassList{},
    		&ResourceClaim{},
    		&ResourceClaimList{},
    		&ResourceClaimTemplate{},
    		&ResourceClaimTemplateList{},
    		&PodSchedulingContext{},
    		&PodSchedulingContextList{},
    		&ResourceSlice{},
    		&ResourceSliceList{},
    		&ResourceClaimParameters{},
    		&ResourceClaimParametersList{},
    		&ResourceClassParameters{},
    		&ResourceClassParametersList{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/resource/v1alpha2/zz_generated.deepcopy.go

    func (in *PodSchedulingContext) DeepCopyInto(out *PodSchedulingContext) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	in.Status.DeepCopyInto(&out.Status)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodSchedulingContext.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

      // +optional
      optional bool shareable = 3;
    }
    
    // PodSchedulingContext objects hold information that is needed to schedule
    // a Pod with ResourceClaims that use "WaitForFirstConsumer" allocation
    // mode.
    //
    // This is an alpha type and requires enabling the DynamicResourceAllocation
    // feature gate.
    message PodSchedulingContext {
      // Standard object metadata
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. pkg/apis/resource/register.go

    	}
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&ResourceClass{},
    		&ResourceClassList{},
    		&ResourceClaim{},
    		&ResourceClaimList{},
    		&ResourceClaimTemplate{},
    		&ResourceClaimTemplateList{},
    		&PodSchedulingContext{},
    		&PodSchedulingContextList{},
    		&ResourceSlice{},
    		&ResourceSliceList{},
    		&ResourceClaimParameters{},
    		&ResourceClaimParametersList{},
    		&ResourceClassParameters{},
    		&ResourceClassParametersList{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. pkg/apis/resource/validation/validation.go

    		allErrs = append(allErrs, field.TooLongMaxLength(fldPath, len(consumers), maxSize))
    	}
    	return allErrs
    }
    
    // ValidatePodSchedulingContext validates a PodSchedulingContext.
    func ValidatePodSchedulingContexts(schedulingCtx *resource.PodSchedulingContext) field.ErrorList {
    	allErrs := corevalidation.ValidateObjectMeta(&schedulingCtx.ObjectMeta, true, corevalidation.ValidatePodName, field.NewPath("metadata"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  6. pkg/apis/resource/zz_generated.deepcopy.go

    func (in *PodSchedulingContext) DeepCopyInto(out *PodSchedulingContext) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	in.Status.DeepCopyInto(&out.Status)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodSchedulingContext.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  7. pkg/scheduler/testing/wrappers.go

    }
    
    // PodSchedulingWrapper wraps a PodSchedulingContext inside.
    type PodSchedulingWrapper struct {
    	resourcev1alpha2.PodSchedulingContext
    }
    
    // MakePodSchedulingContexts creates a PodSchedulingContext wrapper.
    func MakePodSchedulingContexts() *PodSchedulingWrapper {
    	return &PodSchedulingWrapper{resourcev1alpha2.PodSchedulingContext{}}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  8. pkg/apis/resource/types.go

    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // PodSchedulingContext objects hold information that is needed to schedule
    // a Pod with ResourceClaims that use "WaitForFirstConsumer" allocation
    // mode.
    //
    // This is an alpha type and requires enabling the DynamicResourceAllocation
    // feature gate.
    type PodSchedulingContext struct {
    	metav1.TypeMeta
    	// Standard object metadata
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. api/discovery/aggregated_v2beta1.json

                    "kind": "PodSchedulingContext",
                    "version": ""
                  },
                  "scope": "Namespaced",
                  "singularResource": "podschedulingcontext",
                  "subresources": [
                    {
                      "responseKind": {
                        "group": "",
                        "kind": "PodSchedulingContext",
                        "version": ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/resource/v1alpha2/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.26
    
    // PodSchedulingContext objects hold information that is needed to schedule
    // a Pod with ResourceClaims that use "WaitForFirstConsumer" allocation
    // mode.
    //
    // This is an alpha type and requires enabling the DynamicResourceAllocation
    // feature gate.
    type PodSchedulingContext struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object metadata
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
Back to top