Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for maxs (0.31 sec)

  1. prow/config/calico.yaml

                      specifies the indices of the route tables that Calico should use.
                    properties:
                      max:
                        type: integer
                      min:
                        type: integer
                    required:
                    - max
                    - min
                    type: object
                  routeTableRanges:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. doc/go_spec.html

    (and similarly for <code>max</code>).
    If all arguments are constant, the result is constant.
    </p>
    
    <pre>
    var x, y int
    m := min(x)                 // m == x
    m := min(x, y)              // m is the smaller of x and y
    m := max(x, y, 10)          // m is the larger of x and y but at least 10
    c := max(1, 2.0, 10)        // c == 10.0 (floating-point kind)
    f := max(0, float32(x))     // type of f is float32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  3. CHANGELOG/CHANGELOG-1.28.md

    - Updated kube-apiserver's priority & fairness work estimator such that 'max seats' is MIN(0.15 x nominalCL, nominalCL / handSize)
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  4. 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])
    		} else {
    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.29.md

    - Fixed a bug where CEL expressions in CRD validation rules would incorrectly compute a high estimated cost for functions that return strings, lists or maps.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  6. 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
    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. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	Debug *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=debug,proto3" json:"debug,omitempty"`
    	// The global default max number of attributes per span.
    	MaxNumberOfAttributes uint32 `protobuf:"varint,2,opt,name=maxNumberOfAttributes,proto3" json:"maxNumberOfAttributes,omitempty"`
    	// The global default max number of annotation events per span.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "required": [
              "targetPortal",
              "iqn",
              "lun"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.KeyToPath": {
            "description": "Maps a string key to a path within a volume.",
            "properties": {
              "key": {
                "default": "",
                "description": "key is the key to project.",
                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    	}
    	if max := t.maxFrameReadSize(); max != 0 {
    		initialSettings = append(initialSettings, http2Setting{ID: http2SettingMaxFrameSize, Val: max})
    	}
    	if max := t.maxHeaderListSize(); max != 0 {
    		initialSettings = append(initialSettings, http2Setting{ID: http2SettingMaxHeaderListSize, Val: max})
    	}
    	if maxHeaderTableSize != http2initialHeaderTableSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. ChangeLog.md

    - [`KT-62644`](https://youtrack.jetbrains.com/issue/KT-62644) Don't enable in progressive mode bug-fix features without target version
    - [`KT-62350`](https://youtrack.jetbrains.com/issue/KT-62350) CLI: no color output on Apple silicon Macs
    - [`KT-61156`](https://youtrack.jetbrains.com/issue/KT-61156) K2: do not try to run compilation if there were errors during calculation of Java module graph
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top