Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 140 for Vong (0.24 sec)

  1. src/bytes/buffer_test.go

    			readBytes, _ := buf.Read(tmp)
    			yBytes := Repeat(y, growLen)
    			allocs := testing.AllocsPerRun(100, func() {
    				buf.Grow(growLen)
    				buf.Write(yBytes)
    			})
    			// Check no allocation occurs in write, as long as we're single-threaded.
    			if allocs != 0 {
    				t.Errorf("allocation occurred during write")
    			}
    			// Check that buffer has correct data.
    			if !Equal(buf.Bytes()[0:startLen-readBytes], xBytes[readBytes:]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:31:36 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/bufio/bufio.go

    // [Reader.ReadBytes]('\n') or [Reader.ReadString]('\n') instead or use a [Scanner].
    //
    // ReadLine tries to return a single line, not including the end-of-line bytes.
    // If the line was too long for the buffer then isPrefix is set and the
    // beginning of the line is returned. The rest of the line will be returned
    // from future calls. isPrefix will be false when returning the last fragment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/unify.go

    		x, y = y, x
    	}
    
    	// Unification will fail if we match a defined type against a type literal.
    	// If we are matching types in an assignment, at the top-level, types with
    	// the same type structure are permitted as long as at least one of them
    	// is not a defined type. To accommodate for that possibility, we continue
    	// unification with the underlying type of a defined type if the other type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/386Ops.go

    //    filled by sign-extending the used portion.  Users of AuxInt which interpret
    //    AuxInt as unsigned (e.g. shifts) must be careful.
    
    // Suffixes encode the bit width of various instructions.
    // L (long word) = 32 bit
    // W (word)      = 16 bit
    // B (byte)      = 8 bit
    
    // copied from ../../x86/reg.go
    var regNames386 = []string{
    	"AX",
    	"CX",
    	"DX",
    	"BX",
    	"SP",
    	"BP",
    	"SI",
    	"DI",
    	"X0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  5. doc/asm.html

    look in the source for the <code>obj</code> support library for
    that architecture, located in the directory <code>src/cmd/internal/obj/arm</code>.
    In that directory is a file <code>a.out.go</code>; it contains
    a long list of constants starting with <code>A</code>, like this:
    </p>
    
    <pre>
    const (
    	AAND = obj.ABaseARM + obj.A_ARCHSPECIFIC + iota
    	AEOR
    	ASUB
    	ARSB
    	AADD
    	...
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    			// m has already been enqueued for loading. Since unpruned loading may
    			// follow cycles in the requirement graph, we need to return early
    			// to avoid making the load queue infinitely long.
    			return
    		}
    
    		loadQueue.Add(func() {
    			summary, err := loadOne(m)
    			if err != nil {
    				return // findError will report the error later.
    			}
    
    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/go/internal/modload/init.go

    func VendorDir() string {
    	if inWorkspaceMode() {
    		return filepath.Join(filepath.Dir(WorkFilePath()), "vendor")
    	}
    	// Even if -mod=vendor, we could be operating with no mod root (and thus no
    	// vendor directory). As long as there are no dependencies that is expected
    	// to work. See script/vendor_outside_module.txt.
    	modRoot := MainModules.ModRoot(MainModules.mustGetSingleMainModule())
    	if modRoot == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. doc/go_spec.html

    <p>
    Function literals are <i>closures</i>: they may refer to variables
    defined in a surrounding function. Those variables are then shared between
    the surrounding function and the function literal, and they survive as long
    as they are accessible.
    </p>
    
    
    <h3 id="Primary_expressions">Primary expressions</h3>
    
    <p>
    Primary expressions are the operands for unary and binary expressions.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    //    AuxInt as unsigned (e.g. shifts) must be careful.
    //  - All SymOff opcodes require their offset to fit in an int32.
    
    // Suffixes encode the bit width of various instructions.
    // Q (quad word) = 64 bit
    // L (long word) = 32 bit
    // W (word)      = 16 bit
    // B (byte)      = 8 bit
    // D (double)    = 64 bit float
    // S (single)    = 32 bit float
    
    // copied from ../../amd64/reg.go
    var regNamesAMD64 = []string{
    	"AX",
    	"CX",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    		p.SFiles,
    		p.SwigFiles,
    		p.SwigCXXFiles,
    		p.SysoFiles,
    		p.TestGoFiles,
    		p.XTestGoFiles,
    	)
    
    	// EmbedFiles may overlap with the other files.
    	// Dedup, but delay building the map as long as possible.
    	// Only files in the current directory (no slash in name)
    	// need to be checked against the files variable above.
    	var have map[string]bool
    	for _, file := range p.EmbedFiles {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top