Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,795 for directory1 (0.34 sec)

  1. cluster/images/etcd/migrate/data_dir.go

    // etcd "data-dir" as well as managing a version.txt file to track the
    // etcd server version and storage version of the etcd data in the
    // directory.
    type DataDirectory struct {
    	path        string
    	versionFile *VersionFile
    }
    
    // OpenOrCreateDataDirectory opens a data directory, creating the directory
    // if it doesn't not already exist.
    func OpenOrCreateDataDirectory(path string) (*DataDirectory, error) {
    	exists, err := exists(path)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 09 19:13:17 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  2. 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)
  3. apache-maven/src/assembly/component.xml

          </includes>
        </fileSet>
        <fileSet>
          <directory>target/maven-shared-archive-resources/META-INF</directory>
          <outputDirectory>./</outputDirectory>
          <includes>
            <include>LICENSE</include>
            <include>NOTICE</include>
          </includes>
        </fileSet>
        <fileSet>
          <directory>target/licenses/lib</directory>
          <outputDirectory>lib</outputDirectory>
          <includes>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Jun 04 19:03:41 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/process-services/src/main/java/org/gradle/process/ProcessForkOptions.java

        /**
         * Returns the working directory for the process. Defaults to the project directory.
         *
         * @return The working directory. Never returns null.
         */
        File getWorkingDir();
    
        /**
         * Sets the working directory for the process.
         *
         * @param dir The working directory. Must not be null.
         * @since 4.0
         */
        void setWorkingDir(File dir);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/caching/local/DirectoryBuildCache.java

    /**
     * Configuration object for the local directory build cache.
     *
     * @since 3.5
     */
    public abstract class DirectoryBuildCache extends AbstractBuildCache {
        private Object directory;
        private int removeUnusedEntriesAfterDays = 7;
    
        /**
         * Returns the directory to use to store the build cache.
         */
        @Nullable
        public Object getDirectory() {
            return directory;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 21:43:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/build_acl_windows.txt

    # Files created within that directory will have different security attributes by default.
    mkdir $WORK\guest
    exec icacls $WORK\guest /grant '*S-1-5-32-546:(oi)(ci)f'
    
    env TMP=$WORK\guest
    env TEMP=$WORK\guest
    
    # Build a binary using the guest directory as an intermediate
    cd TestACL
    go build -o main.exe main.go
    # Build the same binary, but write it to the guest directory.
    go build -o $TMP\main.exe main.go
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top