Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for RELEASE (0.1 sec)

  1. src/cmd/cgo/gcc.go

    // (32 or 64-bit) is for payload, whatever the tagged class.
    //
    // Note that the specific integers used to identify the
    // specific tagged classes can and will change from release
    // to release (that's why this stuff is in CF*Internal*.h),
    // as can the definition of type info vs payload above.
    //
    #if __LP64__
    #define CF_IS_TAGGED_OBJ(PTR)	((uintptr_t)(PTR) & 0x1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    	ELF_NOTE_FREEBSD_DESCSZ            = 4
    	ELF_NOTE_FREEBSD_ABI_TAG           = 1
    	ELF_NOTE_FREEBSD_NOINIT_TAG        = 2
    	ELF_NOTE_FREEBSD_FEATURE_CTL_TAG   = 4
    	ELF_NOTE_FREEBSD_VERSION           = 1203000 // 12.3-RELEASE
    	ELF_NOTE_FREEBSD_FCTL_ASLR_DISABLE = 0x1
    )
    
    const ELF_NOTE_FREEBSD_NAME = "FreeBSD\x00"
    
    func elffreebsdsig(sh *ElfShdr, startva uint64, resoff uint64) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

            if ( this.treeHandle == null || !this.treeHandle.isConnected() ) {
                if ( this.treeHandle != null && this.transportContext.getConfig().isStrictResourceLifecycle() ) {
                    this.treeHandle.release();
                }
                this.treeHandle = this.treeConnection.connectWrapException(this.fileLocator);
                this.treeHandle.ensureDFSResolved();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  4. src/runtime/traceback.go

    // previous call to the context function. This case is called when the
    // context is no longer needed; that is, when the Go code is returning
    // to its C code caller. This permits the context function to release
    // any associated resources.
    //
    // While it would be correct for the context function to record a
    // complete a stack trace whenever it is called, and simply copy that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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