Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,883 for Paths (0.04 sec)

  1. src/os/exec/lp_windows_test.go

    //
    // The empty string results in an empty entry.
    // Paths beginning with . are kept as relative entries.
    func makePATH(root string, dirs []string) string {
    	paths := make([]string, 0, len(dirs))
    	for _, d := range dirs {
    		switch {
    		case d == "":
    			paths = append(paths, "")
    		case d == "." || (len(d) >= 2 && d[0] == '.' && os.IsPathSeparator(d[1])):
    			paths = append(paths, filepath.Clean(d))
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         * The ordered list of the flattened dependency nodes.
         */
        private final List<Node> nodes;
    
        /**
         * The file paths of all dependencies, regardless on which Java tool option those paths should be placed.
         */
        private final List<Path> paths;
    
        /**
         * The file paths of all dependencies, dispatched according the Java options where to place them.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/internal/impl/DefaultSessionTest.java

            MavenSession ms = new MavenSession(null, rss, mer, null);
            ms.getRequest().setRootDirectory(Paths.get("myRootDirectory"));
            DefaultSession session =
                    new DefaultSession(ms, mock(RepositorySystem.class), Collections.emptyList(), null, null, null);
    
            assertEquals(Paths.get("myRootDirectory"), session.getRootDirectory());
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jan 25 13:58:24 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/slashpath.txt

    # .a files should use slash-separated paths even on windows
    # This is important for reproducing native builds with cross-compiled builds.
    go build -o x.a text/template
    ! grep 'GOROOT\\' x.a
    ! grep 'text\\template' x.a
    ! grep 'c:\\' x.a
    
    # executables should use slash-separated paths even on windows
    # This is important for reproducing native builds with cross-compiled builds.
    go build -o hello.exe hello.go
    ! grep 'GOROOT\\' hello.exe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 23:10:31 UTC 2023
    - 596 bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/Directory.java

         * whose locations are the given paths resolved relative to this directory,
         * as defined by {@link org.gradle.api.Project#files(Object...)}.
         *
         * This method can also be used to create an empty collection, but the collection may not be mutated later.
         *
         * @param paths The paths to the files. May be empty.
         * @return The file collection.
         * @since 6.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 15:52:49 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/file/DirectoryProperty.java

         * whose locations are the given paths resolved relative to this directory,
         * as defined by {@link org.gradle.api.Project#files(Object...)}.
         *
         * This method can also be used to create an empty collection, but the collection may not be mutated later.
         *
         * @param paths The paths to the files. May be empty.
         * @return The file collection.
         * @since 6.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 10 18:00:11 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/validation/util_windows.go

    limitations under the License.
    */
    
    package validation
    
    import (
    	"path/filepath"
    )
    
    func isAbs(path string) bool {
    	// on Windows, filepath.IsAbs will not return True for paths prefixed with a slash, even
    	// though they can be used as absolute paths (https://docs.microsoft.com/en-us/dotnet/standard/io/file-path-formats).
    	return filepath.IsAbs(path) || (len(path) > 0 && (path[0] == '\\' || path[0] == '/'))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 13:03:13 UTC 2022
    - 987 bytes
    - Viewed (0)
  8. pkg/kubelet/kubeletconfig/configfiles/configfiles_test.go

    				t.Skip("Skipping test that fails on Windows")
    			}
    
    			// set the path, resolve it, and check if it resolved as we would expect
    			*(paths[0]) = c.path
    			resolveRelativePaths(paths, configDir)
    			if *(paths[0]) != c.expect {
    				t.Fatalf("expect %s but got %s", c.expect, *(paths[0]))
    			}
    		})
    	}
    }
    
    func newString(s string) *string {
    	return &s
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 12:18:41 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/exentity/FileConfig.java

                if (StringUtil.isNotBlank(getIncludedDocPaths())) {
                    final List<Pattern> pathPatterList = new ArrayList<>();
                    final String[] paths = getIncludedDocPaths().split("[\r\n]");
                    for (final String u : paths) {
                        final String v = systemHelper.normalizeConfigPath(u);
                        if (StringUtil.isNotBlank(v)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/LocationListInstallationSupplierTest.groovy

            then:
            directories.size() == 1
            directories[0].location == expectedFile
            directories[0].source == "Gradle property 'org.gradle.java.installations.paths'"
        }
    
        def "supplies multiple installations for multiple paths"() {
            when:
            def expectedFile1 = tmpDir.createDir("foo/bar")
            def expectedFile2 = tmpDir.createDir("foo/123")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:33:15 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top