Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for infeasible (0.23 sec)

  1. 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)
  2. cmd/object-api-utils.go

    			compressedOffset += part.Size
    		} else {
    			firstPartIdx = i
    			skipLength = cumulativeActualSize - part.ActualSize
    			break
    		}
    	}
    	partSkip = offset - skipLength
    
    	// Load index and skip more if feasible.
    	if partSkip > 0 && len(oi.Parts) > firstPartIdx && len(oi.Parts[firstPartIdx].Index) > 0 {
    		_, isEncrypted := crypto.IsEncrypted(oi.UserDefined)
    		if isEncrypted {
    			dec, err := decrypt(oi.Parts[firstPartIdx].Index)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    // * 1 IP address. This is managed, with IP explicit
    // * Nothing. This is managed, with IP auto assigned
    //
    // Not supported:
    // Multiple hostname/IP - It is feasible but preference is to create multiple Gateways. This would also break the 1:1 mapping of GW:Service
    // Mixed hostname and IP - doesn't make sense; user should define the IP in service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	memRequests := resource.GetResourceRequest(podCopy, v1.ResourceMemory)
    	if cpuRequests > cpuAvailable || memRequests > memAvailable {
    		klog.V(3).InfoS("Resize is not feasible as request exceeds allocatable node resources", "pod", podCopy.Name)
    		return false, podCopy, v1.PodResizeStatusInfeasible
    	}
    
    	// Treat the existing pod needing resize as a new pod with desired resources seeking admit.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top