Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for orgPath (0.1 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/PatternHelper.java

        public static final String ORGANISATION_KEY = "organisation";
    
        public static final String ORGANISATION_KEY2 = "organization";
    
        public static final String ORGANISATION_PATH_KEY = "orgPath";
    
        /**
         * Selective copy of {@link IvyPatternHelper#substituteTokens(String, Map)},
         * necessary because we allow for paths which are no longer supported by the Ivy code (for
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. src/os/exec/dot_test.go

    	}
    	if err := os.WriteFile(filepath.Join(tmpDir, executable), []byte{1, 2, 3}, 0777); err != nil {
    		t.Fatal(err)
    	}
    	chdir(t, tmpDir)
    	t.Setenv("PWD", tmpDir)
    	t.Logf(". is %#q", tmpDir)
    
    	origPath := os.Getenv(pathVar)
    
    	// Add "." to PATH so that exec.LookPath looks in the current directory on all systems.
    	// And try to trick it with "../testdir" too.
    	for _, errdot := range []string{"1", "0"} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:19:21 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/proxy/transport.go

    		url.Scheme = t.Scheme
    		url.Host = t.Host
    	}
    
    	origPath := url.Path
    	// Do not rewrite URL if the sourceURL already contains the necessary prefix.
    	if strings.HasPrefix(url.Path, t.PathPrepend) {
    		return url.String()
    	}
    	url.Path = path.Join(t.PathPrepend, url.Path)
    	if strings.HasSuffix(origPath, "/") {
    		// Add back the trailing slash, which was stripped by path.Join().
    		url.Path += "/"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/DfsImpl.java

                if ( log.isDebugEnabled() ) {
                    log.debug(
                        String.format(
                            "Intermediate referral, server %s share %s refPath %s origPath %s nextPath %s",
                            r.getServer(),
                            r.getShare(),
                            r.getPath(),
                            path,
                            nextPath));
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K bytes
    - Viewed (0)
Back to top