Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,472 for directory1 (0.17 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableUserClassFilePermissions.java

        /**
         * Enables or disables read access to a file or directory for a certain class of users.
         * <p>
         * Read access grants the capability to view the contents of a file,
         * or to list the contents of a directory.
         */
        void setRead(boolean read);
    
        /**
         * Enables or disables write access to a file or directory for a certain class of users.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/GcsDirectoryResource.groovy

        private final GcsServer server
        private final TestFile directory
        private final String bucket
        private final String path
    
        GcsDirectoryResource(GcsServer server, String bucket, TestFile directory) {
            this.bucket = bucket
            this.directory = directory
            this.server = server
            def directoryUri = directory.toURI().toString()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/ClasspathBuilder.java

         */
        void jar(File destinationFile, Action action);
    
        /**
         * Creates a directory using the given action to add entries to it. If the directory already exists, it will be cleared first.
         *
         * @param destinationDir the directory to place entries into
         * @param action the action to populate the directory
         */
        void directory(File destinationDir, Action action);
    
        @FunctionalInterface
        interface Action {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:05:09 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/Cleanup.kt

                        logger.lifecycle("Removing old cache directory : $stateDir")
                        delete { delete(stateDir) }
                    }
                }
            }
        }
    }
    
    
    /**
     * Clean up daemon log files produced in integration tests.
     */
    fun FileSystemOperations.removeDaemonLogFiles(dir: Directory) {
        if (dir.asFile.isDirectory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 12:45:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. build-logic-commons/basics/src/test/kotlin/gradlebuild/basics/tasks/PackageListGeneratorIntegrationTest.kt

        }
    
        private
        fun someClasses(): Sequence<Path> {
            val directory = projectDir.resolve("classes")
    
            touchFile(directory.resolve("com/acme/Foo.class"))
            touchFile(directory.resolve("com/acme/internal/FooInternal.class"))
            touchFile(directory.resolve("com/foo/internal/FooInternal.class"))
            touchFile(directory.resolve("javax/servlet/http/HttpServletRequest.class"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/MerkleDirectorySnapshotBuilder.java

                collectEntry(snapshot);
            }
            return snapshot;
        }
    
        private void collectEntry(FileSystemLocationSnapshot snapshot) {
            Directory directory = directoryStack.peekLast();
            if (directory != null) {
                directory.collectEntry(snapshot);
            } else {
                assert result == null;
                result = snapshot;
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. maven-repository-metadata/src/site/apt/index.apt

     []
    
     Depending on what the directory represents ("groupId", "groupId/artifactId" or "groupId/artifactId/version"),
     the Maven Repository Metadata file contains 3 different sets of metadata:
    
     [[1]] in a "groupId" directory: a "groupId" directory may contain Maven plugins artifacts, which are described in metadata's <<<plugins>>> element,
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 07 10:05:21 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/initialization/layout/ResolvedBuildLayout.java

         *
         * <p>There are two cases where this might be true: Gradle was invoked from a directory where there is no build script and no settings script in the directory hierarchy,
         * or Gradle was invoked from a directory where there is a settings script in the directory hierarchy but the directory is not a project directory for any project defined
         * in that settings script.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. maven-artifact/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerMock.java

        private String extension, directory, classifier, packaging, language;
        private boolean includesDependencies, addedToClasspath;
    
        public void setExtension(String extension) {
            this.extension = extension;
        }
    
        @Override
        public String getExtension() {
            return extension;
        }
    
        public void setDirectory(String directory) {
            this.directory = directory;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. pkg/volume/flexvolume/probe.go

    // If the file is a symlink to a directory, it will watch the symlink but not any of the subdirectories.
    //
    // Each file or directory change triggers two events: one from the watch on itself, another from the watch
    // on its parent directory.
    func (prober *flexVolumeProber) addWatchRecursive(filename string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top