Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 137 for leastOf (0.19 sec)

  1. cmd/api-errors.go

    		HTTPStatusCode: http.StatusNotImplemented,
    	},
    	ErrPreconditionFailed: {
    		Code:           "PreconditionFailed",
    		Description:    "At least one of the pre-conditions you specified did not hold",
    		HTTPStatusCode: http.StatusPreconditionFailed,
    	},
    	ErrRequestTimeTooSkewed: {
    		Code:           "RequestTimeTooSkewed",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  2. src/testing/testing.go

    //	func ExampleF_suffix() { ... }
    //	func ExampleT_suffix() { ... }
    //	func ExampleT_M_suffix() { ... }
    //
    // The entire test file is presented as the example when it contains a single
    // example function, at least one other function, type, variable, or constant
    // declaration, and no test or benchmark functions.
    //
    // # Fuzzing
    //
    // 'go test' and the testing package support fuzzing, a testing technique where
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. internal/bucket/lifecycle/lifecycle_test.go

    				IsLatest:         !tc.isNoncurrent,
    				SuccessorModTime: tc.objectSuccessorModTime,
    				VersionID:        tc.versionID,
    			}
    			opts.NumVersions = 1
    			if tc.hasManyVersions {
    				opts.NumVersions = 2 // at least one noncurrent version
    			}
    			if res := lc.Eval(opts); res.Action != tc.expectedAction {
    				t.Fatalf("Expected action: `%v`, got: `%v`", tc.expectedAction, res.Action)
    			}
    		})
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    // each by centralizing that state. A simple visualization of the time
    // intervals involved might look like:
    //
    // ---|                                         = kubelet config has synced at least once
    // -------|                                  |- = pod exists in apiserver config
    // --------|                  |---------------- = CouldHaveRunningContainers() is true
    //
    //	^- pod is observed by pod worker  .
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    	// still good.
    	lastCheckedTime, lastChangedTime int32
    	// Whether the block had any changes to user variables at all.
    	relevant bool
    	// false until the block has been processed at least once. This
    	// affects how the merge is done; the goal is to maximize sharing
    	// and avoid allocation.
    	everProcessed bool
    }
    
    // A liveSlot is a slot that's live in loc at entry/exit of a block.
    type liveSlot struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    	opcode   *regexp.Regexp // opcode check to be performed on assembly output
    	negative bool           // true if the check is supposed to fail rather than pass
    	found    bool           // true if the opcode check matched at least one in the output
    }
    
    // A build environment triplet separated by slashes (eg: linux/386/sse2).
    // The third field can be empty if the arch does not support variants (eg: "plan9/amd64/")
    type buildEnv string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. src/regexp/syntax/parse.go

    // a single use case with depth > 100; it had depth 128.
    // Using depth 1000 should be plenty of margin.
    // As an optimization, we don't even bother calculating heights
    // until we've allocated at least maxHeight Regexp structures.
    const maxHeight = 1000
    
    // maxSize is the maximum size of a compiled regexp in Insts.
    // It too is somewhat arbitrarily chosen, but the idea is to be large enough
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      //   is interpreted as "data at least as new as the provided `resourceVersion`"
      //   and the bookmark event is send when the state is synced
      //   to a `resourceVersion` at least as fresh as the one provided by the ListOptions.
      //   If `resourceVersion` is unset, this is interpreted as "consistent read" and the
      //   bookmark event is send when the state is synced at least to the moment
      //   when request started being processed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// auditAnnotations contains CEL expressions which are used to produce audit
    	// annotations for the audit event of the API request.
    	// validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is
    	// required.
    	// +listType=atomic
    	// +optional
    	AuditAnnotations []AuditAnnotation `json:"auditAnnotations,omitempty" protobuf:"bytes,5,rep,name=auditAnnotations"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      //   is interpreted as "data at least as new as the provided `resourceVersion`"
      //   and the bookmark event is send when the state is synced
      //   to a `resourceVersion` at least as fresh as the one provided by the ListOptions.
      //   If `resourceVersion` is unset, this is interpreted as "consistent read" and the
      //   bookmark event is send when the state is synced at least to the moment
      //   when request started being processed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top