Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for emptypb (0.14 sec)

  1. staging/src/k8s.io/api/core/v1/generated.proto

      optional int32 defaultMode = 2;
    }
    
    // Represents an empty directory for a pod.
    // Empty directory volumes support ownership management and SELinux relabeling.
    message EmptyDirVolumeSource {
      // medium represents what type of storage medium should back this directory.
      // The default is "" which means to use the node's default medium.
      // Must be an empty string (default) or Memory.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    	// if both fields are non-empty, they must have the same value. For backwards
    	// compatibility, when namespace isn't specified in dataSourceRef,
    	// both fields (dataSource and dataSourceRef) will be set to the same
    	// value automatically if one of them is empty and the other is non-empty.
    	// When namespace is specified in dataSourceRef,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    func (wr http2FrameWriteRequest) Consume(n int32) (http2FrameWriteRequest, http2FrameWriteRequest, int) {
    	var empty http2FrameWriteRequest
    
    	// Non-DATA frames are always consumed whole.
    	wd, ok := wr.write.(*http2writeData)
    	if !ok || len(wd.p) == 0 {
    		return wr, empty, 1
    	}
    
    	// Might need to split after applying limits.
    	allowed := wr.stream.flow.available()
    	if n < allowed {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    // the target type is a compile-time-known non-empty interface. It may be nil.
    func (s *state) dottype1(pos src.XPos, src, dst *types.Type, iface, source, target, targetItab *ssa.Value, commaok bool, descriptor *obj.LSym) (res, resok *ssa.Value) {
    	typs := s.f.Config.Types
    	byteptr := typs.BytePtr
    	if dst.IsInterface() {
    		if dst.IsEmptyInterface() {
    			// Converting to an empty interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.23.md

    - Kube-apiserver: bugfix DeleteCollection API fails if request body is non-empty ([#113967](https://github.com/kubernetes/kubernetes/pull/113967), [@sxllwx](https://github.com/sxllwx)) [SIG API Machinery]
    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. CHANGELOG/CHANGELOG-1.8.md

    * Fixed API server panic during concurrent GET or LIST requests with non-empty `resourceVersion`. ([#65092](https://github.com/kubernetes/kubernetes/pull/65092), [@sttts](https://github.com/sttts))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.21.md

    - Fix: ignore not a VMSS error for VMAS nodes in reconcileBackendPools ([#103997](https://github.com/kubernetes/kubernetes/pull/103997), [@nilo19](https://github.com/nilo19)) [SIG Cloud Provider]
    - Fix: return empty VMAS name if using standalone VM ([#103470](https://github.com/kubernetes/kubernetes/pull/103470), [@nilo19](https://github.com/nilo19)) [SIG Cloud Provider]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.30.md

    - OIDC authentication will now fail if the username asserted based on a CEL expression config is the empty string.  Previously the request would be authenticated with the username set to the empty string. ([#123568](https://github.com/kubernetes/kubernetes/pull/123568), [@enj](https://github.com/enj))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.22.md

      - apiserver_flowcontrol_next_s_bounds: min and max next S among non-empty queues
      - apiserver_flowcontrol_next_discounted_s_bounds: min and max next S - (sum [over requests executing] width * estimatedDuration) among non-empty queues ([#102859](https://github.com/kubernetes/kubernetes/pull/102859), [@MikeSpreitzer](https://github.com/MikeSpreitzer)) [SIG API Machinery and Instrumentation]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          // feature dimension, with the same element type as the operand (x).
          // This shape must be constructed manually because the mean and variance
          // inputs are empty in the training case.
          Type mean_var_type = tensorflow::GetTypeFromTFTensorShape(
              {operand_shape[feature_dim.getInt()]}, scale_element_type);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top