Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 112 for readdir (0.35 sec)

  1. src/cmd/go/internal/script/cmds.go

    		// result: we want to preserve the exact dir prefix from the environment.
    		sep := string(filepath.Separator)
    		if os.IsPathSeparator(dir[len(dir)-1]) {
    			sep = ""
    		}
    
    		if searchExt {
    			ents, err := os.ReadDir(dir)
    			if err != nil {
    				continue
    			}
    			for _, ent := range ents {
    				for _, ext := range pathExt {
    					if !ent.IsDir() && strEqual(ent.Name(), command+ext) {
    						return dir + sep + ent.Name(), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modindex/read.go

    	}
    	return asString(s[n : n+int(v)])
    }
    
    // A reader reads sequential fields from a section of the index format.
    type reader struct {
    	d   *decoder
    	pos int
    }
    
    // readAt returns a reader starting at the given position in d.
    func (d *decoder) readAt(pos int) *reader {
    	return &reader{d, pos}
    }
    
    // int reads the next int.
    func (r *reader) int() int {
    	i := r.d.intAt(r.pos)
    	r.pos += 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  3. pkg/kube/inject/inject_test.go

    	alreadyTested := sets.New[string]()
    	for _, t := range cases {
    		if t.want != "" {
    			alreadyTested.Insert(t.want)
    		} else {
    			alreadyTested.Insert(t.in + ".injected")
    		}
    	}
    	files, err := os.ReadDir("testdata/inject")
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(files) < 3 {
    		t.Fatalf("Didn't find test files - something must have gone wrong")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. pkg/istio-agent/agent_test.go

    				t.Fatalf("file is changed!")
    			}
    		}
    	}
    }
    
    func filenames(t *testing.T, dir string) []string {
    	t.Helper()
    	res := []string{}
    	contents, err := os.ReadDir(dir)
    	if err != nil {
    		t.Fatal(err)
    	}
    	for _, f := range contents {
    		res = append(res, f.Name())
    	}
    	sort.Strings(res)
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. api/except.txt

    pkg os, func OpenFile(string, int, FileMode) (*File, error)
    pkg os, func SameFile(FileInfo, FileInfo) bool
    pkg os, func Stat(string) (FileInfo, error)
    pkg os, method (*File) Chmod(FileMode) error
    pkg os, method (*File) Readdir(int) ([]FileInfo, error)
    pkg os, method (*File) Stat() (FileInfo, error)
    pkg os, method (*PathError) Error() string
    pkg os, method (*PathError) Timeout() bool
    pkg os, method (*PathError) Unwrap() error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  6. src/archive/tar/writer_test.go

    	if !bytes.Contains(buf.Bytes(), []byte("PaxHeaders.0")) {
    		t.Fatal("Expected at least one PAX header to be written.")
    	}
    	// Test that we can get a long name back out of the archive.
    	reader := NewReader(&buf)
    	hdr, err = reader.Next()
    	if err != nil {
    		t.Fatal(err)
    	}
    	if hdr.Name != longName {
    		t.Fatal("Couldn't recover long file name")
    	}
    }
    
    func TestPaxSymlink(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  7. src/path/filepath/path_test.go

    	realTmpDir, err := filepath.EvalSymlinks(tmpDir)
    	if err != nil {
    		t.Fatal(err)
    	}
    	realDir := filepath.Join(realTmpDir, "dir")
    	realFile := filepath.Join(realDir, "file")
    
    	tests := []struct {
    		path, want string
    	}{
    		{dir, realDir},
    		{linkToDir, realDir},
    		{file, realFile},
    		{link1, realFile},
    		{link2, realFile},
    	}
    	for i, test := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. src/internal/fuzz/fuzz.go

    // be saved in a MalformedCorpusError and returned, along with the most recent
    // error.
    func ReadCorpus(dir string, types []reflect.Type) ([]CorpusEntry, error) {
    	files, err := os.ReadDir(dir)
    	if os.IsNotExist(err) {
    		return nil, nil // No corpus to read
    	} else if err != nil {
    		return nil, fmt.Errorf("reading seed corpus from testdata: %v", err)
    	}
    	var corpus []CorpusEntry
    	var errs []error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. pilot/pkg/xds/eds_test.go

    }
    
    func mustReadfolder(t *testing.T, folder string) string {
    	result := ""
    	fpathRoot := folder
    	if !strings.HasPrefix(fpathRoot, ".") {
    		fpathRoot = filepath.Join(env.IstioSrc, folder)
    	}
    	f, err := os.ReadDir(fpathRoot)
    	if err != nil {
    		t.Fatal(err)
    	}
    	for _, fpath := range f {
    		bytes, err := os.ReadFile(filepath.Join(fpathRoot, fpath.Name()))
    		if err != nil {
    			t.Fatal(err)
    		}
    		result += "---\n"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  10. src/go/doc/reader.go

    // AST reader
    
    // reader accumulates documentation for a single package.
    // It modifies the AST: Comments (declaration documentation)
    // that have been collected by the reader are set to nil
    // in the respective AST nodes so that they are not printed
    // twice (once when printing the documentation and once when
    // printing the corresponding AST node).
    type reader struct {
    	mode Mode
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top