Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,426 for directory3 (0.28 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/DirectorySnapshotBuilder.java

    /**
     * A builder for {@link DirectorySnapshot}.
     *
     * In order to build a directory snapshot, you need to call the methods for entering/leaving a directory
     * and for visiting leaf elements.
     * The visit methods need to be called in depth-first order.
     * When leaving a directory, the builder will create a {@link DirectorySnapshot} for the directory,
     * calculating the combined hash of the entries.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/IncludedBuildValidationIntegrationTest.groovy

            includedBuilds << buildDir
    
            then:
            fails(buildA, "help")
    
            and:
            failure.assertHasDescription("Included build '${buildDir.absolutePath}' is not a directory.")
        }
    
        @Ignore
        def "reports failure when included build directory is not the root directory of build"() {
            when:
            includedBuilds << buildB.file('b1')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseSourceDirectory.java

            this.path = path;
            this.directory = directory;
            this.excludes = excludes;
            this.includes = includes;
            this.output = output;
        }
    
        @Override
        public String toString() {
            return "source directory '" + path + "'";
        }
    
        public File getDirectory() {
            return directory;
        }
    
        public String getPath() {
            return path;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/FinalizeBuildCacheConfigurationBuildOperationIntegrationTest.groovy

            result.local.config.removeUnusedEntriesAfter == "7 days"
            result.local.type == 'directory'
            result.local.push == true
    
            result.remote == null
        }
    
        def "custom build cache connector configuration is exposed"() {
            given:
            def type = 'CustomBuildCache Desc'
            def directory = 'someLocation'
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPackerTest.groovy

            0 * _
    
            where:
            type      | preExistsAs
            FILE      | "file"
            FILE      | "dir"
            FILE      | "none"
            DIRECTORY | "file"
            DIRECTORY | "dir"
            DIRECTORY | "none"
        }
    
        def "can pack single tree file with #type name"() {
            def sourceOutputFile = temporaryFolder.file("source.txt")
            sourceOutputFile << "output"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/FileNotifyInformation.java

        // filter flags
    
        /**
         * Any file name change in the watched directory or subtree causes a change notification wait operation to return.
         * Changes include renaming, creating, or deleting a file.
         */
        public static final int FILE_NOTIFY_CHANGE_FILE_NAME = 0x00000001;
    
        /**
         * Any directory-name change in the watched directory or subtree causes a change notification wait operation to
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  7. pkg/volume/volume_linux.go

    	// We use bitwise AND operation to check set bits. For example:
    	//     unixPerms: 770, filePerms: 775 : 770&775 = 770 (perms on directory is a superset)
    	//     unixPerms: 770, filePerms: 770 : 770&770 = 770 (perms on directory is a superset)
    	//     unixPerms: 770, filePerms: 750 : 770&750 = 750 (perms on directory is NOT a superset)
    	// We also need to check if setgid bits are set in permissions of the directory.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_module_not_in_go_work.txt

    ! go list ./...
    stderr 'pattern ./...: directory prefix . does not contain modules listed in go.work or their selected dependencies'
    
    ! go list ./a/c
    stderr 'directory a[\\/]c is contained in a module that is not one of the workspace modules listed in go.work. You can add the module to the workspace using:\n\tgo work use a'
    
    ! go install ./a/c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 18:09:53 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top