Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,426 for directory1 (0.37 sec)

  1. internal/store/queuestore.go

    	}
    
    	return &QueueStore[I]{
    		directory:  directory,
    		entryLimit: limit,
    		fileExt:    ext,
    		entries:    make(map[string]int64, limit),
    	}
    }
    
    // Open - Creates the directory if not present.
    func (store *QueueStore[_]) Open() error {
    	store.Lock()
    	defer store.Unlock()
    
    	if err := os.MkdirAll(store.directory, os.FileMode(0o770)); err != nil {
    		return err
    	}
    
    	files, err := store.list()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 25 16:44:20 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/S3DirectoryResource.groovy

        private final S3Server server
        private final TestFile directory
        private String bucket
        private final String path
    
        S3DirectoryResource(S3Server 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)
  3. src/cmd/go/testdata/script/build_cwd_newline.txt

    cp $WORK/main_test.go ./main_test.go
    
    ! go build -o $devnull .
    stderr 'package example: invalid package directory .*uh-oh'
    
    [cgo] ! go build -o $devnull main.go
    [!cgo] ! go build -o $devnull main_nocgo.go
    stderr 'package command-line-arguments: invalid package directory .*uh-oh'
    
    ! go run .
    stderr 'package example: invalid package directory .*uh-oh'
    
    [cgo] ! go run main.go
    [!cgo] ! go run main_nocgo.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/OutputsCleaner.java

            while (true) {
                File directory = directoriesToDelete.poll();
                if (directory == null) {
                    break;
                }
                if (existsAndIsEmpty(directory)) {
                    LOGGER.debug("Deleting stale empty output directory '{}'.", directory);
                    Files.delete(directory.toPath());
                    didWork = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/SourceDirectorySet.java

        /**
         * A concise name for the source directory set (typically used to identify it in a collection).
         */
        @Override
        String getName();
    
        /**
         * Adds the given source directory to this set. The given directory does not need to exist. Directories that do not exist are ignored.
         *
         * @param srcPath The source directory. This is evaluated as per {@link org.gradle.api.Project#files(Object...)}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 06 08:25:17 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  6. maven-model-builder/src/test/java/org/apache/maven/model/inheritance/DefaultInheritanceAssemblerTest.java

         * Check most classical urls inheritance: directory structure where parent POM in parent directory
         * and child directory == artifactId
         * @throws IOException Model read problem
         */
        @Test
        void testUrls() throws Exception {
            testInheritance("urls");
        }
    
        /**
         * Flat directory structure: parent & child POMs in sibling directories, child directory == artifactId.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 13 11:39:50 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. pkg/volume/util/subpath/subpath.go

    	// created directory does not escape given base directory mis-using
    	// symlinks. Note that the function makes sure that it creates the directory
    	// somewhere under the base, nothing else. E.g. if the directory already
    	// exists, it may exist outside of the base due to symlinks.
    	// This method should be used if the directory to create is inside volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 27 02:59:53 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  8. 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)
  9. maven-model-builder/src/main/java/org/apache/maven/model/path/PathTranslator.java

    import java.io.File;
    import java.nio.file.Path;
    
    /**
     * Resolves relative paths against a specific base directory.
     *
     */
    public interface PathTranslator {
    
        /**
         * Resolves the specified path against the given base directory. The resolved path will be absolute and uses the
         * platform-specific file separator if a base directory is given. Otherwise, the input path will be returned
         * unaltered.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseSourceDirectory.java

    import javax.annotation.Nullable;
    import java.util.List;
    
    /**
     * A source directory in an Eclipse project.
     */
    public interface EclipseSourceDirectory extends SourceDirectory, EclipseClasspathEntry {
        /**
         * Returns the relative path for this source directory.
         *
         * @return The path for this source directory. Does not return null.
         */
        String getPath();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top