Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 213 for resource_claim (0.7 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/resource.k8s.io.v1alpha2.PodSchedulingContext.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/resource.k8s.io.v1alpha2.PodSchedulingContext.yaml

        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      potentialNodes:
      - potentialNodesValue
      selectedNode: selectedNodeValue
    status:
      resourceClaims:
      - name: nameValue
        unsuitableNodes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/resource/v1alpha2/generated.pb.go

    func (m *ResourceClaim) Reset()      { *m = ResourceClaim{} }
    func (*ResourceClaim) ProtoMessage() {}
    func (*ResourceClaim) Descriptor() ([]byte, []int) {
    	return fileDescriptor_4312f5b44a31ec02, []int{17}
    }
    func (m *ResourceClaim) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *ResourceClaim) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 261.9K bytes
    - Viewed (0)
  4. pkg/apis/resource/register.go

    	if err := scheme.AddIgnoredConversionType(&metav1.TypeMeta{}, &metav1.TypeMeta{}); err != nil {
    		return err
    	}
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&ResourceClass{},
    		&ResourceClassList{},
    		&ResourceClaim{},
    		&ResourceClaimList{},
    		&ResourceClaimTemplate{},
    		&ResourceClaimTemplateList{},
    		&PodSchedulingContext{},
    		&PodSchedulingContextList{},
    		&ResourceSlice{},
    		&ResourceSliceList{},
    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. staging/src/k8s.io/api/resource/v1alpha2/register.go

    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&ResourceClass{},
    		&ResourceClassList{},
    		&ResourceClaim{},
    		&ResourceClaimList{},
    		&ResourceClaimTemplate{},
    		&ResourceClaimTemplateList{},
    		&PodSchedulingContext{},
    		&PodSchedulingContextList{},
    		&ResourceSlice{},
    		&ResourceSliceList{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podspec.go

    	SchedulingGates               []PodSchedulingGateApplyConfiguration        `json:"schedulingGates,omitempty"`
    	ResourceClaims                []PodResourceClaimApplyConfiguration         `json:"resourceClaims,omitempty"`
    }
    
    // PodSpecApplyConfiguration constructs an declarative configuration of the PodSpec type for use with
    // apply.
    func PodSpec() *PodSpecApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:22:42 UTC 2022
    - 23.9K bytes
    - Viewed (0)
  7. pkg/registry/resource/podschedulingcontext/storage/storage_test.go

    	if err != nil {
    		t.Fatalf("Unexpected error: %v", err)
    	}
    
    	schedulingCtx := schedulingStart.DeepCopy()
    	schedulingCtx.Status.ResourceClaims = append(schedulingCtx.Status.ResourceClaims,
    		resource.ResourceClaimSchedulingStatus{
    			Name: "my-claim",
    		},
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    			expect: authorizer.DecisionAllow,
    		},
    		{
    			name:   "allowed resource claim with template",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  9. pkg/registry/resource/resourceclaimparameters/strategy.go

    func GetAttrs(obj runtime.Object) (labels.Set, fields.Set, error) {
    	parameters, ok := obj.(*resource.ResourceClaimParameters)
    	if !ok {
    		return nil, nil, errors.New("not a resourceclaim")
    	}
    	return labels.Set(parameters.Labels), toSelectableFields(parameters), nil
    }
    
    // toSelectableFields returns a field set that represents the object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/dra/claiminfo.go

    func newClaimInfoFromClaim(claim *resourcev1alpha2.ResourceClaim) *ClaimInfo {
    	// Grab the allocation.resourceHandles. If there are no
    	// allocation.resourceHandles, create a single resourceHandle with no
    	// content. This will trigger processing of this claim by a single
    	// kubelet plugin whose name matches resourceClaim.Status.DriverName.
    	resourceHandles := claim.Status.Allocation.ResourceHandles
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top