Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for extended (6.5 sec)

  1. CHANGELOG/CHANGELOG-1.27.md

    - The scheduling queue didn't notice any extenders' failures, it could miss some cluster events,
      and it could end up Pods rejected by Extenders stuck in unschedulable pod pool in 5min in the worst-case scenario.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    	// closed no data can be written to it. The timeout begins when data is
    	// available to write, and is extended whenever any bytes are written.
    	WriteByteTimeout time.Duration
    
    	// CountError, if non-nil, is called on HTTP/2 transport errors.
    	// It's intended to increment a metric for monitoring, such
    	// as an expvar or Prometheus metric.
    	// The errType consists of only ASCII word characters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.23.md

    - The etcd container image now supports Windows. ([#92433](https://github.com/kubernetes/kubernetes/pull/92433), [@claudiubelu](https://github.com/claudiubelu))
    - The kube-apiserver's Prometheus metrics have been extended with some that describe the costs of handling LIST requests.  They are as follows.
      - *apiserver_cache_list_total*: Counter of LIST requests served from watch cache, broken down by resource_prefix and index_name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.14.md

    - Ensured that volumes get provisioned based on the zone information provided in `allowedTopologies`. ([#72731](https://github.com/kubernetes/kubernetes/pull/72731), [@skarthiksrinivas](https://github.com/skarthiksrinivas))
    - Extended the `VolumeSubpathEnvExpansion` alpha feature to support environment variable expansion ([#71351](https://github.com/kubernetes/kubernetes/pull/71351), [@kevtaylor](https://github.com/kevtaylor))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (2)
  5. CHANGELOG/CHANGELOG-1.12.md

    - TLS timeouts have been extended to work around slow arm64 math/big functions. ([#66264](https://github.com/kubernetes/kubernetes/pull/66264), [@joejulian](https://github.com/joejulian))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.6.md

    * Added support to minimize sending verbose node information to scheduler extender by sending only node names and expecting extenders to cache the rest of the node information ([#41119](https://github.com/kubernetes/kubernetes/pull/41119), [@sarat-k](https://github.com/sarat-k))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    // (but boundsCheck will still extend the index to full int width).
    func (s *state) boundsCheck(idx, len *ssa.Value, kind ssa.BoundsKind, bounded bool) *ssa.Value {
    	idx = s.extendIndex(idx, len, kind, bounded)
    
    	if bounded || base.Flag.B != 0 {
    		// If bounded or bounds checking is flag-disabled, then no check necessary,
    		// just return the extended index.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    		}
    	} else if !helper.IsNativeResource(value) {
    		if !helper.IsExtendedResourceName(value) {
    			return append(allErrs, field.Invalid(fldPath, value, "doesn't follow extended resource name standard"))
    		}
    	}
    	return allErrs
    }
    
    // Validate resource names that can go in a resource quota
    // Refer to docs/design/resources.md for more details.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// Expanded path within the volume from which the container's volume should be mounted.
    	// Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.
    	// Defaults to "" (volume's root).
    	// SubPathExpr and SubPath are mutually exclusive.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/core/v1/generated.proto

      // Variable references $(VAR_NAME) are expanded using the container's environment. If a variable
      // cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced
      // to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will
      // produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
Back to top