Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 63 for infeasible (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/kubelet/kubelet_test.go

    			expectedResize:      v1.PodResizeStatusDeferred,
    		},
    		{
    			name:                "Request memory increase beyond node capacity - expect Infeasible",
    			pod:                 testPod2,
    			newRequests:         v1.ResourceList{v1.ResourceCPU: cpu1000m, v1.ResourceMemory: mem4500M},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	PersistentVolumeClaimModifyVolumeInProgress PersistentVolumeClaimModifyVolumeStatus = "InProgress"
    	// Infeasible indicates that the request has been rejected as invalid by the CSI driver. To
    	// resolve the error, a valid VolumeAttributesClass needs to be specified
    	PersistentVolumeClaimModifyVolumeInfeasible PersistentVolumeClaimModifyVolumeStatus = "Infeasible"
    )
    
    // ModifyVolumeStatus represents the status object of ControllerModifyVolume operation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	PersistentVolumeClaimModifyVolumeInProgress PersistentVolumeClaimModifyVolumeStatus = "InProgress"
    	// Infeasible indicates that the request has been rejected as invalid by the CSI driver. To
    	// resolve the error, a valid VolumeAttributesClass needs to be specified
    	PersistentVolumeClaimModifyVolumeInfeasible PersistentVolumeClaimModifyVolumeStatus = "Infeasible"
    )
    
    // ModifyVolumeStatus represents the status object of ControllerModifyVolume operation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

                "type": "object"
              }
            },
            "required": [
              "driverName"
            ],
            "type": "object",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

      Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as\n   the specified VolumeAttributesClass not existing.\n - InProgress\n   InProgress indicates that the volume is being modified.\n - Infeasible\n  Infeasible indicates that the request has been rejected as invalid by the CSI driver. To\n\t  resolve the error, a valid VolumeAttributesClass needs to be specified.\nNote: New statuses can be added in the future. Consumers should check for unknown...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. 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)
  10. pkg/kube/krt/recomputetrigger.go

    // Typically, all state is registered and fetched through krt.Fetch. Through this mechanism, any changes are automatically
    // propagated through the system to dependencies.
    // In some cases, it may not be feasible to get all state into krt; hopefully, this is a temporary state.
    // RecomputeTrigger works around this by allowing an explicit call to recompute a collection; the caller must be sure to call Trigger()
    // any time the state changes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 05:51:56 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top