Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 8,419 for capped (0.18 sec)

  1. pkg/apis/autoscaling/types.go

    	AbleToScale HorizontalPodAutoscalerConditionType = "AbleToScale"
    	// ScalingLimited indicates that the calculated scale based on metrics would be above or
    	// below the range for the HPA, and has thus been capped.
    	ScalingLimited HorizontalPodAutoscalerConditionType = "ScalingLimited"
    )
    
    // HorizontalPodAutoscalerCondition describes the state of
    // a HorizontalPodAutoscaler at a certain point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v2beta1/types.go

    	AbleToScale HorizontalPodAutoscalerConditionType = "AbleToScale"
    	// ScalingLimited indicates that the calculated scale based on metrics would be above or
    	// below the range for the HPA, and has thus been capped.
    	ScalingLimited HorizontalPodAutoscalerConditionType = "ScalingLimited"
    )
    
    // HorizontalPodAutoscalerCondition describes the state of
    // a HorizontalPodAutoscaler at a certain point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 26.9K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client.go

    		if len(hello.supportedVersions) == 1 {
    			hello.cipherSuites = nil
    		}
    		if hasAESGCMHardwareSupport {
    			hello.cipherSuites = append(hello.cipherSuites, defaultCipherSuitesTLS13...)
    		} else {
    			hello.cipherSuites = append(hello.cipherSuites, defaultCipherSuitesTLS13NoAES...)
    		}
    
    		curveID := config.curvePreferences(maxVersion)[0]
    		keyShareKeys = &keySharePrivateKeys{curveID: curveID}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v1/types.go

    	AbleToScale HorizontalPodAutoscalerConditionType = "AbleToScale"
    	// ScalingLimited indicates that the calculated scale based on metrics would be above or
    	// below the range for the HPA, and has thus been capped.
    	ScalingLimited HorizontalPodAutoscalerConditionType = "ScalingLimited"
    )
    
    // HorizontalPodAutoscalerCondition describes the state of
    // a HorizontalPodAutoscaler at a certain point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v2beta2/types.go

    	AbleToScale HorizontalPodAutoscalerConditionType = "AbleToScale"
    	// ScalingLimited indicates that the calculated scale based on metrics would be above or
    	// below the range for the HPA, and has thus been capped.
    	ScalingLimited HorizontalPodAutoscalerConditionType = "ScalingLimited"
    )
    
    // HorizontalPodAutoscalerCondition describes the state of
    // a HorizontalPodAutoscaler at a certain point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v2/types.go

    	AbleToScale HorizontalPodAutoscalerConditionType = "AbleToScale"
    	// ScalingLimited indicates that the calculated scale based on metrics would be above or
    	// below the range for the HPA, and has thus been capped.
    	ScalingLimited HorizontalPodAutoscalerConditionType = "ScalingLimited"
    )
    
    // HorizontalPodAutoscalerCondition describes the state of
    // a HorizontalPodAutoscaler at a certain point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. pkg/scheduler/schedule_one.go

    }
    
    func getAttemptsLabel(p *framework.QueuedPodInfo) string {
    	// We breakdown the pod scheduling duration by attempts capped to a limit
    	// to avoid ending up with a high cardinality metric.
    	if p.Attempts >= 15 {
    		return "15+"
    	}
    	return strconv.Itoa(p.Attempts)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/buildlist.go

    	rs.graphOnce.Do(func() {
    		mg, mgErr := readModGraph(ctx, rs.pruning, rs.rootModules, nil)
    		rs.graph.Store(&cachedGraph{mg, mgErr})
    	})
    	cached := rs.graph.Load()
    	return cached.mg, cached.err
    }
    
    // IsDirect returns whether the given module provides a package directly
    // imported by a package or test in the main module.
    func (rs *Requirements) IsDirect(path string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. src/net/http/request.go

    	// This field is only available after ParseForm is called.
    	// The HTTP client ignores Form and uses Body instead.
    	Form url.Values
    
    	// PostForm contains the parsed form data from PATCH, POST
    	// or PUT body parameters.
    	//
    	// This field is only available after ParseForm is called.
    	// The HTTP client ignores PostForm and uses Body instead.
    	PostForm url.Values
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    	// with nanotime called around it, but stubbed out for testing.
    	// Like mheap.pages.scavenge, if it scavenges less than n bytes of
    	// memory, the caller may assume the heap is exhausted of scavengable
    	// memory for now.
    	//
    	// If this is nil, it is populated with the real thing in init.
    	scavenge func(n uintptr) (uintptr, int64)
    
    	// shouldStop is a callback called in the work loop and provides a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top