Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,348 for BuildX (0.27 sec)

  1. src/cmd/go/internal/modcmd/graph.go

    	`,
    	Run: runGraph,
    }
    
    var (
    	graphGo goVersionFlag
    )
    
    func init() {
    	cmdGraph.Flag.Var(&graphGo, "go", "")
    	cmdGraph.Flag.BoolVar(&cfg.BuildX, "x", false, "")
    	base.AddChdirFlag(&cmdGraph.Flag)
    	base.AddModCommonFlags(&cmdGraph.Flag)
    }
    
    func runGraph(ctx context.Context, cmd *base.Command, args []string) {
    	modload.InitWorkfile()
    
    	if len(args) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. prow/lib.sh

      wget  -q "${LINUX_DIST_URL}" -P "${dir}"
      tar -xzf "${dir}/istio-${tag}-linux.tar.gz" -C "${dir}"
    }
    
    function buildx-create() {
      WD=$(dirname "$0")
      WD=$(cd "$WD" || exit; pwd)
      ROOT=$(dirname "$WD")
      "$ROOT/prow/buildx-create"
    }
    
    function build_images() {
      SELECT_TEST="${1}"
    
      # Build just the images needed for tests
      targets="docker.pilot docker.proxyv2 "
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. tools/docker-builder/common.go

    		// Base distribution picks which variant to build
    		"BASE_DISTRIBUTION": baseDist,
    		// Additional metadata injected into some images
    		"proxy_version":    args.ProxyVersion,
    		"ztunnel_version":  args.ZtunnelVersion,
    		"istio_version":    args.IstioVersion,
    		"VM_IMAGE_NAME":    vmImageName(target),
    		"VM_IMAGE_VERSION": vmImageVersion(target),
    	}
    	// Only needed for crane - buildx does it automagically
    	if architecture != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. cluster/images/etcd/README.md

    Windows images can be built on Linux nodes due to `docker buildx`, but they will
    only be created and pushed when using the `all-push` make target.
    
    #### How to release
    
    First, update `ETCD_VERSION` and `REVSION` in the `Makefile`.
    
    Next, build and test the image:
    
    ```console
    $ make build test
    ```
    
    Last, build and push the docker images for all supported architectures.
    
    ```console
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 12:41:39 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/gccgo.go

    			return "", err
    		}
    		if cfg.BuildN || cfg.BuildX {
    			sh.ShowCmd("", "ar d %s _cgo_flags", newArchive)
    			if cfg.BuildN {
    				// TODO(rsc): We could do better about showing the right _cgo_flags even in -n mode.
    				// Either the archive is already built and we can read them out,
    				// or we're printing commands to build the archive and can
    				// forward the _cgo_flags directly to this step.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/cmd/go/internal/base/base.go

    // If the command fails, Run reports the error using Errorf.
    func Run(cmdargs ...any) {
    	cmdline := str.StringList(cmdargs...)
    	if cfg.BuildN || cfg.BuildX {
    		fmt.Printf("%s\n", strings.Join(cmdline, " "))
    		if cfg.BuildN {
    			return
    		}
    	}
    
    	cmd := exec.Command(cmdline[0], cmdline[1:]...)
    	cmd.Stdout = os.Stdout
    	cmd.Stderr = os.Stderr
    	if err := cmd.Run(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/tool/tool.go

    		if e, ok := err.(*exec.ExitError); !ok || !e.Exited() || cfg.BuildX {
    			fmt.Fprintf(os.Stderr, "go tool %s: %s\n", toolName, err)
    		}
    		base.SetExitStatus(1)
    		return
    	}
    }
    
    // listTools prints a list of the available tools in the tools directory.
    func listTools() {
    	f, err := os.Open(build.ToolDir)
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "go: no tool directory: %s\n", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 18:02:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modcmd/tidy.go

    	tidyCompat goVersionFlag // go version for which the tidied go.mod and go.sum files should be “compatible”
    )
    
    func init() {
    	cmdTidy.Flag.BoolVar(&cfg.BuildV, "v", false, "")
    	cmdTidy.Flag.BoolVar(&cfg.BuildX, "x", false, "")
    	cmdTidy.Flag.BoolVar(&tidyE, "e", false, "")
    	cmdTidy.Flag.BoolVar(&tidyDiff, "diff", false, "")
    	cmdTidy.Flag.Var(&tidyGo, "go", "")
    	cmdTidy.Flag.Var(&tidyCompat, "compat", "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/buildid.go

    					}
    
    					// Poison a.Target to catch uses later in the build.
    					a.Target = "DO NOT USE - main build pseudo-cache Target"
    					a.built = "DO NOT USE - main build pseudo-cache built"
    					if a.json != nil {
    						a.json.BuildID = a.buildID
    					}
    					return true
    				}
    				// Otherwise restore old build ID for main build.
    				a.buildID = oldBuildID
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/run/run.go

    used by debuggers, to reduce build time. To include debugger information in
    the binary, use 'go build'.
    
    The exit status of Run is not the exit status of the compiled binary.
    
    For more about build flags, see 'go help build'.
    For more about specifying packages, see 'go help packages'.
    
    See also: go build.
    	`,
    }
    
    func init() {
    	CmdRun.Run = runRun // break init loop
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top