Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for buildtags (0.12 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SmokeTestGradleRunner.groovy

            }
    
            @Override
            String getOutput() {
                return delegate.output
            }
    
            @Override
            List<BuildTask> getTasks() {
                return delegate.tasks
            }
    
            @Override
            List<BuildTask> tasks(TaskOutcome outcome) {
                return delegate.tasks(outcome)
            }
    
            @Override
            List<String> taskPaths(TaskOutcome outcome) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentBinariesIntegrationTest.groovy

            when:
            buildFile << withSimpleComponentBinaries()
            buildFile << '''
                model {
                    tasks {
                        tellTaskName(Task) {
                            doLast {
                                def binaries = $.binaries
                                assert binaries.sampleLibBinary.buildTask instanceof Task
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

        }
    
        private void withArgs(List<String> args) {
            buildArgs = args as List
        }
    
        private void checkDependencies() {
            resolve.prepare()
            execute(buildA, ":checkDeps", buildArgs)
        }
    
        private void checkDependenciesFails() {
            resolve.prepare()
            fails(buildA, ":checkDeps", buildArgs)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. hack/lib/golang.sh

              -coverpkg k8s.io/... \
              "${build_args[@]}" \
              -tags coverage \
              "${package}"
          else
            uncovered+=("${package}")
          fi
        done
        if [[ "${#uncovered[@]}" != 0 ]]; then
          V=2 kube::log::info "Building ${uncovered[*]} without coverage..."
          GOPROXY=off go install "${build_args[@]}" "${uncovered[@]}"
        else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  5. build/common.sh

      kube::util::ensure-docker-buildx
    
      local -r image=$1
      local -r context_dir=$2
      local -r pull="${3:-true}"
      local build_args
      IFS=" " read -r -a build_args <<< "$4"
      readonly build_args
      local -ra build_cmd=("${DOCKER[@]}" buildx build --load -t "${image}" "--pull=${pull}" "${build_args[@]}" "${context_dir}")
    
      kube::log::status "Building Docker image ${image}"
      local docker_output
    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. src/cmd/compile/internal/ssa/compile.go

    var (
    	checkEnabled  = false
    	checkRandSeed = 0
    )
    
    // Debug output
    var IntrinsicsDebug int
    var IntrinsicsDisable bool
    
    var BuildDebug int
    var BuildTest int
    var BuildStats int
    var BuildDump map[string]bool = make(map[string]bool) // names of functions to dump after initial build of ssa
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. src/cmd/vet/vet_test.go

    	cmd.Env = os.Environ()
    	return cmd
    }
    
    func TestVet(t *testing.T) {
    	t.Parallel()
    	for _, pkg := range []string{
    		"appends",
    		"asm",
    		"assign",
    		"atomic",
    		"bool",
    		"buildtag",
    		"cgo",
    		"composite",
    		"copylock",
    		"deadcode",
    		"directive",
    		"httpresponse",
    		"lostcancel",
    		"method",
    		"nilfunc",
    		"print",
    		"shift",
    		"slog",
    		"structtag",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. src/runtime/syscall_windows_test.go

    }
    
    func getCallbackTestFuncs() []cbFunc {
    	if regs := runtime.SetIntArgRegs(-1); regs > 0 {
    		return cbFuncsRegABI
    	}
    	return cbFuncs
    }
    
    type cbDLL struct {
    	name      string
    	buildArgs func(out, src string) []string
    }
    
    func (d *cbDLL) makeSrc(t *testing.T, path string) {
    	f, err := os.Create(path)
    	if err != nil {
    		t.Fatalf("failed to create source file: %v", err)
    	}
    	defer f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
Back to top