Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,426 for directory1 (0.21 sec)

  1. pkg/volume/util/subpath/subpath_linux_test.go

    			func(base string) error {
    				return nil
    			},
    			"test/directory",
    			"test",
    			maxPerm,
    			false,
    		},
    		{
    			"directory-with-sgid",
    			func(base string) error {
    				return nil
    			},
    			"test/directory",
    			"test/directory",
    			os.FileMode(0777) + os.ModeDir + os.ModeSetgid,
    			false,
    		},
    		{
    			"directory-with-suid",
    			func(base string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 16:52:55 UTC 2021
    - 37.3K bytes
    - Viewed (0)
  2. platforms/software/reporting/src/main/java/org/gradle/api/reporting/ReportingExtension.java

        }
    
        /**
         * The base directory for all reports
         * <p>
         * This value can be changed, so any files derived from this should be calculated on demand.
         *
         * @return The base directory for all reports
         */
        public File getBaseDir() {
            return baseDirectory.getAsFile().get();
        }
    
        /**
         * Sets the base directory to use for all reports
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/idea/DefaultIdeaSourceDirectory.java

        private File directory;
    
        private boolean generated;
    
        public File getDirectory() {
            return directory;
        }
    
        public boolean isGenerated() {
            return generated;
        }
    
        public DefaultIdeaSourceDirectory setDirectory(File directory) {
            this.directory = directory;
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.adoc

    [[project_root]]
    == Project Root directory
    
    The project root directory contains all source files from your project.
    
    It also contains files and directories Gradle generates, such as `.gradle` and `build`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. pkg/volume/util/subpath/subpath_linux.go

    		}
    		if !s.IsDir() {
    			return fmt.Errorf("path %q not a directory", curDir)
    		}
    
    		err = os.Remove(curDir)
    		if os.IsExist(err) {
    			klog.V(5).Infof("Directory %q not empty, not removing", curDir)
    			break
    		} else if err != nil {
    			return fmt.Errorf("error removing directory %q: %v", curDir, err)
    		}
    		klog.V(5).Infof("Removed directory %q", curDir)
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/internal/cache/CacheDirUtil.java

    /**
     * Utility class for dealing with cache directories.
     */
    class CacheDirUtil {
        private static final Logger LOGGER = LoggerFactory.getLogger(CacheDirUtil.class);
    
        /**
         * Mark a directory as a cache directory. This typically involves setting attributes or creating files in it.
         */
        public static void tryMarkCacheDirectoryByTag(Path dir) {
            if (!Files.isDirectory(dir)) {
                return;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 25 20:35:25 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/api/plugins/BasePluginConvention.java

        /**
         * Returns the directory to generate TAR and ZIP archives into.
         *
         * @return The directory. Never returns null.
         *
         * @since 6.0
         */
        public abstract DirectoryProperty getDistsDirectory();
    
        /**
         * Returns the directory to generate JAR and WAR archives into.
         *
         * @return The directory. Never returns null.
         *
         * @since 6.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/caching/configuration/internal/BuildCacheConfigurationIntegrationTest.groovy

                    settings.buildCache {
                        local {
                            directory = '$cacheDir'
                        }
                    }
                }
            """
            settingsFile << """
                buildCache {
                    local {
                        directory = "wrong"
                    }
                }
            """
            buildFile << customTaskCode()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 19 20:09:35 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top