Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,426 for directory1 (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. 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)
  3. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/DecompressionCoordinator.java

     * to the same expanded directory.
     *
     * Multiple threads are allowed to extract into different expanded directories concurrently.
     * <p>
     * There currently are no checks on modifications to files in the expanded directory. This can cause problems if the expanded directory is used
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/type/ArtifactTypeDefinition.java

        String JAR_TYPE = "jar";
    
        /**
         * Represents a directory tree containing class files.
         *
         * @since 4.0
         */
        String JVM_CLASS_DIRECTORY = "java-classes-directory";
    
        /**
         * Represents a directory tree containing jvm classpath resource files.
         *
         * @since 4.0
         */
        String JVM_RESOURCES_DIRECTORY = "java-resources-directory";
    
        /**
         * Represents a zip file
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:01:55 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. 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)
  6. maven-model-builder/src/test/resources/poms/inheritance/module-path-not-artifactId-expected.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>
    
      <!-- 5 inherited urls with ${project.directory} added to parent instead of artifactId -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top