Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for rejections (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. ChangeLog.md

    - [`KT-62923`](https://youtrack.jetbrains.com/issue/KT-62923) K2: Introduce PROJECTION_IN_IMMEDIATE_ARGUMENT_TO_SUPERTYPE for projections of outer super types of inner class
    - [`KT-65724`](https://youtrack.jetbrains.com/issue/KT-65724) Propagate data flow information from try block to catch and finally blocks
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	Path string `json:"path" protobuf:"bytes,4,rep,name=path"`
    }
    
    // Represents a projected volume source
    type ProjectedVolumeSource struct {
    	// sources is the list of volume projections
    	// +optional
    	// +listType=atomic
    	Sources []VolumeProjection `json:"sources" protobuf:"bytes,1,rep,name=sources"`
    	// 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
    - 390.8K bytes
    - Viewed (0)
Back to top