Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,073 for directory1 (0.3 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/OutputFileChangesTest.groovy

            expect:
            changes(
                directory("root", [
                    regularFile("root/one", 0x1234),
                    regularFile("root/two", 0x2345)
                ]),
                directory("root", [
                    regularFile("root/one", 0x1234),
                    regularFile("root/two", 0x2345)
                ])
            ) == []
        }
    
        def "type change directory -> regular file"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. src/os/dir.go

    // explaining why. At the end of a directory, the error is [io.EOF].
    //
    // If n <= 0, Readdir returns all the FileInfo from the directory in
    // a single slice. In this case, if Readdir succeeds (reads all
    // the way to the end of the directory), it returns the slice and a
    // nil error. If it encounters an error before the end of the
    // directory, Readdir returns the FileInfo read until that point
    // and a non-nil error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DirectoryPropertyTest.groovy

    package org.gradle.api.internal.file
    
    import org.gradle.api.file.Directory
    import org.gradle.api.internal.provider.MissingValueException
    import org.gradle.api.internal.provider.PropertyInternal
    import org.gradle.internal.state.ManagedFactory
    
    class DirectoryPropertyTest extends FileSystemPropertySpec<Directory> {
        @Override
        Class<Directory> type() {
            return Directory.class
        }
    
        @Override
        Directory someValue() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      // not represent a directory (that is, it doesn't end with a path separator).
      bool CreateDirectoriesRecursively() const;
    
      // Create the directory so that path exists. Returns true if successful or
      // if the directory already exists; returns false if unable to create the
      // directory for any reason, including if the parent directory does not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/locator/ModelLocator.java

    /**
     * Locates a POM file within a project base directory.
     *
     */
    public interface ModelLocator {
    
        /**
         * Locates the POM file within the specified project directory. In case the given project directory does not exist
         * or does not contain a POM file, the return value indicates the expected path to the POM file. Subdirectories of
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/caching/internal/packaging/impl/DefaultTarPackerFileSystemSupportTest.groovy

            fileSystemSupport.ensureDirectoryForTree(DIRECTORY, targetOutputDir)
    
            then:
            targetOutputDir.assertIsEmptyDir()
        }
    
        def "cleans up leftover files in output directory"() {
            def targetOutputDir = temporaryFolder.file("build/output")
            targetOutputDir.file("sub-dir/data.txt") << "Some data"
    
            when:
            fileSystemSupport.ensureDirectoryForTree(DIRECTORY, targetOutputDir)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 06 01:29:26 UTC 2020
    - 3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/caching/local/internal/DirectoryBuildCacheServiceFactory.java

        }
    
        private static void checkDirectory(File directory) {
            if (directory.exists()) {
                if (!directory.isDirectory()) {
                    throw new IllegalArgumentException(String.format("Cache directory %s must be a directory", directory));
                }
                if (!directory.canRead()) {
                    throw new IllegalArgumentException(String.format("Cache directory %s must be readable", directory));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:35:55 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. src/io/ioutil/tempfile.go

    }
    
    // TempDir creates a new temporary directory in the directory dir.
    // The directory name is generated by taking pattern and applying a
    // random string to the end. If pattern includes a "*", the random string
    // replaces the last "*". TempDir returns the name of the new directory.
    // If dir is the empty string, TempDir uses the
    // default directory for temporary files (see [os.TempDir]).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:34:35 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/DefaultSourceSetOutput.java

        /**
         * Set the task contributor to the provided resources directory. The provided resources
         * directory provider should resolve to the same directory set by {@link #setResourcesDir}.
         *
         * @param directory The resources directory provider.
         * @param task The task which generates {@code directory}.
         */
        public void setResourcesContributor(Provider<File> directory, TaskProvider<?> task) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.1.0.xml

        <resources>
          <resource>
            <directory>${project.basedir}/src/main/resources</directory>
          </resource>
          <resource>
            <directory>${project.basedir}/src/main/resources-filtered</directory>
            <filtering>true</filtering>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>${project.basedir}/src/test/resources</directory>
          </testResource>
          <testResource>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 26 05:17:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top