Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for getSourcepath (0.2 sec)

  1. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

                                sourcepathBuilder.add(stubDir);
                                if (spec.getCompileOptions().getSourcepath() != null) {
                                    sourcepathBuilder.addAll(spec.getCompileOptions().getSourcepath());
                                }
                                spec.getCompileOptions().setSourcepath(sourcepathBuilder.build());
                            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/NormalizingCopyActionDecorator.java

            }
    
            @Override
            public String getSourceName() {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public String getSourcePath() {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public RelativePath getRelativeSourcePath() {
                throw new UnsupportedOperationException();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinDslScriptsModelBuilder.kt

        private val editorReports: List<EditorReport>,
        private val exceptions: List<String>
    ) : KotlinDslScriptModel, Serializable {
    
        override fun getClassPath() = classPath
    
        override fun getSourcePath() = sourcePath
    
        override fun getImplicitImports() = implicitImports
    
        override fun getEditorReports() = editorReports
    
        override fun getExceptions() = exceptions
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 18:13:21 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultFileCopyDetails.java

            return defaultDuplicatesStrategy;
        }
    
        @Override
        public String getSourceName() {
            return this.fileDetails.getName();
        }
    
        @Override
        public String getSourcePath() {
            return this.fileDetails.getPath();
        }
    
        @Override
        public RelativePath getRelativeSourcePath() {
            return this.fileDetails.getRelativePath();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/WtpComponentFactory.java

            List<WbModuleEntry> entries = new ArrayList<>();
            entries.addAll(getEntriesFromSourceDirs(wtp));
            for (WbResource element : wtp.getResources()) {
                if (wtp.getProject().file(element.getSourcePath()).isDirectory()) {
                    entries.add(element);
                }
            }
            entries.addAll(wtp.getProperties());
            Project project = wtp.getProject();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

                    AbstractLibrary library = (AbstractLibrary) entry;
                    final File file = library.getLibrary().getFile();
                    final File source = library.getSourcePath() == null ? null : library.getSourcePath().getFile();
                    final File javadoc = library.getJavadocPath() == null ? null : library.getJavadocPath().getFile();
                    DefaultEclipseExternalDependency dependency;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            args.add(USE_UNSHARED_COMPILER_TABLE_OPTION);
        }
    
        private void addSourcePathArg(List<String> compilerArgs, MinimalJavaCompileOptions compileOptions) {
            Collection<File> sourcepath = compileOptions.getSourcepath();
            boolean emptySourcePath = sourcepath == null || sourcepath.isEmpty();
    
            if (compilerArgs.contains("--module-source-path")) {
                if (!emptySourcePath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinBuildScriptModelBuilder.kt

        private val exceptions: List<String>,
        private val enclosingScriptProjectDir: File?
    ) : KotlinBuildScriptModel, Serializable {
    
        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: Tue Apr 02 11:06:08 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseWtpComponent.java

        }
    
        /**
         * Additional wb-resource elements.
         * <p>
         * For examples see docs for {@link EclipseWtp}
         * <p>
         * Only resources that link to an existing directory ({@link WbResource#getSourcePath()})
         * will be added to the wtp component file.
         * The reason is that non-existing resource directory declarations
         * lead to errors when project is imported into Eclipse.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

         *
         * @return the source path
         * @see #setSourcepath(FileCollection)
         */
        @Optional
        @Nullable
        @IgnoreEmptyDirectories
        @PathSensitive(PathSensitivity.RELATIVE)
        @InputFiles
        public FileCollection getSourcepath() {
            return sourcepath;
        }
    
        /**
         * Sets the source path to use for the compilation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top