Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 87 of 87 for RELEASE (0.28 sec)

  1. src/crypto/x509/x509.go

    //
    // To temporarily restore support for SHA-1 signatures, include the value
    // "x509sha1=1" in the GODEBUG environment variable. Note that this option will
    // be removed in a future release.
    type InsecureAlgorithmError SignatureAlgorithm
    
    func (e InsecureAlgorithmError) Error() string {
    	var override string
    	if SignatureAlgorithm(e) == SHA1WithRSA || SignatureAlgorithm(e) == ECDSAWithSHA1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        String GRADLE_PROPERTIES = "gradle.properties";
    
        String SYSTEM_PROP_PREFIX = "systemProp";
    
        String DEFAULT_VERSION = "unspecified";
    
        String DEFAULT_STATUS = "release";
    
        /**
         * <p>Returns the root project for the hierarchy that this project belongs to.  In the case of a single-project
         * build, this method returns this project.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. cmd/erasure-object.go

    	if !opts.NoLock {
    		lock := er.NewNSLock(bucket, object)
    		lkctx, err := lock.GetRLock(ctx, globalOperationTimeout)
    		if err != nil {
    			return nil, err
    		}
    		ctx = lkctx.Context()
    
    		// Release lock when the metadata is verified, and reader
    		// is ready to be read.
    		//
    		// This is possible to be lock free because
    		// - xl.meta for inlined objects has already read the data
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    	go get example.com/mod@none
    
    To upgrade the minimum required Go version to the latest released Go version:
    
    	go get go@latest
    
    To upgrade the Go toolchain to the latest patch release of the current Go toolchain:
    
    	go get toolchain@patch
    
    See https://golang.org/ref/mod#go-get for details.
    
    In earlier versions of Go, 'go get' was used to build and install packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    type TableOptions struct {
    	TypeMeta `json:",inline"`
    
    	// NoHeaders is only exposed for internal callers. It is not included in our OpenAPI definitions
    	// and may be removed as a field in a future release.
    	NoHeaders bool `json:"-"`
    
    	// includeObject decides whether to include each object along with its columnar information.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (AtomicLoad(8|32|Acq32|64|Ptr) ptr mem) => (MOV(BZ|WZ|WZ|D|D)atomicload ptr mem)
    (AtomicStore(8|32|64|PtrNoWB) ptr val mem) => (SYNC (MOV(B|W|D|D)atomicstore ptr val mem))
    
    // Store-release doesn't require store-load ordering.
    (AtomicStoreRel32 ptr val mem) => (MOVWatomicstore ptr val mem)
    
    // Atomic adds.
    (AtomicAdd32 ptr val mem) => (AddTupleFirst32 val (LAA ptr val mem))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    //
    // Deprecated: Use [Request.WithContext] to create a request with a
    // cancelable context instead. CancelRequest cannot cancel HTTP/2
    // requests. This may become a no-op in a future release of Go.
    func (t *Transport) CancelRequest(req *Request) {
    	t.reqMu.Lock()
    	cancel := t.reqCanceler[req]
    	t.reqMu.Unlock()
    	if cancel != nil {
    		cancel(errRequestCanceled)
    	}
    }
    
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top