Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for getwd (0.31 sec)

  1. src/os/os_test.go

    			select {
    			case <-done:
    				return
    			case <-hold:
    			}
    			// Getwd might be wrong
    			f0, err := Stat(".")
    			if err != nil {
    				t.Error(err)
    				return
    			}
    			pwd, err := Getwd()
    			if err != nil {
    				t.Errorf("Getwd: %v", err)
    				return
    			}
    			if pwd != d {
    				t.Errorf("Getwd() = %q, want %q", pwd, d)
    				return
    			}
    			f1, err := Stat(pwd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  2. src/syscall/syscall_windows.go

    	Stderr = getStdHandle(STD_ERROR_HANDLE)
    )
    
    func getStdHandle(h int) (fd Handle) {
    	r, _ := GetStdHandle(h)
    	return r
    }
    
    const ImplementsGetwd = true
    
    func Getwd() (wd string, err error) {
    	b := make([]uint16, 300)
    	// The path of the current directory may not fit in the initial 300-word
    	// buffer when long path support is enabled. The current directory may also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    			}
    		}
    	}
    	tg.inParallel = true
    	tg.t.Parallel()
    }
    
    // pwd returns the current directory.
    func (tg *testgoData) pwd() string {
    	tg.t.Helper()
    	wd, err := os.Getwd()
    	if err != nil {
    		tg.t.Fatalf("could not get working directory: %v", err)
    	}
    	return wd
    }
    
    // sleep sleeps for one tick, where a tick is a conservative estimate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. src/cmd/internal/testdir/testdir_test.go

    		if runInDir != "" {
    			cmd.Dir = runInDir
    			// Set PWD to match Dir to speed up os.Getwd in the child process.
    			cmd.Env = append(cmd.Env, "PWD="+cmd.Dir)
    		} else {
    			// Default to running in the GOROOT/test directory.
    			cmd.Dir = t.gorootTestDir
    			// Set PWD to match Dir to speed up os.Getwd in the child process.
    			cmd.Env = append(cmd.Env, "PWD="+cmd.Dir)
    		}
    		if tempDirIsGOPATH {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	return Utimes("/proc/self/fd/"+strconv.Itoa(fd), tv)
    }
    
    const ImplementsGetwd = true
    
    //sys	Getcwd(buf []byte) (n int, err error)
    
    func Getwd() (wd string, err error) {
    	var buf [PathMax]byte
    	n, err := Getcwd(buf[0:])
    	if err != nil {
    		return "", err
    	}
    	// Getcwd returns the number of bytes written to buf, including the NUL.
    	if n < 1 || n > len(buf) || buf[n-1] != 0 {
    		return "", EINVAL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. cmd/test-utils_test.go

    func StartTestTLSServer(t TestErrHandler, instanceType string, cert, key []byte) TestServer {
    	// Fetch TLS key and pem files from test-data/ directory.
    	//	dir, _ := os.Getwd()
    	//	testDataDir := filepath.Join(filepath.Dir(dir), "test-data")
    	//
    	//	pemFile := filepath.Join(testDataDir, "server.pem")
    	//	keyFile := filepath.Join(testDataDir, "server.key")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  7. src/go/build/build.go

    	// Since go1.13, it doesn't matter if we're inside GOPATH.
    	if go111Module == "auto" {
    		var (
    			parent string
    			err    error
    		)
    		if ctxt.Dir == "" {
    			parent, err = os.Getwd()
    			if err != nil {
    				// A nonexistent working directory can't be in a module.
    				return errNoModules
    			}
    		} else {
    			parent, err = filepath.Abs(ctxt.Dir)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	Stderr = getStdHandle(STD_ERROR_HANDLE)
    )
    
    func getStdHandle(stdhandle uint32) (fd Handle) {
    	r, _ := GetStdHandle(stdhandle)
    	return r
    }
    
    const ImplementsGetwd = true
    
    func Getwd() (wd string, err error) {
    	b := make([]uint16, 300)
    	n, e := GetCurrentDirectory(uint32(len(b)), &b[0])
    	if e != nil {
    		return "", e
    	}
    	return string(utf16.Decode(b[0:n])), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	runtime.ExitSyscall()
    	n = clen(buf) + 1
    	if r0 == 0 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    func Getwd() (wd string, err error) {
    	var buf [PathMax]byte
    	n, err := Getcwd(buf[0:])
    	if err != nil {
    		return "", err
    	}
    	// Getcwd returns the number of bytes written to buf, including the NUL.
    	if n < 1 || n > len(buf) || buf[n-1] != 0 {
    		return "", EINVAL
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                validateArtifacts();
                validateExcludes();
                getMd().check();
            }
    
            private void validateConfigurations() {
                for (Configuration configuration : getMd().getConfigurations()) {
                    for (String parent : configuration.getExtends()) {
                        if (getMd().getConfiguration(parent) == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
Back to top