Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for subdir (0.21 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            when:
            run 'copy'
    
            then:
            file('dest').assertHasDescendants(
                'transformedAgain/transformed/subdir/one/one.a',
                'transformedAgain/transformed/subdir/two/two.a',
                'subdir/one',
                'subdir/two'
            )
        }
    
        def "include exclude with CopySpec"() {
            given:
            buildScript '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    }
    
    func (t *tester) registerCgoTests(heading string) {
    	cgoTest := func(variant string, subdir, linkmode, buildmode string, opts ...registerTestOpt) *goTest {
    		gt := &goTest{
    			variant:   variant,
    			pkg:       "cmd/cgo/internal/" + subdir,
    			buildmode: buildmode,
    		}
    		var ldflags []string
    		if linkmode != "auto" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/go/build/build.go

    	default: // "", "on", "auto", anything else
    		// Maybe use modules.
    	}
    
    	if srcDir != "" {
    		var absSrcDir string
    		if filepath.IsAbs(srcDir) {
    			absSrcDir = srcDir
    		} else if ctxt.Dir != "" {
    			return fmt.Errorf("go/build: Dir is non-empty, so relative srcDir is not allowed: %v", srcDir)
    		} else {
    			// Find the absolute source directory. hasSubdir does not handle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    			return addlibpath(ctxt, "internal", "internal", pname, name, "", zerofp)
    		}
    		ctxt.Logf("loadinternal: cannot find %s\n", name)
    		return nil
    	}
    
    	for _, libdir := range ctxt.Libdir {
    		if ctxt.linkShared {
    			shlibname := filepath.Join(libdir, name+".shlibname")
    			if ctxt.Debugvlog != 0 {
    				ctxt.Logf("searching for %s.a in %s\n", name, shlibname)
    			}
    			if _, err := os.Stat(shlibname); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. configure.py

          syslibs = ','.join(sorted(syslibs.split(',')))
        else:
          syslibs = ','.join(sorted(syslibs.split()))
        write_action_env_to_bazelrc('TF_SYSTEM_LIBS', syslibs)
    
      for varname in ('PREFIX', 'LIBDIR', 'INCLUDEDIR', 'PROTOBUF_INCLUDE_PATH'):
        if varname in environ_cp:
          write_to_bazelrc('build --define=%s=%s' % (varname, environ_cp[varname]))
    
    
    def set_windows_build_flags(environ_cp):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    			// test packages, and all the run actions for these
    			// packages will depend on it. Motivating example:
    			// supposed we have a top level directory with three
    			// package subdirs, "a", "b", and "c", and
    			// from the top level, a user runs "go test -coverpkg=./... ./...".
    			// This will result in (roughly) the following action graph:
    			//
    			//	build("a")       build("b")         build("c")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top