Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 279 for readdir (0.42 sec)

  1. misc/wasm/wasm_exec.js

    			mkdir(path, perm, callback) { callback(enosys()); },
    			open(path, flags, mode, callback) { callback(enosys()); },
    			read(fd, buffer, offset, length, position, callback) { callback(enosys()); },
    			readdir(path, callback) { callback(enosys()); },
    			readlink(path, callback) { callback(enosys()); },
    			rename(from, to, callback) { callback(enosys()); },
    			rmdir(path, callback) { callback(enosys()); },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 17:47:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. cmd/xl-storage.go

    		// to verify for legacy version.
    		if formatLegacy {
    			// We only need this code if we are moving
    			// from `xl.json` to `xl.meta`, we can avoid
    			// one extra readdir operation here for all
    			// new deployments.
    			entries, err := readDir(currentDataPath)
    			if err != nil && err != errFileNotFound {
    				return res, osErrToFileErr(err)
    			}
    			for _, entry := range entries {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. misc/go_android_exec/main.go

    	if err != nil {
    		return err
    	}
    	if err := adb("push", platformToolDir, path.Join(deviceGoroot, relToolDir)); err != nil {
    		return err
    	}
    
    	// Copy all other files from GOROOT.
    	dirents, err := os.ReadDir(goroot)
    	if err != nil {
    		return err
    	}
    	for _, de := range dirents {
    		switch de.Name() {
    		case "bin", "pkg":
    			// We already created GOROOT/bin and GOROOT/pkg above; skip those.
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. api/go1.19.txt

    pkg go/doc, func ToHTML //deprecated #51082
    pkg go/doc, func ToText //deprecated #51082
    pkg io/ioutil, func NopCloser //deprecated #42026
    pkg io/ioutil, func ReadAll //deprecated #42026
    pkg io/ioutil, func ReadDir //deprecated #42026
    pkg io/ioutil, func ReadFile //deprecated #42026
    pkg io/ioutil, func TempDir //deprecated #42026
    pkg io/ioutil, func TempFile //deprecated #42026
    pkg io/ioutil, func WriteFile //deprecated #42026
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  5. pkg/volume/iscsi/iscsi_util.go

    	// For FileSystem volumes, the topmost dirs are named after the ifaces, e.g., iface-default or iface-127.0.0.1:3260:pv0.
    	// For Block volumes, the default topmost dir is volumeDevices.
    	contents, err := ioutil.ReadDir(dir)
    	if err != nil {
    		if os.IsNotExist(err) {
    			return 0, nil
    		}
    		return 0, err
    	}
    
    	// Inside each iface dir, we look for volume dirs prefixed by the given
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  6. src/go/build/deps_test.go

    func findImports(pkg string) ([]string, error) {
    	vpkg := pkg
    	if strings.HasPrefix(pkg, "golang.org") {
    		vpkg = "vendor/" + pkg
    	}
    	dir := filepath.Join(Default.GOROOT, "src", vpkg)
    	files, err := os.ReadDir(dir)
    	if err != nil {
    		return nil, err
    	}
    	var imports []string
    	var haveImport = map[string]bool{}
    	if pkg == "crypto/internal/boring" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. src/testing/testing_test.go

    	}
    	dirCh <- dir
    	fi, err := os.Stat(dir)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !fi.IsDir() {
    		t.Errorf("dir %q is not a dir", dir)
    	}
    	files, err := os.ReadDir(dir)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(files) > 0 {
    		t.Errorf("unexpected %d files in TempDir: %v", len(files), files)
    	}
    
    	glob := filepath.Join(dir, "*.txt")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    	list, _ := os.ReadDir(dir)
    	for _, info := range list {
    		if info.Type().IsRegular() && strings.HasSuffix(info.Name(), ".go") {
    			if com := findImportComment(filepath.Join(dir, info.Name())); com != "" {
    				return com, nil
    			}
    		}
    	}
    	for _, info1 := range list {
    		if info1.IsDir() {
    			files, _ := os.ReadDir(filepath.Join(dir, info1.Name()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/kube/deployment.go

    			return fmt.Errorf("failed customizing cluster.env: %v", err)
    		}
    
    		// push bootstrap config as a ConfigMap so we can mount it on our "vm" pods
    		cmData := map[string][]byte{}
    		generatedFiles, err := os.ReadDir(subsetDir)
    		if err != nil {
    			return err
    		}
    		for _, file := range generatedFiles {
    			if file.IsDir() {
    				continue
    			}
    			cmData[file.Name()], err = os.ReadFile(path.Join(subsetDir, file.Name()))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  10. src/syscall/syscall_linux_test.go

    // specific status files match expectations.
    func compareStatus(filter, expect string) error {
    	expected := filter + expect
    	pid := syscall.Getpid()
    	fs, err := os.ReadDir(fmt.Sprintf("/proc/%d/task", pid))
    	if err != nil {
    		return fmt.Errorf("unable to find %d tasks: %v", pid, err)
    	}
    	expectedProc := fmt.Sprintf("Pid:\t%d", pid)
    	foundAThread := false
    	for _, f := range fs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top