Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 279 for readdir (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. api/go1.16.txt

    pkg io/fs, type PathError struct, Op string
    pkg io/fs, type PathError struct, Path string
    pkg io/fs, type ReadDirFS interface { Open, ReadDir }
    pkg io/fs, type ReadDirFS interface, Open(string) (File, error)
    pkg io/fs, type ReadDirFS interface, ReadDir(string) ([]DirEntry, error)
    pkg io/fs, type ReadDirFile interface { Close, Read, ReadDir, Stat }
    pkg io/fs, type ReadDirFile interface, Close() error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container.go

    }
    
    func calcRestartCountByLogDir(path string) (int, error) {
    	// if the path doesn't exist then it's not an error
    	if _, err := os.Stat(path); err != nil {
    		return 0, nil
    	}
    	files, err := os.ReadDir(path)
    	if err != nil {
    		return 0, err
    	}
    	if len(files) == 0 {
    		return 0, nil
    	}
    	restartCount := 0
    	restartCountLogFileRegex := regexp.MustCompile(`^(\d+)\.log(\..*)?`)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Reader).ReadByte", Method, 0},
    		{"(*Reader).ReadBytes", Method, 0},
    		{"(*Reader).ReadLine", Method, 0},
    		{"(*Reader).ReadRune", Method, 0},
    		{"(*Reader).ReadSlice", Method, 0},
    		{"(*Reader).ReadString", Method, 0},
    		{"(*Reader).Reset", Method, 2},
    		{"(*Reader).Size", Method, 10},
    		{"(*Reader).UnreadByte", Method, 0},
    		{"(*Reader).UnreadRune", Method, 0},
    		{"(*Reader).WriteTo", Method, 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  10. src/net/http/fs_test.go

    	path   string // as opened
    	entpos int
    }
    
    func (f *fakeFile) Close() error               { return nil }
    func (f *fakeFile) Stat() (fs.FileInfo, error) { return f.fi, nil }
    func (f *fakeFile) Readdir(count int) ([]fs.FileInfo, error) {
    	if !f.fi.dir {
    		return nil, fs.ErrInvalid
    	}
    	var fis []fs.FileInfo
    
    	limit := f.entpos + count
    	if count <= 0 || limit > len(f.fi.ents) {
    		limit = len(f.fi.ents)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
Back to top