Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 370 for sysdir (0.23 sec)

  1. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentSourceSetIntegrationTest.groovy

                        source.srcDir "src/main/comp-a"
                    }
                    compB(LibrarySourceSet) {
                        source.srcDir "src/main/comp-b"
                    }
                }
                binaries {
                    bin(SampleBinary) {
                        sources {
                            binaryA(LibrarySourceSet) {
                                source.srcDir "src/main/binary-a"
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/custom-layout/groovy/build.gradle

    // tag::c-sources[]
                sources {
                    c {
                        source {
                            srcDir "src/source"
                            include "**/*.c"
                        }
                        exportedHeaders {
                            srcDir "src/include"
                        }
                    }
                }
    // end::c-sources[]
            }
            main(NativeExecutableSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1014 bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/gcimporter.go

    		// Don't require the source files to be present.
    		if abs, err := filepath.Abs(srcDir); err == nil { // see issue 14282
    			srcDir = abs
    		}
    		var bp *build.Package
    		bp, err = build.Import(path, srcDir, build.FindOnly|build.AllowBinary)
    		if bp.PkgObj == "" {
    			if bp.Goroot && bp.Dir != "" {
    				filename, err = lookupGorootExport(bp.Dir)
    				if err == nil {
    					_, err = os.Stat(filename)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_list_issue61415.txt

    go list -json -m --versions -e vcs-test.golang.org/git/issue61415.git/nested@has-nested
    cp stdout has-nested.json
    stdout '"Origin":'
    stdout '"VCS": "git"'
    stdout '"URL":'  # randomly-chosen vcweb localhost URL
    stdout '"Subdir": "nested"'
    stdout '"TagPrefix": "nested/"'
    stdout '"TagSum": "t1:47DEQpj8HBSa\+/TImW\+5JCeuQeRkm5NMpJWZG3hSuFU="'
    stdout '"Ref": "refs/tags/has-nested"'
    stdout '"Hash": "08a4fa6bb9c04ffba03b26ae427b0d6335d90a2a"'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 22:15:45 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/SimpleGeneratedJavaClassCompiler.java

        /**
         * Compiles generated Java source files.
         *
         * @param srcDir where the compiler will output the sources
         * @param dstDir where the compiler will output the class files
         * @param classes the classes to compile
         * @param classPath the classpath to use for compilation
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/buildlifecycle/taskCreationEvents/groovy/build.gradle

    tasks.whenTaskAdded { task ->
        task.ext.srcDir = 'src/main/java'
    }
    
    tasks.register('a')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 126 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/buildlifecycle/taskCreationEvents/kotlin/build.gradle.kts

    tasks.whenTaskAdded {
        extra["srcDir"] = "src/main/java"
    }
    
    val a by tasks.registering
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 143 bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PrebuiltLibrariesIntegrationTest.groovy

    apply plugin: 'cpp'
    model {
        repositories {
            libs1(PrebuiltLibraries) {
                nope {
                    headers.srcDir "not/here"
                }
            }
            libs2(PrebuiltLibraries) {
                hello {
                    headers.srcDir "libs/src/hello/headers"
                    binaries.withType(StaticLibraryBinary) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocatorTest.groovy

            result.component.baseDir == dir
        }
    
        def "locates windows SDK based on executables in path"() {
            def sdkDir = sdkDir("sdk")
    
            given:
            operatingSystem.findInPath("rc.exe") >> sdkDir.file("bin/rc.exe")
    
            when:
            def result = windowsSdkLocator.locateComponent(null)
    
            then:
            result.available
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/codehost/vcs.go

    	readZip       func(rev, subdir, remote, target string) []string                                   // cmd to read rev's subdir as zip file
    	doReadZip     func(ctx context.Context, dst io.Writer, workDir, rev, subdir, remote string) error // arbitrary function to read rev's subdir as zip file
    }
    
    var re = lazyregexp.New
    
    var vcsCmds = map[string]*vcsCmd{
    	"hg": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top