Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,426 for directory1 (0.28 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFilePropertyFactory.java

            private final String path;
    
            public PathToDirectoryTransformer(String path) {
                this.path = path;
            }
    
            @Override
            public Directory transform(Directory directory) {
                return directory.dir(path);
            }
        }
    
        private static class ToFileTransformer implements Transformer<File, FileSystemLocation> {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_temp.txt

    # 1. /tmp/go.mod exists
    # 2. run 'go mod tidy' in /tmp or in the child directory not having go.mod.
    
    [GOOS:plan9] stop  # Plan 9 has no $TMPDIR variable to set.
    
    env GOROOT=$TESTGO_GOROOT
    env TMP=$WORK
    env TMPDIR=$WORK
    mkdir $WORK/child
    
    ! go mod tidy
    ! stdout .
    stderr 'go: go.mod file not found in current directory or any parent directory'
    
    cd $WORK/child
    ! go mod tidy
    ! stdout .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 640 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. dbflute_fess/_readme.txt

    /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    dfprop     : Directory for DBFlute properties
    extlib     : Directory for Directory for library extension
    log        : Directory for log files of DBFlute tasks
    output/doc : Directory for auto-generated documents
    playsql    : Directory for ReplaceSchema task
    schema     : Directory for files of schema info
    - - - - - - - - - -/
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 2.5K bytes
    - Viewed (0)
  7. 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)
  8. pkg/volume/util/atomic_writer.go

    //
    //  6. The payload is written to the new timestamped directory.
    //
    //  7. Permissions are set (if setPerms is not nil) on the new timestamped directory and files.
    //
    //  8. A symlink to the new timestamped directory ..data_tmp is created that will
    //     become the new data directory.
    //
    //  9. The new data directory symlink is renamed to the data directory; rename is atomic.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top