Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,348 for BuildX (0.17 sec)

  1. tools/docker-builder/types.go

    // is not a unique variant though. Currently, it represents DebugVariant.
    // If both DebugVariant and DefaultVariant are built, there will be a single build but multiple tags
    const (
    	// PrimaryVariant is the variant that DefaultVariant actually builds
    	PrimaryVariant = DebugVariant
    
    	DefaultVariant    = "default"
    	DebugVariant      = "debug"
    	DistrolessVariant = "distroless"
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/build_test.go

    // See https://golang.org/issue/18878.
    func TestRespectSetgidDir(t *testing.T) {
    	// Check that `cp` is called instead of `mv` by looking at the output
    	// of `(*Shell).ShowCmd` afterwards as a sanity check.
    	cfg.BuildX = true
    	var cmdBuf strings.Builder
    	sh := NewShell("", func(a ...any) (int, error) {
    		return cmdBuf.WriteString(fmt.Sprint(a...))
    	})
    
    	setgiddir, err := os.MkdirTemp("", "SetGroupID")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. build/lib/release.sh

            local build_log="${docker_build_path}/build.log"
            if ! DOCKER_CLI_EXPERIMENTAL=enabled "${DOCKER[@]}" buildx build \
              -f "${docker_file_path}" \
              --platform linux/"${arch}" \
              --load ${docker_build_opts:+"${docker_build_opts}"} \
              -t "${docker_image_tag}" \
              --build-arg BASEIMAGE="${base_image}" \
              --build-arg SETCAP_IMAGE="${KUBE_BUILD_SETCAP_IMAGE}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. Makefile.core.mk

    export BOOKINFO_VERSION ?= 1.18.0
    
    .PHONY: bookinfo.build bookinfo.push
    
    bookinfo.build:
    	@prow/buildx-create
    	@BOOKINFO_TAG=${BOOKINFO_VERSION} BOOKINFO_HUB=${HUB} samples/bookinfo/src/build-services.sh
    
    bookinfo.push: MULTI_ARCH=true
    bookinfo.push:
    	@prow/buildx-create
    	@BOOKINFO_TAG=${BOOKINFO_VERSION} BOOKINFO_HUB=${HUB} samples/bookinfo/src/build-services.sh --push
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. build/common.sh

    # and build image.  This is especially useful for automated build systems like
    # Jenkins.
    #
    # Increment/change this number if you change the build image (anything under
    # build/build-image) or change the set of volumes in the data container.
    KUBE_BUILD_IMAGE_VERSION_BASE="$(cat "${KUBE_ROOT}/build/build-image/VERSION")"
    readonly KUBE_BUILD_IMAGE_VERSION_BASE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyCycleIntegrationTest.groovy

            """
            includedBuilds << buildE
    
            when:
            dependency(buildA, "org.test:buildD-impl:1.0")
            dependency(buildA, "org.test:buildE-impl:1.0")
    
            then:
            resolveSucceeds(":build")
    
            assertTaskExecuted(":buildD", ":buildD-api:jar")
            assertTaskExecuted(":buildE", ":buildE-api:jar")
            assertTaskExecuted(":buildD", ":buildD-impl:jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/action.go

    			if a2.Package == nil || (a2.Mode != "build-install" && a2.Mode != "build") || haveDep[a2.Package.ImportPath] {
    				continue
    			}
    			haveDep[a2.Package.ImportPath] = true
    			a.Deps = append(a.Deps, a2)
    			if a2.Mode == "build-install" {
    				a2 = a2.Deps[0] // walk children of "build" action
    			}
    			workq = append(workq, a2)
    		}
    	}
    
    	// If this is go build -linkshared, then the link depends on the shared libraries
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/git_test.go

    	} else {
    		return "file:///" + filepath.ToSlash(localGitRepo)
    	}
    }
    
    var (
    	localGitURLOnce sync.Once
    	localGitURLErr  error
    )
    
    func testMain(m *testing.M) (err error) {
    	cfg.BuildX = testing.Verbose()
    
    	srv, err := vcstest.NewServer()
    	if err != nil {
    		return err
    	}
    	defer func() {
    		if closeErr := srv.Close(); err == nil {
    			err = closeErr
    		}
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/generate/generate.go

    			g.errorf("no arguments to directive")
    		}
    		if words[0] == "-command" {
    			g.setShorthand(words)
    			continue
    		}
    		// Run the command line.
    		if cfg.BuildN || cfg.BuildX {
    			fmt.Fprintf(os.Stderr, "%s\n", strings.Join(words, " "))
    		}
    		if cfg.BuildN {
    			continue
    		}
    		g.exec(words)
    	}
    	if err != nil && err != io.EOF {
    		g.errorf("error reading %s: %s", base.ShortPath(g.path), err)
    	}
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modcmd/download.go

    		// modules that aren't needed to build packages in the main module. This is
    		// usually not intended, so don't save sums for downloaded modules
    		// (golang.org/issue/45332). We do still fix inconsistencies in go.mod
    		// though.
    		//
    		// TODO(#64008): In the future, report an error if go.mod or go.sum need to
    		// be updated after loading the build list. This may require setting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
Back to top