Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for ulong (0.26 sec)

  1. src/net/http/h2_bundle.go

    type http2goAwayFlowError struct{}
    
    func (http2goAwayFlowError) Error() string { return "connection exceeded flow control window size" }
    
    // connError represents an HTTP/2 ConnectionError error code, along
    // with a string (for debugging) explaining why.
    //
    // Errors of this type are only returned by the frame parser functions
    // and converted into ConnectionError(Code), after stashing away
    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. pkg/apis/core/types.go

    	// mode, like fsGroup, and the result can be other mode bits set.
    	// +optional
    	DefaultMode *int32
    }
    
    // VolumeProjection that may be projected along with other supported volume types
    type VolumeProjection struct {
    	// all types below are the supported types for projection into the same volume
    
    	// information about the secret data to project
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      //
      // The template will be used to create a new ResourceClaim, which will
      // be bound to this pod. When this pod is deleted, the ResourceClaim
      // will also be deleted. The pod name and resource name, along with a
      // generated component, will be used to form a unique name for the
      // ResourceClaim, which will be recorded in pod.status.resourceClaimStatuses.
      //
      // This field is immutable and no changes will be made to the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			want:       nil,
    		},
    		{
    			name:       "long warning",
    			deprecated: true,
    			warning:    pointer.StringPtr(strings.Repeat("x", 256)),
    			want:       nil,
    		},
    
    		{
    			name:       "too long warning",
    			deprecated: true,
    			warning:    pointer.StringPtr(strings.Repeat("x", 257)),
    			want:       []string{"must be <= 256 characters long"},
    		},
    		{
    			name:       "newline",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// mode, like fsGroup, and the result can be other mode bits set.
    	// +optional
    	DefaultMode *int32 `json:"defaultMode,omitempty" protobuf:"varint,2,opt,name=defaultMode"`
    }
    
    // Projection that may be projected along with other supported volume types
    type VolumeProjection struct {
    	// all types below are the supported types for projection into the same volume
    
    	// secret information about the secret data to project
    	// +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)
  6. src/cmd/compile/internal/ssagen/ssa.go

    			}
    		default:
    			s.Fatalf("bad call type %v %v", n.Op(), n)
    		}
    		call.AddArgs(callArgs...)
    		call.AuxInt = stksize // Call operations carry the argsize of the callee along with them
    	}
    	s.prevCall = call
    	s.vars[memVar] = s.newValue1I(ssa.OpSelectN, types.TypeMem, int64(len(ACResults)), call)
    	// Insert VarLive opcodes.
    	for _, v := range n.KeepAlive {
    		if !v.Addrtaken() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. doc/go_spec.html

    sent values have been received, receive operations will return
    the zero value for the channel's type without blocking.
    The multi-valued <a href="#Receive_operator">receive operation</a>
    returns a received value along with an indication of whether the channel is closed.
    </p>
    
    
    <h3 id="Complex_numbers">Manipulating complex numbers</h3>
    
    <p>
    Three functions assemble and disassemble complex numbers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.27.md

    - `kubectl port-forward` now exits with exit code 1 when remote connection is
      lost ([#114460](https://github.com/kubernetes/kubernetes/pull/114460), [@brianpursley](https://github.com/brianpursley))
    - `nodeName` being set along with non-empty `schedulingGates` is now enforced. ([#115569](https://github.com/kubernetes/kubernetes/pull/115569), [@Huang-Wei](https://github.com/Huang-Wei))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.26.md

    - Enforce nodeName cannot be set along with non-empty schedulingGates ([#115636](https://github.com/kubernetes/kubernetes/pull/115636), [@Huang-Wei](https://github.com/Huang-Wei)) [SIG Apps and Scheduling]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.30.md

       ([#123492](https://github.com/kubernetes/kubernetes/pull/123492), [@carlory](https://github.com/carlory))
    - Added metric name along with the utilization information when running `kubectl get hpa`. ([#122804](https://github.com/kubernetes/kubernetes/pull/122804), [@sreeram-venkitesh](https://github.com/sreeram-venkitesh))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top