Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 95 for sourcesPath (0.14 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/RecompilationSpec.java

            return Collections.unmodifiableCollection(resourcesToGenerate);
        }
    
        public void addSourcePath(String sourcePath) {
            sourcePaths.add(sourcePath);
        }
    
        public void addSourcePaths(Set<String> sourcePath) {
            sourcePaths.addAll(sourcePath);
        }
    
        public Collection<String> getSourcePaths() {
            return Collections.unmodifiableCollection(sourcePaths);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/MinimalJavaCompileOptions.java

        private File previousCompilationDataFile;
    
        public MinimalJavaCompileOptions(final CompileOptions compileOptions) {
            FileCollection sourcepath = compileOptions.getSourcepath();
            this.sourcepath = sourcepath == null ? null : ImmutableList.copyOf(sourcepath.getFiles());
            this.compilerArgs = Lists.newArrayList(compileOptions.getAllCompilerArgs());
            this.encoding = compileOptions.getEncoding();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r60/KotlinDslScriptsModelCrossVersionSpec.groovy

            then:
            spec.scripts.values().each { script ->
                assert singleRequestModels[script].classPath == multiRequestsModels[script].classPath
                assert singleRequestModels[script].sourcePath == multiRequestsModels[script].sourcePath
                assert singleRequestModels[script].implicitImports == multiRequestsModels[script].implicitImports
            }
        }
    
        def "multi-scripts model is dehydrated over the wire"() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 16 19:10:39 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/MappedPosition.java

        public String toString() {
            final Optional<String> sourcePath = this.sourcePath();
            final Optional<Integer> line = this.line();
            final Optional<Integer> column = this.pointer();
    
            if (sourcePath.isPresent() && line.isPresent() && column.isPresent()) {
                return sourcePath.get() + ":" + line.get() + ":" + (column.get() + 1);
            } else if (sourcePath.isPresent() && line.isPresent()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. 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)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/AbstractLibrary.java

            super(library.getPath());
            this.library = library;
        }
    
        public FileReference getSourcePath() {
            return sourcePath;
        }
    
        public void setSourcePath(FileReference sourcePath) {
            this.sourcePath = sourcePath;
        }
    
        public FileReference getJavadocPath() {
            return javadocPath;
        }
    
        public void setJavadocPath(FileReference path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/TransformedArtifact.java

                String existing = sourceState.get();
                if (!Objects.equals(current, existing)) {
                    defaultConsumerPomArtifactTransformer.transform(project, session, src, target);
                    Files.setLastModifiedTime(target, Files.getLastModifiedTime(src));
                }
                result = current;
            }
            sourceState.set(result);
            return result;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/CopySourceSpec.java

         * path is evaluated as per {@link org.gradle.api.Project#files(Object...)} .
         *
         * @param sourcePath Path to source for the copy
         * @param configureClosure closure for configuring the child CopySourceSpec
         */
        CopySourceSpec from(Object sourcePath, @DelegatesTo(CopySpec.class) Closure configureClosure);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  9. 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)
  10. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example-kotlin-dsl/app/build.gradle.kts

                lateinit var sourceName: String
                lateinit var sourcePath: String
                if (productFlavorName.isNotEmpty()) {
                    sourceName = buildTypeName
                    sourcePath = sourceName
                } else {
                    sourceName = "${productFlavorName}${buildTypeName.capitalize()}"
                    sourcePath = "${productFlavorName}/${buildTypeName}"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top