Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for sourcesPath (0.43 sec)

  1. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    gradleScriptPath.description = "Resolves to the Gradle start scripts (bin/*) - automatically adds dependency to the :launcher project"
    val sourcesPath by sourcesResolver(listOf(coreRuntimeOnly, pluginsRuntimeOnly))
    sourcesPath.description = "Resolves the source code of all Gradle modules Jars (required for the All distribution)"
    val docsPath by docsResolver(":docs")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    	notSaved := map[string]string{
    		// Not saved in settings, but present in URLs.
    		"SampleIndex": "sample_index",
    
    		// Following fields are also not placed in URLs.
    		"Output":     "output",
    		"SourcePath": "source_path",
    		"TrimPath":   "trim_path",
    		"DivideBy":   "divide_by",
    	}
    
    	// choices holds the list of allowed values for config fields that can
    	// take on one of a bounded set of values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            Collection<File> sourcepath = compileOptions.getSourcepath();
            boolean emptySourcePath = sourcepath == null || sourcepath.isEmpty();
    
            if (compilerArgs.contains("--module-source-path")) {
                if (!emptySourcePath) {
                    LOGGER.warn("You specified both --module-source-path and a sourcepath. These options are mutually exclusive. Ignoring sourcepath.");
                }
                return;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilderTest.groovy

            expect:
            builder.build() == defaultOptions
        }
    
        def "generates -sourcepath option"() {
            def file1 = new File("/lib/lib1.jar")
            def file2 = new File("/lib/lib2.jar")
            def fc = [file1, file2]
            spec.compileOptions.sourcepath = fc
            def expected = ["-g", "-sourcepath", GUtil.asPath(fc), "-proc:none", USE_UNSHARED_COMPILER_TABLE_OPTION, "-classpath", ""]
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:36 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/internal/IsolatedProjectsSafeKotlinDslScriptsModelBuilder.kt

            val classPath = base.nonProjectScriptPaths.bin + it.classPath
            val gradleKotlinDslJar = classPath.filter(::isGradleKotlinDslJar)
            val sourcePath = gradleKotlinDslJar + base.nonProjectScriptPaths.src + it.sourcePath
            buildOutputModel(it.scriptFile, classPath, sourcePath, base.implicitImports, base.classPathModeExceptions)
        }
    }
    
    
    private
    fun buildScriptModelsInHierarchy(
        rootProject: ProjectInternal,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinBuildScriptModelCrossVersionSpec.groovy

            )
    
            assertContainsGradleKotlinDslJars(scriptPluginClassPath)
        }
    
        def "sourcePath includes Gradle sources"() {
    
            expect:
            assertSourcePathIncludesGradleSourcesGiven("", "")
        }
    
        def "sourcePath includes kotlin-stdlib sources resolved against project"() {
    
            expect:
            assertSourcePathIncludesKotlinStdlibSourcesGiven(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 08:52:51 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

            for (String classToCompile : classesToCompile) {
                for (String sourcePath : sourceFileClassNameConverter.getRelativeSourcePaths(classToCompile)) {
                    independentClasses.addAll(collectIndependentClassesForSourcePath(sourcePath, spec, sourceFileClassNameConverter));
                    spec.addSourcePath(sourcePath);
                }
            }
            return independentClasses;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinDslScriptsModelBuilder.kt

            dehydratedScriptModels.mapValues { (_, lightModel) ->
                StandardKotlinDslScriptModel(
                    commonModel.classPath + lightModel.classPath,
                    commonModel.sourcePath + lightModel.sourcePath,
                    commonModel.implicitImports + lightModel.implicitImports,
                    lightModel.editorReports,
                    lightModel.exceptions
                )
            }
    
        companion object {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 18:13:21 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

        }
    
        def "ignores empty directories within the file collection of the sourcepath compiler option"() {
            given:
            def sourcePath = 'src/main/ignoredJava'
            buildFile << """
                plugins { id 'java' }
                compileJava.options.sourcepath = files('$sourcePath')
            """
    
            file("${sourcePath}/org/gradle/test/MyOptionalTest.java").text = """
                package org.gradle.test;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

            private final String sourcePath;
            private final String targetPath;
            private final Iterable<String> prefixRelativePath;
    
            public DefaultSymbolicLinkMapping(String sourcePath, String targetPath, Iterable<String> prefixRelativePath) {
                this.sourcePath = sourcePath;
                this.targetPath = targetPath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
Back to top