Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 317 for sysdir (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/os/removeall_test.go

    	t.Parallel()
    
    	tempDir := t.TempDir()
    	subdir := filepath.Join(tempDir, "x")
    	if err := Mkdir(subdir, 0); err != nil {
    		t.Fatal(err)
    	}
    
    	// If an error occurs make it more likely that removing the
    	// temporary directory will succeed.
    	defer Chmod(subdir, 0777)
    
    	if err := RemoveAll(subdir); err != nil {
    		t.Fatal(err)
    	}
    
    	if _, err := Stat(subdir); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:21:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeBinariesIntegrationTest.groovy

            main(NativeExecutableSpec) {
                sources {
                    c {
                        source.srcDir "src/test/c"
                        exportedHeaders.srcDir "src/test/headers"
                    }
                    cpp {
                        source.srcDir "src/test/cpp"
                        exportedHeaders.srcDir "src/test/headers"
                    }
                }
            }
        }
    }
    """
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ProjectLayoutIntegrationTest.groovy

    sourceSets.each {
        configure(it) {
            resources.srcDir 'src'
            resources.srcDir 'src/resources'
            resources.include "org/gradle/\$name/**"
            java.srcDir 'src'
            java.srcDir 'src/java'
            java.include "org/gradle/\$name/**/*.java"
            groovy.srcDir 'src'
            groovy.srcDir 'src/groovy'
            groovy.include "org/gradle/\$name/**/*.groovy"
            scala.srcDir 'src'
            scala.srcDir 'src/scala'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top