Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for Implicit (0.2 sec)

  1. api/go1.txt

    pkg syscall (windows-386), const CERT_TRUST_INVALID_POLICY_CONSTRAINTS ideal-int
    pkg syscall (windows-386), const CERT_TRUST_IS_CYCLIC ideal-int
    pkg syscall (windows-386), const CERT_TRUST_IS_EXPLICIT_DISTRUST ideal-int
    pkg syscall (windows-386), const CERT_TRUST_IS_NOT_SIGNATURE_VALID ideal-int
    pkg syscall (windows-386), const CERT_TRUST_IS_NOT_TIME_VALID ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
  2. src/bufio/scan.go

    	ErrBadReadCount    = errors.New("bufio.Scanner: Read returned impossible count")
    )
    
    const (
    	// MaxScanTokenSize is the maximum size used to buffer a token
    	// unless the user provides an explicit buffer with [Scanner.Buffer].
    	// The actual maximum token size may be smaller as the buffer
    	// may need to include, for instance, a newline.
    	MaxScanTokenSize = 64 * 1024
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Oct 23 09:06:30 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  3. doc/asm.html

    function <code>Syscall</code> in package <code>syscall</code> should
    use the name <code>·Syscall</code> instead of the equivalent name
    <code>syscall·Syscall</code> in its <code>TEXT</code> directive).
    For more complex situations, explicit annotation is needed.
    These annotations use pseudo-instructions defined in the standard
    <code>#include</code> file <code>funcdata.h</code>.
    </p>
    
    <p>
    If a function has no arguments and no results,
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg syscall (windows-386), const CERT_TRUST_INVALID_POLICY_CONSTRAINTS = 512
    pkg syscall (windows-386), const CERT_TRUST_IS_CYCLIC = 128
    pkg syscall (windows-386), const CERT_TRUST_IS_EXPLICIT_DISTRUST = 67108864
    pkg syscall (windows-386), const CERT_TRUST_IS_NOT_SIGNATURE_VALID = 8
    pkg syscall (windows-386), const CERT_TRUST_IS_NOT_TIME_VALID = 1
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  5. src/archive/tar/reader.go

    		is1x0 = true
    	case major != "" || minor != "":
    		return nil, nil // Unknown GNU sparse PAX version
    	case hdr.PAXRecords[paxGNUSparseMap] != "":
    		is1x0 = false // 0.0 and 0.1 did not have explicit version records, so guess
    	default:
    		return nil, nil // Not a PAX format GNU sparse file.
    	}
    	hdr.Format.mayOnlyBe(FormatPAX)
    
    	// Update hdr from GNU sparse PAX headers.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 08 01:59:14 GMT 2024
    - 26.8K bytes
    - Viewed (0)
  6. src/cmd/api/main_test.go

    	}
    	if context.CgoEnabled {
    		ctags["cgo"] = true
    	}
    	for _, tag := range context.BuildTags {
    		ctags[tag] = true
    	}
    	// TODO: ReleaseTags (need to load default)
    	key := dir
    
    	// explicit on GOOS and GOARCH as global cache will use "all" cached packages for
    	// an indirect imported package. See https://github.com/golang/go/issues/21181
    	// for more detail.
    	tags = append(tags, context.GOOS, context.GOARCH)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
Back to top