Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 286 for GetFile (0.33 sec)

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

                    return false;
                }
                FileReference ref = (FileReference) obj;
                return file.equals(ref.getFile());
            }
    
            @Override
            public File getFile() {
                return file;
            }
    
            @Override
            public String getPath() {
                return path;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. platforms/software/resources/src/main/java/org/gradle/internal/resource/local/LocallyAvailableResource.java

    import org.gradle.internal.resource.Resource;
    
    import java.io.File;
    
    /**
     * Represents a file backed local resource.
     */
    public interface LocallyAvailableResource extends Resource {
    
        File getFile();
    
        HashCode getSha1();
    
        long getLastModified();
    
        long getContentLength();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 992 bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/FileReference.java

     */
    public interface FileReference {
        /**
         * Returns the logical path for the file.
         */
        String getPath();
    
        /**
         * Returns the target file.
         */
        File getFile();
    
        /**
         * Returns the jar URL of the file
         */
        String getJarURL();
        /**
         * Returns true if this reference is relative to a path variable.
         */
        boolean isRelativeToPathVariable();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/transfer/TransferResourceIdentifier.java

        TransferResourceIdentifier(TransferResource resource) {
            this(resource.getRepositoryId(), resource.getRepositoryUrl(), resource.getResourceName(), resource.getFile());
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 20:50:56 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/XcodeProjectMetadata.java

        }
    
        @Override
        public Set<? extends Task> getGeneratorTasks() {
            return Collections.singleton(projectTask);
        }
    
        @Override
        public File getFile() {
            return xcodeProject.getLocationDir();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/MavenProjectTest.java

            MavenProject module = new MavenProject(moduleModel);
            module.setFile(new File("module-dir/pom.xml"));
    
            Model parentModel = new Model();
            parentModel.addModule("../module-dir");
    
            MavenProject parent = new MavenProject(parentModel);
            parent.setFile(new File("parent-dir/pom.xml"));
    
            String pathAdjustment = parent.getModulePathAdjustment(module);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/FilePath.java

        private final File file;
    
        public FilePath(File file, String url, String canonicalUrl, String relPath) {
            super(url, canonicalUrl, relPath);
            this.file = file;
        }
    
        public File getFile() {
            return file;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1020 bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/artifact/DependencyResolutionRequiredException.java

     * under the License.
     */
    package org.apache.maven.artifact;
    
    /**
     * Exception that occurs when an artifact file is used, but has not been resolved.
     *
     * TODO it may be better for artifact.getFile() to throw it - perhaps it is a runtime exception?
     */
    public class DependencyResolutionRequiredException extends Exception {
        public DependencyResolutionRequiredException(Artifact artifact) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/incremental/InputFileDetails.java

         * @return true if the file was removed since the last execution
         */
        boolean isRemoved();
    
        /**
         * The input file, which may no longer exist.
         * @return the input file
         */
        File getFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 05 07:18:07 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  10. platforms/software/resources/src/main/java/org/gradle/internal/resource/local/LocallyAvailableResourceFinderSearchableFileStoreAdapter.java

            super(criterion -> () -> {
                return fileStore.search(criterion).stream().map(LocallyAvailableResource::getFile).collect(Collectors.toList());
            }, checksumService);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top