Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for infeasible (0.2 sec)

  1. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    }
    
    func (VolumeAttributesClass) SwaggerDoc() map[string]string {
    	return map_VolumeAttributesClass
    }
    
    var map_VolumeAttributesClassList = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1alpha1/generated.proto

      // The keys cannot be empty, and the maximum number of parameters is 512, with
      // a cumulative max size of 256K. If the CSI driver rejects invalid parameters,
      // the target PersistentVolumeClaim will be set to an "Infeasible" state in the
      // modifyVolumeStatus field.
      map<string, string> parameters = 3;
    }
    
    // VolumeAttributesClassList is a collection of VolumeAttributesClass objects.
    message VolumeAttributesClassList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. pkg/api/v1/resource/helpers_test.go

    				{
    					Resources: v1.ResourceRequirements{
    						Requests: v1.ResourceList{
    							v1.ResourceCPU: resource.MustParse("3"),
    						},
    					},
    				},
    			},
    		},
    		{
    			description: "resized, infeasible",
    			expectedRequests: v1.ResourceList{
    				v1.ResourceCPU: resource.MustParse("2"),
    			},
    			podResizeStatus: v1.PodResizeStatusInfeasible,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:13 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1alpha1/types.go

    	// The keys cannot be empty, and the maximum number of parameters is 512, with
    	// a cumulative max size of 256K. If the CSI driver rejects invalid parameters,
    	// the target PersistentVolumeClaim will be set to an "Infeasible" state in the
    	// modifyVolumeStatus field.
    	Parameters map[string]string `json:"parameters,omitempty" protobuf:"bytes,3,rep,name=parameters"`
    }
    
    // +k8s:prerelease-lifecycle-gen:introduced=1.29
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  5. doc/godebug.md

    For the remaining programs,
    we define a new GODEBUG setting that
    allows individual programs to opt back in to the old behavior.
    A GODEBUG setting may not be added if doing so is infeasible,
    but that should be extremely rare.
    
    GODEBUG settings added for compatibility will be maintained
    for a minimum of two years (four Go releases).
    Some, such as `http2client` and `http2server`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. pkg/apis/storage/types.go

    	// The keys cannot be empty, and the maximum number of parameters is 512, with
    	// a cumulative max size of 256K. If the CSI driver rejects invalid parameters,
    	// the target PersistentVolumeClaim will be set to an "Infeasible" state in the
    	// modifyVolumeStatus field.
    	Parameters map[string]string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/types_test.go

    			expectedNon0CPU:    cpu700m.MilliValue(),
    			expectedNon0Mem:    mem800M.Value(),
    		},
    		{
    			name:               "Pod with infeasible resize",
    			requests:           v1.ResourceList{v1.ResourceCPU: cpu700m, v1.ResourceMemory: mem800M},
    			allocatedResources: v1.ResourceList{v1.ResourceCPU: cpu500m, v1.ResourceMemory: mem500M},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/types.go

    	componentbaseconfig.DebuggingConfiguration
    
    	// PercentageOfNodesToScore is the percentage of all nodes that once found feasible
    	// for running a pod, the scheduler stops its search for more feasible nodes in
    	// the cluster. This helps improve scheduler's performance. Scheduler always tries to find
    	// at least "minFeasibleNodesToFind" feasible nodes no matter what the value of this flag is.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. pkg/scheduler/extender_test.go

    			expectedResult: ScheduleResult{
    				SuggestedHost:  "node1",
    				EvaluatedNodes: 2,
    				FeasibleNodes:  1,
    			},
    			name: "test 10 - no scoring, extender filters configured, multiple feasible nodes are evaluated",
    		},
    		{
    			registerPlugins: []tf.RegisterPluginFunc{
    				tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New),
    				tf.RegisterBindPlugin(defaultbinder.Name, defaultbinder.New),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one.go

    		statusCode = framework.Error
    		return feasibleNodes, err
    	}
    	return feasibleNodes, nil
    }
    
    // numFeasibleNodesToFind returns the number of feasible nodes that once found, the scheduler stops
    // its search for more feasible nodes.
    func (sched *Scheduler) numFeasibleNodesToFind(percentageOfNodesToScore *int32, numAllNodes int32) (numNodes int32) {
    	if numAllNodes < minFeasibleNodesToFind {
    		return numAllNodes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top