Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 232 for chdir (0.14 sec)

  1. src/os/file.go

    		return err
    	}
    	return Chmod(name, fi.Mode()|ModeSticky)
    }
    
    // Chdir changes the current working directory to the named directory.
    // If there is an error, it will be of type *PathError.
    func Chdir(dir string) error {
    	if e := syscall.Chdir(dir); e != nil {
    		testlog.Open(dir) // observe likely non-existent directory
    		return &PathError{Op: "chdir", Path: dir, Err: e}
    	}
    	if runtime.GOOS == "windows" {
    		getwdCache.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  2. src/path/filepath/match_test.go

    			t.Error(err)
    		}
    	}
    
    	// test relative paths
    	wd, err := os.Getwd()
    	if err != nil {
    		t.Fatal(err)
    	}
    	err = os.Chdir(tmpDir)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer func() {
    		err := os.Chdir(wd)
    		if err != nil {
    			t.Fatal(err)
    		}
    	}()
    	for _, test := range tests {
    		err := test.globRel("")
    		if err != nil {
    			t.Error(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. src/syscall/syscall_plan9.go

    		r0, _, e = Syscall(SYS_UNMOUNT, uintptr(unsafe.Pointer(namep)), oldptr, 0)
    	}
    
    	if int32(r0) == -1 {
    		err = e
    	}
    	return
    }
    
    func Fchdir(fd int) (err error) {
    	path, err := Fd2path(fd)
    
    	if err != nil {
    		return
    	}
    
    	return Chdir(path)
    }
    
    type Timespec struct {
    	Sec  int32
    	Nsec int32
    }
    
    type Timeval struct {
    	Sec  int32
    	Usec int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. src/syscall/exec_windows.go

    	}
    
    	if len(attr.Dir) != 0 {
    		// StartProcess assumes that argv0 is relative to attr.Dir,
    		// because it implies Chdir(attr.Dir) before executing argv0.
    		// Windows CreateProcess assumes the opposite: it looks for
    		// argv0 relative to the current directory, and, only once the new
    		// process is started, it does Chdir(attr.Dir). We are adjusting
    		// for that difference here by making argv0 absolute.
    		var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. src/cmd/go/main.go

    //
    //  2. A toolchain switch later on reinvokes the new go command with the same arguments.
    //     The parent toolchain has already done the chdir; the child must not try to do it again.
    func handleChdirFlag() {
    	_, used := lookupCmd(os.Args[1:])
    	used++ // because of [1:]
    	if used >= len(os.Args) {
    		return
    	}
    
    	var dir string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/path/filepath/path_windows_test.go

    		wd := replacer.Replace(test.wd)
    		arg := replacer.Replace(test.arg)
    		want := replacer.Replace(test.want)
    
    		if test.wd == "." {
    			err := os.Chdir(cwd)
    			if err != nil {
    				t.Error(err)
    
    				continue
    			}
    		} else {
    			err := os.Chdir(wd)
    			if err != nil {
    				t.Error(err)
    
    				continue
    			}
    		}
    		if arg != "" {
    			arg = filepath.Clean(arg)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. src/syscall/syscall_openbsd.go

    	}
    	return getfsstat(bufptr, bufsize, flags)
    }
    
    /*
     * Exposed directly
     */
    //sys	Access(path string, mode uint32) (err error)
    //sys	Adjtime(delta *Timeval, olddelta *Timeval) (err error)
    //sys	Chdir(path string) (err error)
    //sys	Chflags(path string, flags int) (err error)
    //sys	Chmod(path string, mode uint32) (err error)
    //sys	Chown(path string, uid int, gid int) (err error)
    //sys	Chroot(path string) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 10:34:00 UTC 2023
    - 7K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testplugin/plugin_test.go

    	}
    
    	os.Setenv("GOPATH", filepath.Join(GOPATH, "alt"))
    	if err := os.Chdir(altRoot); err != nil {
    		log.Panic(err)
    	} else {
    		prettyPrintf("cd %s\n", altRoot)
    	}
    	os.Setenv("PWD", altRoot)
    	goCmd(nil, "build", "-buildmode=plugin", "-o", filepath.Join(modRoot, "plugin-mismatch.so"), "./plugin-mismatch")
    
    	os.Setenv("GOPATH", GOPATH)
    	if err := os.Chdir(modRoot); err != nil {
    		log.Panic(err)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. src/internal/poll/fd_wasip1.go

    // duplicate file descriptors.
    func dupCloseOnExecOld(fd int) (int, string, error) {
    	return -1, "dup", syscall.ENOSYS
    }
    
    // Fchdir wraps syscall.Fchdir.
    func (fd *FD) Fchdir() error {
    	if err := fd.incref(); err != nil {
    		return err
    	}
    	defer fd.decref()
    	return syscall.Chdir(fd.Path)
    }
    
    // ReadDir wraps syscall.ReadDir.
    // We treat this like an ordinary system call rather than a call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:14:02 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/plan9/zsyscall_plan9_amd64.go

    	if int32(r0) == -1 {
    		err = e1
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func chdir(path string) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	r0, _, e1 := Syscall(SYS_CHDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)
    	if int32(r0) == -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top