Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for miny (0.18 sec)

  1. src/net/http/h2_bundle.go

    const (
    	// transportDefaultConnFlow is how many connection-level flow control
    	// tokens we give the server at start-up, past the default 64k.
    	http2transportDefaultConnFlow = 1 << 30
    
    	// transportDefaultStreamFlow is how many stream-level flow
    	// control tokens we announce to the peer, and how many bytes
    	// we buffer per stream.
    	http2transportDefaultStreamFlow = 4 << 20
    
    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

    - Improved scheduling performance when many nodes, and prefilter returns 1-2 nodes (e.g. daemonset)
      
    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. src/cmd/compile/internal/ssagen/ssa.go

    		// the jump table at all.
    		// We check that min <= idx <= max and jump around the jump table
    		// if that test fails.
    		// We implement min <= idx <= max with 0 <= idx-min <= max-min, because
    		// we'll need idx-min anyway as the control value for the jump table.
    		var min, max uint64
    		if unsigned {
    			min, _ = constant.Uint64Val(n.Cases[0])
    			max, _ = constant.Uint64Val(n.Cases[len(n.Cases)-1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.28.md

    ## Changelog since v1.28.10
    
    ## Changes by Kind
    
    ### API Change
    
    - Improved scheduling performance when many nodes, and prefilter returns 1-2 nodes (e.g. daemonset)
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.27.md

    ## Changelog since v1.27.14
    
    ## Changes by Kind
    
    ### API Change
    
    - Improved scheduling performance when many nodes, and prefilter returns 1-2 nodes (e.g. daemonset)
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	Max ResourceList `json:"max,omitempty" protobuf:"bytes,2,rep,name=max,casttype=ResourceList,castkey=ResourceName"`
    	// Min usage constraints on this kind by resource name.
    	// +optional
    	Min ResourceList `json:"min,omitempty" protobuf:"bytes,3,rep,name=min,casttype=ResourceList,castkey=ResourceName"`
    	// Default resource requirement limit value by resource name if resource limit is omitted.
    	// +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)
  7. common-protos/k8s.io/api/core/v1/generated.proto

    }
    
    // LimitRangeItem defines a min/max usage limit for any resource that matches on kind.
    message LimitRangeItem {
      // Type of resource that this limit applies to.
      optional string type = 1;
    
      // Max usage constraints on this kind by resource name.
      // +optional
      map<string, k8s.io.apimachinery.pkg.api.resource.Quantity> max = 2;
    
      // Min usage constraints on this kind by resource name.
    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

    )
    
    // LimitRangeItem defines a min/max usage limit for any resource that matches on kind
    type LimitRangeItem struct {
    	// Type of resource that this limit applies to
    	// +optional
    	Type LimitType
    	// Max usage constraints on this kind by resource name
    	// +optional
    	Max ResourceList
    	// Min usage constraints on this kind by resource name
    	// +optional
    	Min ResourceList
    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. docs/en/docs/release-notes.md

    * 📝 Add External Link: ML serving and monitoring with FastAPI and Evidently. PR [#9701](https://github.com/tiangolo/fastapi/pull/9701) by [@mnrozhkov](https://github.com/mnrozhkov).
    * 📝 Reword in docs, from "have in mind" to "keep in mind". PR [#10376](https://github.com/tiangolo/fastapi/pull/10376) by [@malicious](https://github.com/malicious).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			},
    			errors: []validationMatch{
    				duplicate("spec", "versions[0]", "selectableFields[1].jsonPath"),
    				duplicate("spec", "versions[1]", "selectableFields[1].jsonPath"),
    			},
    		},
    		{
    			name: "too many selectableFields are not allowed",
    			resource: &apiextensions.CustomResourceDefinition{
    				ObjectMeta: metav1.ObjectMeta{Name: "plural.group.com"},
    				Spec: apiextensions.CustomResourceDefinitionSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
Back to top