Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      //    the specified VolumeAttributesClass not existing.
      //  - InProgress
      //    InProgress indicates that the volume is being modified.
      //  - Infeasible
      //   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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/nowb.go

    			// (the outermost stack element) was found, by a static
    			// reachability analysis over the fully lowered optimized code,
    			// to call a function (fn) that involves a write barrier.
    			//
    			// Even if the call path is infeasable,
    			// you will need to reorganize the code to avoid it.
    			base.ErrorfAt(fn.WBPos, 0, "write barrier prohibited by caller; %v%s", fn.Nname, err.String())
    			continue
    		}
    
    		// Enqueue fn's calls.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top