Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 973 for vflag (0.05 sec)

  1. src/make.bat

    for /f "tokens=*" %%g in ('where...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/make.rc

    }
    
    # Clean old generated file that will cause problems in the build.
    rm -f ./runtime/runtime_defs.go
    
    # Determine the host compiler toolchain.
    eval `{grep '^(CC|LD|O)=' /$objtype/mkfile}
    
    vflag=()
    if(~ $1 -v) {
    	vflag=(-v)
    	shift
    }
    
    fn bootstrapenv {
    	GOROOT=$GOROOT_BOOTSTRAP GO111MODULE=off GOENV=off GOOS=() GOARCH=() GOEXPERIMENT=() GOFLAGS=() $*
    }
    
    bootgo = 1.20.6
    GOROOT = `{cd .. && pwd}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/cmd/dist/util.go

    		}
    		*c = count(n)
    	}
    	return nil
    }
    
    func (c *count) IsBoolFlag() bool {
    	return true
    }
    
    func xflagparse(maxargs int) {
    	flag.Var((*count)(&vflag), "v", "verbosity")
    	flag.Parse()
    	if maxargs >= 0 && flag.NArg() > maxargs {
    		flag.Usage()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 17:50:29 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. src/make.bash

    	export CGO_ENABLED=0
    fi
    
    # Clean old generated file that will cause problems in the build.
    rm -f ./runtime/runtime_defs.go
    
    # Finally!  Run the build.
    
    verbose=false
    vflag=""
    if [[ "$1" == "-v" ]]; then
    	verbose=true
    	vflag=-v
    	shift
    fi
    
    goroot_bootstrap_set=${GOROOT_BOOTSTRAP+"true"}
    if [[ -z "$GOROOT_BOOTSTRAP" ]]; then
    	GOROOT_BOOTSTRAP="$HOME/go1.4"
    	for d in sdk/go$bootgo go$bootgo; do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    	var debug, distpack, force, noBanner, noClean bool
    	flag.BoolVar(&rebuildall, "a", rebuildall, "rebuild all")
    	flag.BoolVar(&debug, "d", debug, "enable debugging of bootstrap process")
    	flag.BoolVar(&distpack, "distpack", distpack, "write distribution files to pkg/distpack")
    	flag.BoolVar(&force, "force", force, "build even if the port is marked as broken")
    	flag.BoolVar(&noBanner, "no-banner", noBanner, "do not print banner")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/cmd/dist/buildtool.go

    	// such as in cmd/internal/notsha256.
    	cmd := []string{
    		pathf("%s/bin/go", goroot_bootstrap),
    		"install",
    		"-tags=math_big_pure_go compiler_bootstrap purego",
    	}
    	if vflag > 0 {
    		cmd = append(cmd, "-v")
    	}
    	if tool := os.Getenv("GOBOOTSTRAP_TOOLEXEC"); tool != "" {
    		cmd = append(cmd, "-toolexec="+tool)
    	}
    	cmd = append(cmd, "bootstrap/cmd/...")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. src/go/printer/testdata/comments.golden

    func _() {
    	var finput *bufio.Reader	// input file
    	var stderr *bufio.Writer
    	var ftable *bufio.Writer	// y.go file
    	var foutput *bufio.Writer	// y.output file
    
    	var oflag string	// -o [y.go]		- y.go file
    	var vflag string	// -v [y.output]	- y.output file
    	var lflag bool		// -l			- disable line directives
    }
    
    // Trailing white space in comments should be trimmed
    func _() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  8. src/go/printer/testdata/comments.input

    var	finput		*bufio.Reader			// input file
    var	stderr		*bufio.Writer
    var	ftable		*bufio.Writer			// y.go file
    var	foutput		*bufio.Writer			// y.output file
    
    var	oflag		string				// -o [y.go]		- y.go file
    var	vflag		string				// -v [y.output]	- y.output file
    var	lflag		bool				// -l			- disable line directives
    }
    
    // Trailing white space in comments should be trimmed
    func _() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    	flag.BoolVar(&noRebuild, "no-rebuild", false, "overrides -rebuild (historical dreg)")
    	flag.BoolVar(&t.keepGoing, "k", false, "keep going even when error occurred")
    	flag.BoolVar(&t.race, "race", false, "run in race builder mode (different set of tests)")
    	flag.BoolVar(&t.compileOnly, "compile-only", false, "compile tests, but don't run them")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_hurd_386.go

    package unix
    
    const (
    	TIOCGETA = 0x62251713
    )
    
    type Winsize struct {
    	Row    uint16
    	Col    uint16
    	Xpixel uint16
    	Ypixel uint16
    }
    
    type Termios struct {
    	Iflag  uint32
    	Oflag  uint32
    	Cflag  uint32
    	Lflag  uint32
    	Cc     [20]uint8
    	Ispeed int32
    	Ospeed int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 447 bytes
    - Viewed (0)
Back to top