Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 97 for leastOf (0.25 sec)

  1. src/crypto/tls/common.go

    	// certificates.
    	RequestClientCert
    	// RequireAnyClientCert indicates that a client certificate should be requested
    	// during the handshake, and that at least one certificate is required to be
    	// sent by the client, but that certificate is not required to be valid.
    	RequireAnyClientCert
    	// VerifyClientCertIfGiven indicates that a client certificate should be requested
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  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. cmd/erasure-object.go

    	for i := range onlineMeta {
    		// verify metadata is valid, it has similar erasure info
    		// as well as common modtime, if modtime is not possible
    		// verify if it has common "etag" at least.
    		if onlineMeta[i].IsValid() && onlineMeta[i].Erasure.Equal(fi.Erasure) {
    			ok := onlineMeta[i].ModTime.Equal(modTime)
    			if modTime.IsZero() || modTime.Equal(timeSentinel) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. src/runtime/map.go

    	bucketCntBits = abi.MapBucketCountBits
    
    	// Maximum average load of a bucket that triggers growth is bucketCnt*13/16 (about 80% full)
    	// Because of minimum alignment rules, bucketCnt is known to be at least 8.
    	// Represent as loadFactorNum/loadFactorDen, to allow integer math.
    	loadFactorDen = 2
    	loadFactorNum = loadFactorDen * abi.MapBucketCount * 13 / 16
    
    	// data offset should be the size of the bmap struct, but needs to be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/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 May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    				// We can't find the package because it doesn't — or can't — even exist
    				// in any module at the latest version. (Note that invalid module paths
    				// could in general exist due to replacements, so we at least need to
    				// run the query to check those.)
    				//
    				// There is no version change we can make to fix the package, so leave
    				// it unresolved. Either some other query (perhaps a wildcard matching a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    	syncHandler         func(ctx context.Context, jobKey string) error
    	// podStoreSynced returns true if the pod store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	podStoreSynced cache.InformerSynced
    	// jobStoreSynced returns true if the job store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	jobStoreSynced cache.InformerSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top