Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for nextPath (0.13 sec)

  1. cmd/import-boss/main.go

    			if err != nil {
    				return nil, err
    			}
    
    			restrictionFiles = append(restrictionFiles, rules)
    		}
    
    		nextPath, removedDir := removeLastDir(path)
    		if nextPath == path || isGoModRoot(path) || removedDir == "src" {
    			break
    		}
    
    		path = nextPath
    	}
    
    	return restrictionFiles, nil
    }
    
    func readFile(path string) (*FileFormat, error) {
    	currentBytes, err := os.ReadFile(path)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. src/go/build/build.go

    func (ctxt *Context) makePathsAbsolute(args []string, srcDir string) {
    	nextPath := false
    	for i, arg := range args {
    		if nextPath {
    			if !filepath.IsAbs(arg) {
    				args[i] = filepath.Join(srcDir, arg)
    			}
    			nextPath = false
    		} else if strings.HasPrefix(arg, "-I") || strings.HasPrefix(arg, "-L") {
    			if len(arg) == 2 {
    				nextPath = true
    			} else {
    				if !filepath.IsAbs(arg[2:]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            ListenerBroadcast<ProjectEvaluationListener> nextBatch = newProjectEvaluationListenerBroadcast();
            this.evaluationListener = nextBatch;
            try {
                step.execute(listener);
            } finally {
                this.evaluationListener = original;
            }
            return nextBatch.isEmpty()
                ? null
                : nextBatch.getSource();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top