Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 63 for buildtags (0.19 sec)

  1. 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)
  2. src/cmd/vet/doc.go

    	assign           check for useless assignments
    	atomic           check for common mistakes using the sync/atomic package
    	bools            check for common mistakes involving boolean operators
    	buildtag         check //go:build and // +build directives
    	cgocall          detect some violations of the cgo pointer passing rules
    	composites       check for unkeyed composite literals
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 00:17:30 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. 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)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultStaticLibraryBinarySpecTest.groovy

            binary.staticLibraryFile == outputFile
        }
    
        def "can convert binary to a native dependency"() {
            final binary = staticLibrary
            given:
            def lifecycleTask = Stub(Task)
            binary.buildTask = lifecycleTask
            binary.builtBy(Stub(Task))
    
            and:
            binary.staticLibraryFile = outputFile
    
            and:
            final headerDir = tmpDir.createDir("headerDir")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/modules.txt

    golang.org/x/tools/go/analysis/passes/asmdecl
    golang.org/x/tools/go/analysis/passes/assign
    golang.org/x/tools/go/analysis/passes/atomic
    golang.org/x/tools/go/analysis/passes/bools
    golang.org/x/tools/go/analysis/passes/buildtag
    golang.org/x/tools/go/analysis/passes/cgocall
    golang.org/x/tools/go/analysis/passes/composite
    golang.org/x/tools/go/analysis/passes/copylock
    golang.org/x/tools/go/analysis/passes/ctrlflow
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K 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/cmd/go/internal/work/exec.go

    	if cppflags, err = buildFlags("CPPFLAGS", "", p.CgoCPPFLAGS, checkCompilerFlags); err != nil {
    		return
    	}
    	if cflags, err = buildFlags("CFLAGS", DefaultCFlags, p.CgoCFLAGS, checkCompilerFlags); err != nil {
    		return
    	}
    	if cxxflags, err = buildFlags("CXXFLAGS", DefaultCFlags, p.CgoCXXFLAGS, checkCompilerFlags); err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/dist/test.go

    // ensures Writes are serialized. The caller should call flush() after Cmd exits.
    func (opts *goTest) bgCommand(t *tester, stdout, stderr io.Writer) (cmd *exec.Cmd, flush func()) {
    	build, run, pkgs, testFlags, setupCmd := opts.buildArgs(t)
    
    	// Combine the flags.
    	args := append([]string{"test"}, build...)
    	if t.compileOnly {
    		args = append(args, "-c", "-o", os.DevNull)
    	} else {
    		args = append(args, run...)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top