Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for getSourcepath (0.19 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/AbstractLibrary.java

                && Objects.equal(getPath(), that.getPath())
                && Objects.equal(getSourcePath(), that.getSourcePath());
        }
    
        @Override
        public int hashCode() {
            return Objects.hashCode(getPath(), getNativeLibraryLocation(), isExported(), getAccessRules(), getSourcePath(), getJavadocPath());
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/WbResource.java

            return deployPath;
        }
    
        public void setDeployPath(String deployPath) {
            this.deployPath = deployPath;
        }
    
        public String getSourcePath() {
            return sourcePath;
        }
    
        public void setSourcePath(String sourcePath) {
            this.sourcePath = sourcePath;
        }
    
        @Override
        public void appendNode(Node node) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-tooling-models/src/main/java/org/gradle/kotlin/dsl/tooling/models/KotlinBuildScriptModel.java

    import java.util.List;
    
    
    public interface KotlinBuildScriptModel {
    
        String SCRIPT_GRADLE_PROPERTY_NAME = "org.gradle.kotlin.dsl.provider.script";
    
        List<File> getClassPath();
    
        List<File> getSourcePath();
    
        List<String> getImplicitImports();
    
        List<EditorReport> getEditorReports();
    
        List<String> getExceptions();
    
        /**
         * The directory of the project in which the script was found.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/MinimalJavaCompileOptions.java

        @Nullable
        private static String getAsPath(@Nullable FileCollection files) {
            return files == null ? null : files.getAsPath();
        }
    
        public List<File> getSourcepath() {
            return sourcepath;
        }
    
        public void setSourcepath(List<File> sourcepath) {
            this.sourcepath = sourcepath;
        }
    
        public List<String> getCompilerArgs() {
            return compilerArgs;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/kotlin/dsl/KotlinDslScriptModel.java

    import java.io.File;
    import java.util.List;
    
    
    /**
     * Model for a Kotlin DSL script.
     *
     * @since 6.0
     */
    public interface KotlinDslScriptModel {
    
        List<File> getClassPath();
    
        List<File> getSourcePath();
    
        List<String> getImplicitImports();
    
        List<EditorReport> getEditorReports();
    
        List<String> getExceptions();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 994 bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-mutable-file-collection.txt

    Method <org.gradle.api.tasks.compile.CompileOptions.getSourcepath()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (CompileOptions.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/compile/JavaCompile.java

            boolean isModule = JavaModuleDetector.isModuleSource(modularity.getInferModulePath().get(), sourcesRoots);
            boolean isSourcepathUserDefined = compileOptions.getSourcepath() != null && !compileOptions.getSourcepath().isEmpty();
    
            DefaultJavaCompileSpec spec = new DefaultJavaCompileSpecFactory(compileOptions, getToolchain()).create();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathFixture.groovy

            }
    
            void assertHasSource(File jar) {
                assert entry.@sourcepath == jar.path.replace(File.separator, '/')
            }
    
            String getSourcePath() {
                entry.@sourcepath
            }
    
            void assertHasSource(String jar) {
                assert entry.@sourcepath == jar
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/KotlinBuildScriptModelRepositoryTest.kt

            private val exceptions: List<String> = emptyList(),
            private val enclosingScriptProjectDir: File? = null
        ) : KotlinBuildScriptModel {
            override fun getClassPath() = classPath
            override fun getSourcePath() = sourcePath
            override fun getImplicitImports() = implicitImports
            override fun getEditorReports() = editorReports
            override fun getExceptions() = exceptions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/FileCopyDetails.java

         * Same as calling <code>getRelativeSourcePath().getPathString()</code>.
         *
         * @return The path, relative to the root of the containing file tree. Never returns null.
         */
        String getSourcePath();
    
        /**
         * Returns the path of this file, relative to the root of the containing file tree.
         *
         * @return The path, relative to the root of the containing file tree. Never returns null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top