Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 316 for Dirs (0.05 sec)

  1. src/cmd/doc/dirs.go

    		}
    		buildCtx.GOROOT = string(bytes.TrimSpace(stdout))
    	}
    
    	dirs.hist = make([]Dir, 0, 1000)
    	dirs.hist = append(dirs.hist, extra...)
    	dirs.scan = make(chan Dir)
    	go dirs.walk(codeRoots())
    }
    
    // goCmd returns the "go" command path corresponding to buildCtx.GOROOT.
    func goCmd() string {
    	if buildCtx.GOROOT == "" {
    		return "go"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 9K bytes
    - Viewed (0)
  2. src/cmd/internal/test2json/testdata/smiley.json

    {"Action":"run","Test":"Test☺☹Dirs/incomplete"}
    {"Action":"output","Test":"Test☺☹Dirs/incomplete","Output":"=== RUN   Test☺☹Dirs/incomplete\n"}
    {"Action":"output","Test":"Test☺☹Dirs/incomplete","Output":"=== PAUSE Test☺☹Dirs/incomplete\n"}
    {"Action":"pause","Test":"Test☺☹Dirs/incomplete"}
    {"Action":"run","Test":"Test☺☹Dirs/cgo"}
    {"Action":"output","Test":"Test☺☹Dirs/cgo","Output":"=== RUN   Test☺☹Dirs/cgo\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 12.4K bytes
    - Viewed (0)
  3. src/io/fs/readdir_test.go

    func (readDirOnly) Open(name string) (File, error) { return nil, ErrNotExist }
    
    func TestReadDir(t *testing.T) {
    	check := func(desc string, dirs []DirEntry, err error) {
    		t.Helper()
    		if err != nil || len(dirs) != 2 || dirs[0].Name() != "hello.txt" || dirs[1].Name() != "sub" {
    			var names []string
    			for _, d := range dirs {
    				names = append(names, d.Name())
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 16:25:41 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. staging/publishing/rules.yaml

      branches:
      - name: master
        source:
          branch: master
          dirs:
          - staging/src/k8s.io/apimachinery
      - name: release-1.27
        go: 1.21.11
        source:
          branch: release-1.27
          dirs:
          - staging/src/k8s.io/apimachinery
      - name: release-1.28
        go: 1.21.11
        source:
          branch: release-1.28
          dirs:
          - staging/src/k8s.io/apimachinery
      - name: release-1.29
        go: 1.21.11
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/descriptor/FlatDirRepositoryDescriptor.java

        private enum Property {
            DIRS,
        }
    
        private final ImmutableList<File> dirs;
        private final IvyRepositoryDescriptor backingDescriptor;
    
        public FlatDirRepositoryDescriptor(String name, Collection<File> dirs, IvyRepositoryDescriptor backingDescriptor) {
            super(backingDescriptor.getId(), name);
            this.dirs = ImmutableList.copyOf(dirs);
            this.backingDescriptor = backingDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. hack/verify-flags-underscore.py

        all_files = []
        for root, dirs, files in os.walk(rootdir):
            # don't visit certain dirs
            if 'vendor' in dirs:
                dirs.remove('vendor')
            if 'staging' in dirs:
                dirs.remove('staging')
            if '_output' in dirs:
                dirs.remove('_output')
            if 'third_party' in dirs:
                dirs.remove('third_party')
            if '.git' in dirs:
                dirs.remove('.git')
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. src/internal/goroot/gc.go

    			gd.dirs = append(gd.dirs, goDir)
    			goDir = filepath.Join(goDir, machine)
    			if fi, err = os.Stat(goDir); err == nil && fi.IsDir() {
    				gd.dirs = append(gd.dirs, goDir)
    			}
    		}
    		if fi, err := os.Stat(dir); err == nil && fi.IsDir() {
    			lastDirs = append(lastDirs, dir)
    		}
    	}
    	gd.dirs = append(gd.dirs, lastDirs...)
    }
    
    // isStandard reports whether path is a standard library for gccgo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. src/cmd/internal/test2json/testdata/smiley.test

    === PAUSE TestTags/x,testtag,y
    === RUN   Test☺☹Dirs/testingpkg
    === PAUSE Test☺☹/6
    === CONT  TestTags/x,testtag,y
    === PAUSE Test☺☹Dirs/testingpkg
    === RUN   Test☺☹Dirs/divergent
    === RUN   Test☺☹/7
    === PAUSE Test☺☹/7
    === PAUSE Test☺☹Dirs/divergent
    === CONT  TestTags/x_testtag_y
    === CONT  TestTags/testtag
    === RUN   Test☺☹Dirs/buildtag
    === PAUSE Test☺☹Dirs/buildtag
    === CONT  Test☺☹/0
    === CONT  Test☺☹/4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 01 16:13:47 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultFlatDirArtifactRepository.java

            setDirs((Iterable<?>) dirs);
        }
    
        @Override
        public void setDirs(Iterable<?> dirs) {
            invalidateDescriptor();
            this.dirs.clear();
            CollectionUtils.addAll(this.dirs, dirs);
        }
    
        @Override
        public void dir(Object dir) {
            dirs(dir);
        }
    
        @Override
        public void dirs(Object... dirs) {
            invalidateDescriptor();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppSystemHeaderDiscoveryIntegrationTest.groovy

            succeeds("sysHeaders")
    
            then:
            def dirs = outputFile.readLines()
            !dirs.empty
            dirs.find { dir -> new File(dir, "stdio.h").file }
            dirs.find { dir -> new File(dir, "iostream").file }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top