Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for Largest (0.52 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			}
    			if len(crdCost.MostExpensive) != len(tt.expectedExpensive) {
    				t.Fatalf("expected %d largest costs but got %d: %v", len(tt.expectedExpensive), len(crdCost.MostExpensive), crdCost.MostExpensive)
    			}
    			for i, expensive := range crdCost.MostExpensive {
    				if tt.expectedExpensive[i] != expensive.Cost {
    					t.Errorf("expected largest cost of %d at index %d but got %d", tt.expectedExpensive[i], i, expensive.Cost)
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    	if w.rws.req.TLS != nil {
    		wantScheme = "https"
    	}
    
    	// Validate the request.
    	u, err := url.Parse(target)
    	if err != nil {
    		return err
    	}
    	if u.Scheme == "" {
    		if !strings.HasPrefix(target, "/") {
    			return fmt.Errorf("target must be an absolute URL or an absolute path: %q", target)
    		}
    		u.Scheme = wantScheme
    		u.Host = w.rws.req.Host
    	} else {
    		if u.Scheme != wantScheme {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. doc/go_spec.html

    The precise behavior is implementation-dependent.
    </p>
    
    
    <h3 id="Min_and_max">Min and max</h3>
    
    <p>
    The built-in functions <code>min</code> and <code>max</code> compute the
    smallest&mdash;or largest, respectively&mdash;value of a fixed number of
    arguments of <a href="#Comparison_operators">ordered types</a>.
    There must be at least one argument
    [<a href="#Go_1.21">Go 1.21</a>].
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  4. src/cmd/compile/internal/ssagen/ssa.go

    		table := make([]*ssa.Block, max-min+1)
    		for i := range table {
    			table[i] = bEnd // default target
    		}
    		for i := range n.Targets {
    			c := n.Cases[i]
    			lab := s.label(n.Targets[i])
    			if lab.target == nil {
    				lab.target = s.f.NewBlock(ssa.BlockPlain)
    			}
    			var val uint64
    			if unsigned {
    				val, _ = constant.Uint64Val(c)
    			} 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.27.md

    - `apiserver_admission_webhook_admission_duration_seconds` buckets have been expanded, 25s is now the largest bucket size to match the webhook default timeout. ([#115802](https://github.com/kubernetes/kubernetes/pull/115802), [@logicalhan](https://github.com/logicalhan)) [SIG API Machinery and Instrumentation]
    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. ChangeLog.md

    - [`KT-65213`](https://youtrack.jetbrains.com/issue/KT-65213) Collect logic for FUS metrics calculation in one place
    - [`KT-61698`](https://youtrack.jetbrains.com/issue/KT-61698) Compiler options configured inside metadata {} target set up all targets in a project
    - [`KT-64824`](https://youtrack.jetbrains.com/issue/KT-64824) Move validateParameters from CInteropProcess to diagnostics
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    type ISCSIVolumeSource struct {
    	// Required: iSCSI target portal
    	// the portal is either an IP or ip_addr:port if port is other than default (typically TCP ports 860 and 3260)
    	// +optional
    	TargetPortal string
    	// Required:  target iSCSI Qualified Name
    	// +optional
    	IQN string
    	// Required: iSCSI target lun number
    	// +optional
    	Lun int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"targetPortal":      "targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
    	"iqn":               "iqn is Target iSCSI Qualified Name.",
    	"lun":               "lun is iSCSI Target Lun number.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

    message ISCSIPersistentVolumeSource {
      // targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port
      // is other than default (typically TCP ports 860 and 3260).
      optional string targetPortal = 1;
    
      // iqn is Target iSCSI Qualified Name.
      optional string iqn = 2;
    
      // lun is iSCSI Target Lun number.
      optional int32 lun = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	// The target object that you want to bind to the standard object.
    	Target ObjectReference `json:"target" protobuf:"bytes,2,opt,name=target"`
    }
    
    // Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.
    // +k8s:openapi-gen=false
    type Preconditions struct {
    	// Specifies the target UID.
    	// +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)
Back to top