Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for relPath (0.47 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java

            @Override
            public String getLocation() {
                return source.getLocation();
            }
    
            @Override
            public ModelSource2 getRelatedSource(String relPath) {
                Source rel = source.resolve(relPath);
                return rel != null ? new SourceWrapper(rel) : null;
            }
    
            @Override
            public URI getLocationURI() {
                Path path = source.getPath();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. tests/integration/helm/util.go

    	scopes.Framework.Infof("=== succeeded === ")
    }
    
    func SetRevisionTag(ctx framework.TestContext, h *helm.Helm, fileSuffix, revision, revisionTag, relPath, version string) {
    	scopes.Framework.Infof("=== setting revision tag === ")
    	template, err := h.Template(IstiodReleaseName+"-"+revision, filepath.Join(relPath, version, ControlChartsDir, DiscoveryChartsDir)+fileSuffix,
    		IstioNamespace, "templates/revision-tags.yaml", Timeout, "--set",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/read.go

    func (m *Module) Walk(f func(path string)) {
    	defer unprotect(protect(), nil)
    	for i := 0; i < m.n; i++ {
    		f(m.pkgDir(i))
    	}
    }
    
    // relPath returns the path relative to the module's root.
    func relPath(path, modroot string) string {
    	return str.TrimFilePathPrefix(filepath.Clean(path), filepath.Clean(modroot))
    }
    
    var installgorootAll = godebug.New("installgoroot").Value() == "all"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/dryrun/dryrun.go

    type FileToPrint struct {
    	RealPath  string
    	PrintPath string
    }
    
    // NewFileToPrint makes a new instance of FileToPrint with the specified arguments
    func NewFileToPrint(realPath, printPath string) FileToPrint {
    	return FileToPrint{
    		RealPath:  realPath,
    		PrintPath: printPath,
    	}
    }
    
    // PrintDryRunFile is a helper method around PrintDryRunFiles
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. cmd/http-tracer.go

    		}
    		if host, port, err := net.SplitHostPort(nodeName); err == nil {
    			if port == "443" || port == "80" {
    				nodeName = host
    			}
    		}
    
    		// Calculate reqPath
    		reqPath := r.URL.RawPath
    		if reqPath == "" {
    			reqPath = r.URL.Path
    		}
    
    		// Calculate function name
    		funcName := tc.FuncName
    		if funcName == "" {
    			funcName = "<unknown>"
    		}
    
    		t := madmin.TraceInfo{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. hack/lib/init.sh

          fi
        fi
      )
    }
    
    # This emulates "realpath" which is not available on MacOS X
    # Test:
    # T=/tmp/$$.$RANDOM
    # mkdir $T
    # touch $T/file
    # mkdir $T/dir
    # ln -s $T/file $T/linkfile
    # ln -s $T/dir $T/linkdir
    # function testone() {
    #   X=$(realpath $1 2>&1)
    #   Y=$(kube::realpath $1 2>&1)
    #   if [ "$X" != "$Y" ]; then
    #     echo realpath $1: expected "$X", got "$Y"
    #   fi
    # }
    # testone /
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. cmd/import-boss/main.go

    					errs = append(errs, fmt.Errorf("%q %s %q is forbidden by %s", pkg.PkgPath, relate(imp), imp, file.path))
    					decided = true
    					break // no further rules, next file
    				}
    			}
    			if decided {
    				break // no further files, next import
    			}
    		}
    		if matched && !decided {
    			klog.V(5).Infof("%q %s %q did not match any rule", pkg, relate(imp), imp)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. docs/debugging/reorder-disks/main.go

    	err := filepath.Walk("/dev/disk/by-uuid/",
    		func(path string, info os.FileInfo, err error) error {
    			if err != nil {
    				return err
    			}
    			realPath, err := filepath.EvalSymlinks(path)
    			if err != nil {
    				return err
    			}
    			result[realPath] = strings.TrimPrefix(path, "/dev/disk/by-uuid/")
    			return nil
    		})
    	if err != nil {
    		return nil, err
    	}
    	return result, nil
    }
    
    type localDisk struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. internal/logger/message/audit/entry.go

    	entry := NewEntry(deploymentID)
    
    	entry.RemoteHost = handlers.GetSourceIP(r)
    	entry.UserAgent = r.UserAgent()
    	entry.ReqClaims = reqClaims
    	entry.ReqHost = r.Host
    	entry.ReqPath = r.URL.Path
    
    	q := r.URL.Query()
    	reqQuery := make(map[string]string, len(q))
    	for k, v := range q {
    		reqQuery[k] = strings.Join(v, ",")
    	}
    	entry.ReqQuery = reqQuery
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. cmd/perf-tests.go

    		RXTotalDuration: delta,
    		Error:           errStr,
    		TotalConn:       uint64(connectionsPerPeer),
    	}
    }
    
    // perfNetRequest - reader for http.request.body
    func perfNetRequest(ctx context.Context, deploymentID, reqPath string, reader io.Reader) (result madmin.SiteNetPerfNodeResult) {
    	result = madmin.SiteNetPerfNodeResult{}
    	cli, err := globalSiteReplicationSys.getAdminClient(ctx, deploymentID)
    	if err != nil {
    		result.Error = err.Error()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top