Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for oplus (0.11 sec)

  1. src/cmd/go/alldocs.go

    //
    //	-buildmode=c-archive
    //		Build the listed main package, plus all packages it imports,
    //		into a C archive file. The only callable symbols will be those
    //		functions exported using a cgo //export comment. Requires
    //		exactly one main package to be listed.
    //
    //	-buildmode=c-shared
    //		Build the listed main package, plus all packages it imports,
    //		into a C shared library. The only callable symbols will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    }
    
    // LambdaAuto is a lambda auto parameter.
    type LambdaAuto struct {
    	Index int
    }
    
    func (la *LambdaAuto) print(ps *printState) {
    	// We print the index plus 1 because that is what the standard
    	// demangler does.
    	if ps.llvmStyle {
    		ps.writeString("auto")
    	} else {
    		fmt.Fprintf(&ps.buf, "auto:%d", la.Index+1)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    	s.SetType(sym.SBUILDINFO)
    	s.SetAlign(16)
    	// The \xff is invalid UTF-8, meant to make it less likely
    	// to find one of these accidentally.
    	const prefix = "\xff Go buildinf:" // 14 bytes, plus 2 data bytes filled in below
    	data := make([]byte, 32)
    	copy(data, prefix)
    	data[len(prefix)] = byte(ctxt.Arch.PtrSize)
    	data[len(prefix)+1] = 0
    	if ctxt.Arch.ByteOrder == binary.BigEndian {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  4. src/net/http/transport_test.go

    // a client doing two subsequent requests could end up on different
    // connections. It's somewhat harmless but enough tests assume it's
    // not true in order to test other things that it's worth fixing.
    // Plus it's nice to be consistent and not have timing-dependent
    // behavior.
    func TestTransportReuseConnEmptyResponseBody(t *testing.T) {
    	run(t, testTransportReuseConnEmptyResponseBody)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top