Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for PodSchedulingContext (0.33 sec)

  1. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      //
      // +listType=atomic
      repeated string strings = 1;
    }
    
    // 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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. pkg/registry/resource/rest/storage_resource.go

    	serverstorage "k8s.io/apiserver/pkg/server/storage"
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	"k8s.io/kubernetes/pkg/apis/resource"
    	podschedulingcontextsstore "k8s.io/kubernetes/pkg/registry/resource/podschedulingcontext/storage"
    	resourceclaimstore "k8s.io/kubernetes/pkg/registry/resource/resourceclaim/storage"
    	resourceclaimparametersstore "k8s.io/kubernetes/pkg/registry/resource/resourceclaimparameters/storage"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. api/discovery/aggregated_v2.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: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

              }
            },
            "required": [
              "strings"
            ],
            "type": "object"
          },
          "io.k8s.api.resource.v1alpha2.PodSchedulingContext": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  5. pkg/scheduler/eventhandlers.go

    			}
    			handlers = append(handlers, handlerRegistration)
    		case framework.PodSchedulingContext:
    			if utilfeature.DefaultFeatureGate.Enabled(features.DynamicResourceAllocation) {
    				if handlerRegistration, err = informerFactory.Resource().V1alpha2().PodSchedulingContexts().Informer().AddEventHandler(
    					buildEvtResHandler(at, framework.PodSchedulingContext, "PodSchedulingContext"),
    				); err != nil {
    					return err
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    }
    
    func (PodSchedulingContext) SwaggerDoc() map[string]string {
    	return map_PodSchedulingContext
    }
    
    var map_PodSchedulingContextList = map[string]string{
    	"":         "PodSchedulingContextList is a collection of Pod scheduling objects.",
    	"metadata": "Standard list metadata",
    	"items":    "Items is the list of PodSchedulingContext objects.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/resource/v1alpha2/generated.pb.go

    func (m *PodSchedulingContext) Reset()      { *m = PodSchedulingContext{} }
    func (*PodSchedulingContext) ProtoMessage() {}
    func (*PodSchedulingContext) Descriptor() ([]byte, []int) {
    	return fileDescriptor_4312f5b44a31ec02, []int{13}
    }
    func (m *PodSchedulingContext) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 261.9K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/types.go

    	CSIDriver               GVK = "storage.k8s.io/CSIDriver"
    	CSIStorageCapacity      GVK = "storage.k8s.io/CSIStorageCapacity"
    	StorageClass            GVK = "storage.k8s.io/StorageClass"
    	PodSchedulingContext    GVK = "PodSchedulingContext"
    	ResourceClaim           GVK = "ResourceClaim"
    	ResourceClass           GVK = "ResourceClass"
    	ResourceClaimParameters GVK = "ResourceClaimParameters"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  9. pkg/scheduler/scheduler_test.go

    				},
    				{Resource: framework.PersistentVolumeClaim, ActionType: framework.All}: {
    					{PluginName: filterWithoutEnqueueExtensions, QueueingHintFn: defaultQueueingHintFn},
    				},
    				{Resource: framework.PodSchedulingContext, ActionType: framework.All}: {
    					{PluginName: filterWithoutEnqueueExtensions, QueueingHintFn: defaultQueueingHintFn},
    				},
    				{Resource: framework.ResourceClaim, ActionType: framework.All}: {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              "type": "boolean"
            }
          },
          "type": "object"
        },
        "io.k8s.api.resource.v1alpha2.PodSchedulingContext": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
Back to top