Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for street (0.12 sec)

  1. src/cmd/cgo/gcc.go

    				oldType.Go = sub.Go
    			}
    		}
    		// Check for non-pointer "struct <tag>{...}; typedef struct <tag> *<name>"
    		// typedefs that should be marked Incomplete.
    		if ptr, ok := dt.Type.(*dwarf.PtrType); ok {
    			if strct, ok := ptr.Type.(*dwarf.StructType); ok {
    				if c.badStructPointerTypedef(dt.Name, strct) {
    					c.incompleteStructs[strct.StructName] = true
    					// Make sure we update any previously computed type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. src/bytes/bytes_test.go

    // slices before invoking the functions.
    
    var abcd = "abcd"
    var faces = "☺☻☹"
    var commas = "1,2,3,4"
    var dots = "1....2....3....4"
    
    type BinOpTest struct {
    	a string
    	b string
    	i int
    }
    
    func TestEqual(t *testing.T) {
    	// Run the tests and check for allocation at the same time.
    	allocs := testing.AllocsPerRun(10, func() {
    		for _, tt := range compareTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/bufio/bufio_test.go

    			t.Fatalf("on line %d/2; ReadLine=%#v, %v; want non-nil line or Error, but not both",
    				i+1, l, err)
    		}
    	}
    }
    
    type readLineResult struct {
    	line     []byte
    	isPrefix bool
    	err      error
    }
    
    var readLineNewlinesTests = []struct {
    	input  string
    	expect []readLineResult
    }{
    	{"012345678901234\r\n012345678901234\r\n", []readLineResult{
    		{[]byte("012345678901234"), true, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    var SocketDisableIPv6 bool
    
    type RawSockaddrInet4 struct {
    	Family uint16
    	Port   uint16
    	Addr   [4]byte /* in_addr */
    	Zero   [8]uint8
    }
    
    type RawSockaddrInet6 struct {
    	Family   uint16
    	Port     uint16
    	Flowinfo uint32
    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    }
    
    type RawSockaddr struct {
    	Family uint16
    	Data   [14]int8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	{122, "ENODATA", "no message on stream head read q"},
    	{123, "ENOSTR", "fd not associated with a stream"},
    	{124, "ENOTSUP", "unsupported attribute value"},
    	{125, "EMULTIHOP", "multihop is not allowed"},
    	{126, "ENOLINK", "the server link has been severed"},
    	{127, "EOVERFLOW", "value too large to be stored in data type"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    				switch f {
    				case "lazymod=log":
    					debug.PrintStack()
    					fmt.Fprintf(os.Stderr, "go: read full module graph.\n")
    				case "lazymod=strict":
    					debug.PrintStack()
    					base.Fatalf("go: read full module graph (forbidden by GODEBUG=lazymod=strict).")
    				}
    			}
    		})
    	}
    
    	var graphRoots []module.Version
    	if inWorkspaceMode() {
    		graphRoots = roots
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	BPF_TCP_NEW_SYN_RECV = -1
    	BPF_TCP_MAX_STATES   = -2
    )
    
    type nwmTriplet struct {
    	offset uint32
    	length uint32
    	number uint32
    }
    
    type nwmQuadruplet struct {
    	offset uint32
    	length uint32
    	number uint32
    	match  uint32
    }
    
    type nwmHeader struct {
    	ident       uint32
    	length      uint32
    	version     uint16
    	nwmType     uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    	writeCoverMetaAct *work.Action
    
    	// sequencing of json start messages, to preserve test order
    	prev <-chan struct{} // wait to start until prev is closed
    	next chan<- struct{} // close next once the next test can start.
    }
    
    // runCache is the cache for running a single test.
    type runCache struct {
    	disableCache bool // cache should be disabled for this run
    
    	buf *bytes.Buffer
    	id1 cache.ActionID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm/asm5.go

    type ctxt5 struct {
    	ctxt       *obj.Link
    	newprog    obj.ProgAlloc
    	cursym     *obj.LSym
    	printp     *obj.Prog
    	blitrl     *obj.Prog
    	elitrl     *obj.Prog
    	autosize   int64
    	instoffset int64
    	pc         int64
    	pool       struct {
    		start uint32
    		size  uint32
    		extra uint32
    	}
    }
    
    type Optab struct {
    	as       obj.As
    	a1       uint8
    	a2       int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    // There are two exported entry points into package loading — LoadPackages and
    // ImportFromFiles — both implemented in terms of loadFromRoots, which itself
    // manipulates an instance of the loader struct.
    //
    // Although most of the loading state is maintained in the loader struct,
    // one key piece - the build list - is a global, so that it can be modified
    // separate from the loading operation, such as during "go get"
    // upgrades/downgrades or in "go mod" operations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top