Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 254 for street (0.42 sec)

  1. src/archive/tar/strconv.go

    		return s
    	}
    	b := make([]byte, 0, len(s))
    	for _, c := range s {
    		if c < 0x80 && c != 0x00 {
    			b = append(b, byte(c))
    		}
    	}
    	return string(b)
    }
    
    type parser struct {
    	err error // Last error seen
    }
    
    type formatter struct {
    	err error // Last error seen
    }
    
    // parseString parses bytes as a NUL-terminated C-style string.
    // If a NUL byte is not found then the whole slice is returned as a string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:28:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. doc/go_spec.html

    </ul>
    
    <p>
    <a href="#Struct_types">Struct tags</a> are ignored when comparing struct types
    for identity for the purpose of conversion:
    </p>
    
    <pre>
    type Person struct {
    	Name    string
    	Address *struct {
    		Street string
    		City   string
    	}
    }
    
    var data *struct {
    	Name    string `json:"name"`
    	Address *struct {
    		Street string `json:"street"`
    		City   string `json:"city"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/struct.go

    )
    
    // ----------------------------------------------------------------------------
    // API
    
    // A Struct represents a struct type.
    type Struct struct {
    	fields []*Var   // fields != nil indicates the struct is set up (possibly with len(fields) == 0)
    	tags   []string // field tags; nil if there are no tags
    }
    
    // NewStruct returns a new struct with the given fields and corresponding field tags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/lex/lex.go

    // the text of the most recently returned token is, and where it was found.
    // The underlying scanner elides all spaces except newline, so the input looks like a stream of
    // Tokens; original spacing is lost but we don't need it.
    type TokenReader interface {
    	// Next returns the next token.
    	Next() ScanToken
    	// The following methods all refer to the most recent token returned by Next.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/iexport.go

    //         Tag     itag // interfaceType
    //         Terms   []struct {
    //             tilde bool
    //             Type  typeOff
    //         }
    //     }
    //
    //
    //
    //     type Signature struct {
    //         Params   []Param
    //         Results  []Param
    //         Variadic bool  // omitted if Results is empty
    //     }
    //
    //     type Param struct {
    //         Pos  Pos
    //         Name stringOff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/sizes_test.go

    	"internal/testenv"
    	"testing"
    )
    
    // findStructType typechecks src and returns the first struct type encountered.
    func findStructType(t *testing.T, src string) *types2.Struct {
    	return findStructTypeConfig(t, src, &types2.Config{})
    }
    
    func findStructTypeConfig(t *testing.T, src string, conf *types2.Config) *types2.Struct {
    	types := make(map[syntax.Expr]types2.TypeAndValue)
    	mustTypecheck(src, nil, &types2.Info{Types: types})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 21:00:48 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/object_test.go

    	{"type t[P any] struct{f P}", "t", "type p.t[P any] struct{f P}", false},
    	{"type t[P any] struct{f P}", "t.P", "type parameter P any", false},
    	{"type C interface{m()}; type t[P C] struct{}", "t.P", "type parameter P p.C", false},
    
    	{"type t = struct{f int}", "t", "type p.t = struct{f int}", false},
    	{"type t = func(int)", "t", "type p.t = func(int)", false},
    	{"type A = B; type B = int", "A", "type p.A = p.B", true},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/testflag.go

    			cf.Var(cf.Lookup(name).Value, "test."+name, "")
    		}
    	}
    }
    
    // outputdirFlag implements the -outputdir flag.
    // It interprets an empty value as the working directory of the 'go' command.
    type outputdirFlag struct {
    	abs string
    }
    
    func (f *outputdirFlag) String() string {
    	return f.abs
    }
    
    func (f *outputdirFlag) Set(value string) (err error) {
    	if value == "" {
    		f.abs = ""
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_test.go

    		// collisions
    		{"type ( E1 struct{ f int }; E2 struct{ f int }; x struct{ E1; *E2 })", false, []int{1, 0}, false},
    		{"type ( E1 struct{ f int }; E2 struct{}; x struct{ E1; *E2 }); func (E2) f() {}", false, []int{1, 0}, false},
    
    		// collisions on a generic type
    		{"type ( E1[P any] struct{ f P }; E2[P any] struct{ f P }; x struct{ E1[int]; *E2[int] })", false, []int{1, 0}, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/trace/trace.go

    	return t.nextFlowID.Add(1)
    }
    
    // traceKey is the context key for tracing information. It is unexported to prevent collisions with context keys defined in
    // other packages.
    type traceKey struct{}
    
    type traceContext struct {
    	t   *tracer
    	tid uint64
    }
    
    // Start starts a trace which writes to the given file.
    func Start(ctx context.Context, file string) (context.Context, func() error, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top