Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,883 for Paths (0.13 sec)

  1. src/main/java/org/codelibs/fess/util/ResourceUtil.java

            if (Files.exists(Paths.get(srcWebInfBase))) {
                return Paths.get(srcWebInfBase, names);
            }
            final String targetWebInfBase = "target/fess/" + root + base;
            if (Files.exists(Paths.get(targetWebInfBase))) {
                return Paths.get(targetWebInfBase, names);
            }
            return Paths.get(webinfBase, names);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_go_file.txt

    # argument doesn't have .go suffix and has no version
    ! go get test
    ! stderr 'arguments must be package or module paths'
    ! stderr 'exists as a file, but ''go get'' requires package arguments'
    
    # argument has .go suffix and has version
    ! go get test.go@v1.0.0
    ! stderr 'arguments must be package or module paths'
    ! stderr 'exists as a file, but ''go get'' requires package arguments'
    
    # argument has .go suffix, is a file and exists
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/file/delete/DefaultDeleteSpec.java

        private Object[] paths;
        private boolean followSymlinks;
    
        public DefaultDeleteSpec() {
            paths = new Object[0];
            followSymlinks = false;
        }
    
        @Override
        public Object[] getPaths() {
            return paths;
        }
    
        @Override
        public DefaultDeleteSpec delete(Object... files) {
            paths = files;
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  4. src/path/filepath/symlink_windows.go

    // It should accept the following formats:
    //   - UNC paths                              (e.g \\server\share\foo\bar)
    //   - absolute paths                         (e.g C:\foo\bar)
    //   - relative paths begin with drive letter (e.g C:foo\bar, C:..\foo\bar, C:.., C:.)
    //   - relative paths begin with '\'          (e.g \foo\bar)
    //   - relative paths begin without '\'       (e.g foo\bar, ..\foo\bar, .., .)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 07:42:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/jvm/java-compiler-plugin/src/test/groovy/com/gradle/internal/compiler/java/AbstractCompilerPluginTest.groovy

            File parent = Paths.get(sourceFolder.absolutePath, "src", "main", "java", packageFolder).toFile()
            File f = Paths.get(parent.absolutePath, "${className}.java").toFile()
            parent.mkdirs()
            f.text = body
            return [f]
        }
    
        List<File> toModuleSourceFile(String body) {
            def className = "module-info"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomBuilderTest.java

                    return ModelSource.fromPath(Paths.get("src/test/resources/consumer/simple/pom.xml"));
                } else if (id.startsWith("org.sonatype.mavenbook.multi:simple-parent:")) {
                    return ModelSource.fromPath(Paths.get("src/test/resources/consumer/simple/simple-parent/pom.xml"));
                } else if (id.startsWith("org.my.group:parent:")) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/routes/index.go

    // ListedPathProvider is an interface for providing paths that should be reported at /.
    type ListedPathProvider interface {
    	// ListedPaths is an alphabetically sorted list of paths to be reported at /.
    	ListedPaths() []string
    }
    
    // ListedPathProviders is a convenient way to combine multiple ListedPathProviders
    type ListedPathProviders []ListedPathProvider
    
    // ListedPaths unions and sorts the included paths.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 20:21:45 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  8. cmd/metacache-bucket_test.go

    	"fmt"
    	"testing"
    )
    
    func Benchmark_bucketMetacache_findCache(b *testing.B) {
    	bm := newBucketMetacache("", false)
    	const elements = 50000
    	const paths = 100
    	if elements%paths != 0 {
    		b.Fatal("elements must be divisible by the number of paths")
    	}
    	var pathNames [paths]string
    	for i := range pathNames[:] {
    		pathNames[i] = fmt.Sprintf("prefix/%d", i)
    	}
    	for i := 0; i < elements; i++ {
    		bm.findCache(listPathOptions{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 25 23:29:45 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

         * The path elements are separated by an option-specific or platform-specific separator.
         * If the given {@code paths} argument contains no element, then this method returns an empty string.
         *
         * <h4>Examples</h4>
         * If {@code paths} is a list containing two elements, {@code dir/path1} and {@code dir/path2}, then:
         *
         * <ul>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/FileTransformer.java

            final String[] paths = path.split("/");
            File targetFile = baseDir;
            for (int i = 0; i < paths.length - 1; i++) {
                File file = new File(targetFile, paths[i]);
                if (file.exists()) {
                    if (!file.isDirectory()) {
                        for (int j = 0; j < maxDuplicatedPath; j++) {
                            file = new File(targetFile, paths[i] + "_" + j);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top