Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for rejections (0.22 sec)

  1. CHANGELOG/CHANGELOG-1.22.md

    change the Kubelet now correctly takes into account the resources of running and terminating pods when deciding to accept new pods, since terminating pods are still holding on to those resources. This stricter handling may surface to end users as pod rejections when creating pods that are scheduled to mostly full nodes that have other terminating pods holding the resources the new pods need. The most likely error would be a pod set to `Failed` phase with reason set to `OutOfCpu` or `OutOfMemory`, but any...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    	if hs := opts.baseConfig(); hs != nil {
    		ctx = context.WithValue(ctx, ServerContextKey, hs)
    	}
    	return
    }
    
    func (sc *http2serverConn) rejectConn(err http2ErrCode, debug string) {
    	sc.vlogf("http2: server rejecting conn: %v, %s", err, debug)
    	// ignoring errors. hanging up anyway.
    	sc.framer.WriteGoAway(0, err, []byte(debug))
    	sc.bw.Flush()
    	sc.conn.Close()
    }
    
    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.30.md

    - Client-go: Optimized leaders renewing leases by updating leader lock optimistically without getting the record from the API server first. Also, a new metric `leader_election_slowpath_total` was added to allow users to monitor how many leader elections are updated non-optimistically.
       ([#122069](https://github.com/kubernetes/kubernetes/pull/122069), [@linxiulei](https://github.com/linxiulei))
    - Locked the GA feature-gate `ConsistentHTTPGetHandlers` to default.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  4. prow/config/calico.yaml

                  serviceLoopPrevention:
                    description: 'When service IP advertisement is enabled, prevent routing
                      loops to service IPs that are not in use, by dropping or rejecting
                      packets that do not get DNAT''d by kube-proxy. Unless set to "Disabled",
                      in which case such routing loops continue to be allowed. [Default:
                      Drop]'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.23.md

    - A pod that the Kubelet rejects was still considered as being accepted for a brief period of time after rejection, which might cause some pods to be rejected briefly that could fit on the node.  A pod that is still terminating (but has status indicating it has failed) may also still be consuming resources and so should also be considered. ([#104817](https:/...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    //===----------------------------------------------------------------------===//
    
    // Returns the type to use for accumulating the given type.
    static Type GetAccumulationType(Type ty) {
      // Upcast 16 bit sum reductions to 32 bit to reduce the precision loss from
      // repeated floating point additions.
      return (ty.isF16() || ty.isBF16()) ? FloatType::getF32(ty.getContext()) : ty;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional GRPCAction grpc = 4;
    }
    
    // Represents a projected volume source
    message ProjectedVolumeSource {
      // sources is the list of volume projections
      // +optional
      repeated VolumeProjection sources = 1;
    
      // defaultMode are the mode bits used to set permissions on created files by default.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// Relative path from the volume root to write the bundle.
    	Path string
    }
    
    // ProjectedVolumeSource represents a projected volume source
    type ProjectedVolumeSource struct {
    	// list of volume projections
    	Sources []VolumeProjection
    	// Mode bits to use on created files by default. Must be a value between
    	// 0 and 0777.
    	// Directories within the path are not affected by this setting.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_ProbeHandler
    }
    
    var map_ProjectedVolumeSource = map[string]string{
    	"":            "Represents a projected volume source",
    	"sources":     "sources is the list of volume projections",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional GRPCAction grpc = 4;
    }
    
    // Represents a projected volume source
    message ProjectedVolumeSource {
      // sources is the list of volume projections
      // +optional
      // +listType=atomic
      repeated VolumeProjection sources = 1;
    
      // defaultMode are the mode bits used to set permissions on created files by default.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top