Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for bigfile (0.86 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                    SessionHolderImpl(firSession, scopeSession)
                }
    
                val designation = ContextCollector.computeDesignation(firFile, targetElement)
    
                val contextProvider = ContextCollector.process(
                    firFile,
                    sessionHolder,
                    designation,
                    shouldCollectBodyContext = false, // we only query SELF context
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    	// go and gofmt and $GOOS_$GOARCH (target bin when cross-compiling).
    	binFiles, err := filepath.Glob(pathf("%s/bin/*", goroot))
    	if err != nil {
    		fatalf("glob: %v", err)
    	}
    
    	ok := map[string]bool{}
    	for _, f := range oldBinFiles {
    		ok[f] = true
    	}
    	for _, f := range binFiles {
    		if gohostos == "darwin" && filepath.Base(f) == ".DS_Store" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                                d.getManagementKey(),
                                "must specify an absolute path but is " + systemPath,
                                d);
                    } else if (!sysFile.isFile()) {
                        String msg = "refers to a non-existing file " + sysFile.getAbsolutePath();
                        systemPath = systemPath.replace('/', File.separatorChar).replace('\\', File.separatorChar);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    			for _, m := range mg.BuildList() {
    				r := resolveReplacement(m)
    				if keepModSumsForZipSums {
    					keep[modkey(r)] = true // we need the go version from the go.mod file to do anything useful with the zipfile
    				}
    				keep[r] = true
    			}
    		}
    	}
    
    	return keep
    }
    
    type whichSums int8
    
    const (
    	loadedZipSumsOnly = whichSums(iota)
    	addBuildListZipSums
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top