Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,900 for directory1 (0.13 sec)

  1. subprojects/core/src/test/groovy/org/gradle/initialization/buildsrc/BuildSrcDetectorTest.groovy

            !isValidBuildSrcBuild(buildSrcDir)
        }
    
        def "ignores buildSrc directory with empty src directory"() {
            when:
            def buildSrcDir = temp.createDir("buildSrc")
            buildSrcDir.createDir("src/main/java")
    
            then:
            !isValidBuildSrcBuild(buildSrcDir)
        }
    
        def "does not ignore buildSrc directory with src directory containing source file"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

                }
    
                if (!parentDirToCreate.mkdir() && !parentDirToCreate.isDirectory()) {
                    throw new UncheckedIOException(String.format("Failed to create parent directory '%s' when creating directory '%s'", parentDirToCreate, dir));
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/tasks/Sync.java

    import javax.inject.Inject;
    import java.io.File;
    
    /**
     * Synchronizes the contents of a destination directory with some source directories and files.
     *
     * <p>
     * This task is like the {@link Copy} task, except the destination directory will only contain the files
     * copied. All files that exist in the destination directory will be deleted before copying files, unless
     * a {@link #preserve(Action)} is specified.
     *
     * <p>
     * Examples:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/testing/base/plugins/TestingBasePlugin.java

                        @Override
                        public Directory transform(Directory directory) {
                            return directory.dir("binary");
                        }
                    }));
                }
            });
        }
    
        private Provider<Directory> getTestResultsDir(Project project, AbstractTestTask test) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/FilePermissions.java

     *     <li>OTHER (world) permissions: what actions all other users (non-owner, non-group) can perform on the file/directory</li>
     * </ul>
     * <p>
     * For further details on specific permission for a certain class of user see {@link UserClassFilePermissions}, but in essence
     * each class of users can have the right to READ, WRITE or EXECUTE files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/tasks/AbstractSnapshotInputsBuildOperationResultTest.groovy

                getNormalizer() >> InputNormalizer.ABSOLUTE_PATH
                getPropertyName() >> 'foo'
            }
            def snapshots = directory('/foo', [
                regularFile('/foo/one.txt'),
                directory('/foo/empty', [
                    directory('/foo/empty/empty', [])
                ]),
                directory('/foo/sub', [
                    regularFile('/foo/sub/two.txt')
                ])
            ])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:16:07 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/BuildLayout.java

    public interface BuildLayout {
        /**
         * Returns the settings directory.
         * <p>
         * The settings directory is the directory containing the settings file.
         *
         * @see Settings#getSettingsDir()
         */
        Directory getSettingsDirectory();
    
        /**
         * Returns the root directory of the build.
         * <p>
         * The root directory is the project directory of the root project.
         *
         * @see Settings#getRootDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFilePropertyFactory.java

            private final String path;
    
            public PathToDirectoryTransformer(String path) {
                this.path = path;
            }
    
            @Override
            public Directory transform(Directory directory) {
                return directory.dir(path);
            }
        }
    
        private static class ToFileTransformer implements Transformer<File, FileSystemLocation> {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_tidy_temp.txt

    # 1. /tmp/go.mod exists
    # 2. run 'go mod tidy' in /tmp or in the child directory not having go.mod.
    
    [GOOS:plan9] stop  # Plan 9 has no $TMPDIR variable to set.
    
    env GOROOT=$TESTGO_GOROOT
    env TMP=$WORK
    env TMPDIR=$WORK
    mkdir $WORK/child
    
    ! go mod tidy
    ! stdout .
    stderr 'go: go.mod file not found in current directory or any parent directory'
    
    cd $WORK/child
    ! go mod tidy
    ! stdout .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 640 bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/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: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top