Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,426 for directory1 (0.19 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. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultProjectLayoutTest.groovy

        }
    
        def "can query the project directory"() {
            expect:
            layout.projectDirectory.getAsFile() == projectDir
        }
    
        def "can resolve directory relative to project directory"() {
            def pathProvider = withValues("a", "b")
    
            expect:
            def dir = layout.projectDirectory.dir("sub-dir")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 23 16:13:03 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/file/DefaultProjectLayout.java

                }
            });
        }
    
        @Override
        public Provider<Directory> dir(Provider<File> provider) {
            return new MappingProvider<>(Directory.class, Providers.internal(provider), new Transformer<Directory, File>() {
                @Override
                public Directory transform(File file) {
                    return fileFactory.dir(fileResolver.resolve(file));
                }
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/css/all.css

        width: 100%;
        font-size: 85%
    }
    
    .sidebar .directory li .current {
        color: #de7d40;
        font-weight: 500
    }
    
    .sidebar .directory li.sublist {
        padding-left: 0
    }
    
    .sidebar .directory li.sublist i {
        width: 12px
    }
    
    .sidebar .directory .card-body {
        padding: .5em .1em
    }
    
    .sidebar .directory .card-body > ul {
        padding-left: 0
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  5. 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)
  6. maven-model-builder/src/test/resources/poms/inheritance/module-path-not-artifactId-child.xml

      <name>Model inheritance test parent: module directory != artifactId</name>
      <description>
        artifactId == "child-artifact-id"
        but expect path on SCM and site == "child"
        feature: support "project.directory" property, ressembling future model addition of "directory" element along "artifactId"
      </description>
    
      <properties>
        <project.directory>child</project.directory>
      </properties>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core-api/src/main/java/org/gradle/api/cache/MarkingStrategy.java

         */
        MarkingStrategy CACHEDIR_TAG = new CacheDirTagMarkingStrategy();
    
        /**
         * Marking strategy that does not mark the cache directory.
         */
        MarkingStrategy NONE = new NoMarkingStrategy();
    
        /**
         * Try to mark the given cache directory. If an I/O error occurs, this method should not throw an error,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 25 20:35:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/io/fs/fs.go

    	// since the directory read, Info may return an error satisfying errors.Is(err, ErrNotExist).
    	// If the entry denotes a symbolic link, Info reports the information about the link itself,
    	// not the link's target.
    	Info() (FileInfo, error)
    }
    
    // A ReadDirFile is a directory file whose entries can be read with the ReadDir method.
    // Every directory file should implement this interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 15 21:21:41 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. 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)
Back to top