Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 434 for sysdir (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/go/internal/modfetch/codehost/shell.go

    				continue
    			}
    			os.Stdout.Write(data)
    
    		case "zip":
    			if len(f) != 4 {
    				fmt.Fprintf(os.Stderr, "?usage: zip rev subdir output\n")
    				continue
    			}
    			subdir := f[2]
    			if subdir == "-" {
    				subdir = ""
    			}
    			rc, err := repo.ReadZip(f[1], subdir, 10<<20)
    			if err != nil {
    				fmt.Fprintf(os.Stderr, "?%s\n", err)
    				continue
    			}
    			data, err := io.ReadAll(rc)
    			rc.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.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