Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for Distinguishes (0.17 sec)

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

    	// should generally be ignored by callers since they happen frequently when
    	// we're offline. These errors are not equivalent to ErrDisallowed, so they
    	// may be distinguished from retraction errors.
    	//
    	// We load the raw file here: the go.mod file may have a different module
    	// path that we expect if the module or its repository was renamed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  2. src/encoding/asn1/asn1.go

    package asn1
    
    // ASN.1 is a syntax for specifying abstract objects and BER, DER, PER, XER etc
    // are different encoding formats for those objects. Here, we'll be dealing
    // with DER, the Distinguished Encoding Rules. DER is used in X.509 because
    // it's fast to parse and, unlike BER, has a unique encoding for every object.
    // When calculating hashes over objects, it's important that the resulting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/language/match.go

    		m.supported = append(m.supported, &pair)
    	}
    	m.default_ = m.header(supported[0].lang()).haveTags[0]
    	// Keep these in two different loops to support the case that two equivalent
    	// languages are distinguished, such as iw and he.
    	for i, tag := range supported {
    		tt := tag.tag()
    		pair, max := makeHaveTag(tt, i)
    		if max != tt.LangID {
    			m.header(max).addIfNew(pair, true)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. src/runtime/runtime2.go

    	//
    	// funcdata [nfuncdata]uint32
    }
    
    // Pseudo-Func that is returned for PCs that occur in inlined code.
    // A *Func can be either a *_func or a *funcinl, and they are distinguished
    // by the first uintptr.
    //
    // TODO(austin): Can we merge this with inlinedCall?
    type funcinl struct {
    	ones      uint32  // set to ^0 to distinguish from _func
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top