Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Distinguishes (0.27 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    			// those transitive dependencies, and mark it as a dependency of the main
    			// module. That allows us to elide the actual structure of the module
    			// graph, but still distinguishes between direct and indirect
    			// dependencies.
    			vendorMod := module.Version{Path: "vendor/modules.txt", Version: ""}
    			if inWorkspaceMode() {
    				for _, m := range MainModules.Versions() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    	// encodes as ^uint64(0x42_43_44).
    	// LMS-substrings can never start or end with 0xFF.
    	// Adding 1 ensures the encoded byte sequence never
    	// starts or ends with 0x00, so that present bytes can be
    	// distinguished from zero-padding in the top bits,
    	// so the length need not be separately encoded.
    	// Inverting the bytes increases the chance that a
    	// 4-byte encoding will still be ≥ len(text).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/type.go

    // already exists at package scope and is available at sym.Def.(*ir.Name).Type().
    // Local types (which may have the same name as a package-level type) are
    // distinguished by their vargen, which is embedded in their symbol name.
    type Type struct {
    	// extra contains extra etype-specific fields.
    	// As an optimization, those etype-specific structs which contain exactly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    // CertificateRequest message, which is used to demand a certificate and proof
    // of control from a client.
    type CertificateRequestInfo struct {
    	// AcceptableCAs contains zero or more, DER-encoded, X.501
    	// Distinguished Names. These are the names of root or intermediate CAs
    	// that the server wishes the returned certificate to be signed by. An
    	// empty slice indicates that the server has no preference.
    	AcceptableCAs [][]byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    // Concurrent marking happens through four different mechanisms. One
    // is mutator assists, which happen in response to allocations and are
    // not scheduled. The other three are variations in the per-P mark
    // workers and are distinguished by gcMarkWorkerMode.
    type gcMarkWorkerMode int
    
    const (
    	// gcMarkWorkerNotWorker indicates that the next scheduled G is not
    	// starting work and the mode should be ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. src/crypto/x509/x509.go

    // the public key in the issuer certificate.
    //
    // The issuer may not be nil, and the crlSign bit must be set in [KeyUsage] in
    // order to use it as a CRL issuer.
    //
    // The issuer distinguished name CRL field and authority key identifier
    // extension are populated using the issuer certificate. issuer must have
    // SubjectKeyId set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    of the function, constant, or variable Xxx. An example of a method M with
    receiver type T or *T is named ExampleT_M. There may be multiple examples
    for a given function, constant, or variable, distinguished by a trailing _xxx,
    where xxx is a suffix not beginning with an upper case letter.
    
    Here is an example of an example:
    
    	func ExamplePrintln() {
    		Println("The output of\nthis example.")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top