Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for chanbuf (0.12 sec)

  1. src/reflect/all_test.go

    	}
    
    	// check that type already in binary is found
    	type T1 int
    	checkSameType(t, ChanOf(BothDir, TypeOf(T1(1))), (chan T1)(nil))
    
    	// Check arrow token association in undefined chan types.
    	var left chan<- chan T
    	var right chan (<-chan T)
    	tLeft := ChanOf(SendDir, ChanOf(BothDir, TypeOf(T(""))))
    	tRight := ChanOf(BothDir, ChanOf(RecvDir, TypeOf(T(""))))
    	if tLeft != TypeOf(left) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  2. src/net/http/server.go

    	// written.
    	trailers []string
    
    	handlerDone atomic.Bool // set true when the handler exits
    
    	// Buffers for Date, Content-Length, and status code
    	dateBuf   [len(TimeFormat)]byte
    	clenBuf   [10]byte
    	statusBuf [3]byte
    
    	// closeNotifyCh is the channel returned by CloseNotify.
    	// TODO(bradfitz): this is currently (for Go 1.8) always
    	// non-nil. Make this lazily-created again as it used to be?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Append", Func, 0},
    		{"AppendSlice", Func, 0},
    		{"Array", Const, 0},
    		{"ArrayOf", Func, 5},
    		{"Bool", Const, 0},
    		{"BothDir", Const, 0},
    		{"Chan", Const, 0},
    		{"ChanDir", Type, 0},
    		{"ChanOf", Func, 1},
    		{"Complex128", Const, 0},
    		{"Complex64", Const, 0},
    		{"Copy", Func, 0},
    		{"DeepEqual", Func, 0},
    		{"Float32", Const, 0},
    		{"Float64", Const, 0},
    		{"Func", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg reflect, const Uint16 = 9
    pkg reflect, const Uint32 = 10
    pkg reflect, const Uint64 = 11
    pkg reflect, const Uint8 = 8
    pkg reflect, const Uintptr = 12
    pkg reflect, const UnsafePointer = 26
    pkg reflect, func ChanOf(ChanDir, Type) Type
    pkg reflect, func MakeFunc(Type, func([]Value) []Value) Value
    pkg reflect, func MapOf(Type, Type) Type
    pkg reflect, func Select([]SelectCase) (int, Value, bool)
    pkg reflect, func SliceOf(Type) Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top