Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for BINARY (1.21 sec)

  1. src/cmd/go/internal/test/test.go

    	pkg.test -test.v -myflag testdata -test.cpuprofile=prof.out
    
    (The -x flag is removed because it applies only to the go command's
    execution, not to the test itself.)
    
    The test flags that generate profiles (other than for coverage) also
    leave the test binary in pkg.test for use when analyzing the profiles.
    
    When 'go test' runs a test binary, it does so from within the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    	tg.tempFile("src/p1/p1.go", `//go:binary-only-package
    
    		package p1
    	`)
    	tg.wantStale("p1", "binary-only packages are no longer supported", "p1 is binary-only, and this message should always be printed")
    	tg.runFail("install", "p1")
    	tg.grepStderr("binary-only packages are no longer supported", "did not report attempt to compile binary-only package")
    
    	tg.tempFile("src/p1/p1.go", `
    		package p1
    		import "fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    	if ch == nil {
    		ch = make(chan struct{})
    		installed[dir] = ch
    		go runInstall(dir, ch)
    	}
    	installedMu.Unlock()
    	return ch
    }
    
    // runInstall installs the library, package, or binary associated with pkg,
    // which is relative to $GOROOT/src.
    func runInstall(pkg string, ch chan struct{}) {
    	if pkg == "net" || pkg == "os/user" || pkg == "crypto/x509" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    // Annotate Ref in Prog with C types by parsing gcc debug output.
    // Conversion of debug output to Go types.
    
    package main
    
    import (
    	"bytes"
    	"debug/dwarf"
    	"debug/elf"
    	"debug/macho"
    	"debug/pe"
    	"encoding/binary"
    	"errors"
    	"flag"
    	"fmt"
    	"go/ast"
    	"go/parser"
    	"go/token"
    	"internal/xcoff"
    	"math"
    	"os"
    	"os/exec"
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    
    	"cmd/internal/quoted"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    		syntax.AndAnd: allBoolean,
    		syntax.OrOr:   allBoolean,
    	}
    }
    
    // If e != nil, it must be the binary expression; it may be nil for non-constant expressions
    // (when invoked for an assignment operation where the binary expression is implicit).
    func (check *Checker) binary(x *operand, e syntax.Expr, lhs, rhs syntax.Expr, op syntax.Operator) {
    	var y operand
    
    	check.expr(nil, x, lhs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    	"cmd/compile/internal/logopt"
    	"cmd/compile/internal/reflectdata"
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/obj/s390x"
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    	"encoding/binary"
    	"fmt"
    	"internal/buildcfg"
    	"io"
    	"math"
    	"math/bits"
    	"os"
    	"path/filepath"
    	"strings"
    )
    
    type deadValueChoice bool
    
    const (
    	leaveDeadValues  deadValueChoice = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    	if t.compileOnly {
    		// We need to run a subprocess to log metadata. Don't do that
    		// on compile-only runs.
    		return nil
    	}
    	t.out("Test execution environment.")
    	// Helper binary to print system metadata (CPU model, etc). This is a
    	// separate binary from dist so it need not build with the bootstrap
    	// toolchain.
    	//
    	// TODO(prattmic): If we split dist bootstrap and dist test then this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    	}
    
    	p.xnest = outer
    	return
    }
    
    // emphasize returns a string representation of x, with (top-level)
    // binary expressions emphasized by enclosing them in parentheses.
    func emphasize(x Expr) string {
    	s := String(x)
    	if op, _ := x.(*Operation); op != nil && op.Y != nil {
    		// binary expression
    		return "(" + s + ")"
    	}
    	return s
    }
    
    func (p *parser) ifStmt() *IfStmt {
    	if trace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		fpstore2       = regInfo{inputs: []regMask{gpspsbg, gpg, fp}}
    		readflags      = regInfo{inputs: nil, outputs: []regMask{gp}}
    		prefreg        = regInfo{inputs: []regMask{gpspsbg}}
    	)
    	ops := []opData{
    		// binary ops
    		{name: "ADCSflags", argLength: 3, reg: gp2flags1flags, typ: "(UInt64,Flags)", asm: "ADCS", commutative: true}, // arg0+arg1+carry, set flags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "FMOVDstoreidx", argLength: 4, reg: fpstoreidx, asm: "FMOVD", aux: "SymOff", symEffect: "Write"},                 // fp64 indexed by i store
    
    		// binary ops
    		{name: "ADD", argLength: 2, reg: gp21sp, asm: "ADD", commutative: true, clobberFlags: true},                                                                  // arg0 + arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
Back to top