Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for Director (0.64 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

            filename = "(none)";
            descriptors = Collections.emptyMap();
            isModuleHierarchy = false;
        }
    
        /**
         * Finds module information in the given JAR file, output directory, or test output directory.
         * If no module is found, or if module information cannot be extracted, then this constructor
         * builds an empty map.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultPathTranslator.java

                } else if (file.getPath().startsWith(File.separator)) {
                    // drive-relative Windows path, don't align with project directory but with drive root
                    result = file.getAbsolutePath();
                } else {
                    // an ordinary relative path, align with project directory
                    result = basedir.resolve(path).normalize().toString();
                }
            }
    
            return result;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotterStatistics.java

    import java.nio.file.attribute.BasicFileAttributes;
    import java.text.MessageFormat;
    import java.util.concurrent.atomic.AtomicLong;
    
    public interface DirectorySnapshotterStatistics {
        /**
         * The number of visited directory trees.
         */
        long getVisitedHierarchyCount();
    
        /**
         * The number of visited directories.
         */
        long getVisitedDirectoryCount();
    
        /**
         * The number of visited files.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java

         * be able to accept <code>relative</code> parameter values that
         * <ul>
         * <li>use either / or \ file path separator,</li>
         * <li>have .. parent directory references,</li>
         * <li>point either at file or directory.</li>
         * </ul>
         *
         * @param relative is the path of the requested source relative to this source
         * @return related source or <code>null</code> if no such source
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/WorkerDirectoryProvider.java

     */
    
    package org.gradle.process.internal.worker.child;
    
    import java.io.File;
    
    public interface WorkerDirectoryProvider {
        /**
         * Returns a File object representing the working directory for workers.
         */
        File getWorkingDirectory();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 860 bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelProcessor.java

    /**
     * ModelProcessor
     */
    public interface ModelProcessor {
    
        /**
         * Returns the file containing the pom to be parsed or null if a pom can not be found
         * at the given file or in the given directory.
         */
        @Nullable
        Path locateExistingPom(@Nonnull Path project);
    
        /**
         * Reads the model from the specified byte stream. The stream will be automatically closed before the method
         * returns.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/FileSystemAccess.java

        /**
         * Updates the cached state at the location with the snapshot.
         */
        void record(FileSystemLocationSnapshot snapshot);
    
        /**
         * Move a file or directory on the actual file system atomically, and update the cached state without having to re-snapshot content in the new location.
         */
        void moveAtomically(String sourceLocation, String targetLocation) throws IOException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:29:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

            generateJavadocs(project, layout, tasks, extension);
        }
    
        private void generateJavadocs(Project project, ProjectLayout layout, TaskContainer tasks, GradleDocumentationExtension extension) {
            // TODO: Staging directory should be a part of the Javadocs extension
            // TODO: Pull out more of this configuration into the extension if it makes sense
            // TODO: in a typical project, this may need to be the regular javadoc task vs javadocAll
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:10:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-local/src/main/java/org/gradle/caching/local/internal/DirectoryBuildCache.java

        public DirectoryBuildCache(PersistentCache persistentCache, FileAccessTracker fileAccessTracker, String failedFileSuffix) {
            this.persistentCache = persistentCache;
            // Create temporary files in the cache directory to ensure they are on the same file system,
            // and thus can always be moved into the cache proper atomically
            this.tempFileStore = new DefaultBuildCacheTempFileStore((prefix, suffix) -> {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelTransformerContextBuilder.java

                    Path rootDirectory;
                    try {
                        rootDirectory = request.getSession().getRootDirectory();
                    } catch (IllegalStateException e) {
                        // if no root directory, bail out
                        return;
                    }
                    List<Path> toLoad = new ArrayList<>();
                    Path root = defaultModelBuilder.getModelProcessor().locateExistingPom(rootDirectory);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top