Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for Distinguishes (0.14 sec)

  1. src/cmd/compile/internal/types2/universe.go

    	// representation of interface aliases during type checking, and is
    	// implemented via hijacking [Scope.Lookup] for the [Universe] scope.
    	//
    	// Both representations use the same distinguished pointer for their RHS
    	// interface type, allowing us to detect any (even with the legacy
    	// representation), and format it as "any" rather than interface{}, which
    	// clarifies user-facing error messages significantly.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/go/types/universe.go

    	// representation of interface aliases during type checking, and is
    	// implemented via hijacking [Scope.Lookup] for the [Universe] scope.
    	//
    	// Both representations use the same distinguished pointer for their RHS
    	// interface type, allowing us to detect any (even with the legacy
    	// representation), and format it as "any" rather than interface{}, which
    	// clarifies user-facing error messages significantly.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cmdflag/flag.go

    // We can't use the standard flag package because some of the flags from
    // our command line are for us, and some are for the binary we're running,
    // and some are for both.
    
    // ErrFlagTerminator indicates the distinguished token "--", which causes the
    // flag package to treat all subsequent arguments as non-flags.
    var ErrFlagTerminator = errors.New("flag terminator")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 02:38:04 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. src/encoding/ascii85/ascii85_test.go

    package ascii85
    
    import (
    	"bytes"
    	"io"
    	"strings"
    	"testing"
    )
    
    type testpair struct {
    	decoded, encoded string
    }
    
    var bigtest = testpair{
    	"Man is distinguished, not only by his reason, but by this singular passion from " +
    		"other animals, which is a lust of the mind, that by a perseverance of delight in " +
    		"the continued and indefatigable generation of knowledge, exceeds the short " +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:46:20 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  5. src/math/big/floatconv.go

    // maximum float64 value. For hexadecimal mantissae, the exponent character
    // must be one of 'p' or 'P', if present (an "e" or "E" exponent indicator
    // cannot be distinguished from a mantissa digit).
    //
    // The returned *Float f is nil and the value of z is valid but not
    // defined if an error is reported.
    func (z *Float) Parse(s string, base int) (f *Float, b int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top