Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,426 for directory3 (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. subprojects/core/src/main/java/org/gradle/cache/internal/BuildScopeCacheDir.java

                // No build definition, use a cache dir in the user home directory to avoid generating garbage in the root directory
                cacheDir = new File(userHomeDirProvider.getGradleUserHomeDirectory(), UNDEFINED_BUILD + Hashing.hashString(buildLayout.getRootDirectory().getAbsolutePath()));
            } else {
                // Use the .gradle directory in the build root directory
                cacheDir = new File(buildLayout.getRootDirectory(), ".gradle");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 18:02:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top