Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 873 for fixwd (0.53 sec)

  1. src/cmd/vendor/golang.org/x/sys/plan9/pwd_go15_plan9.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build go1.5
    
    package plan9
    
    import "syscall"
    
    func fixwd() {
    	syscall.Fixwd()
    }
    
    func Getwd() (wd string, err error) {
    	return syscall.Getwd()
    }
    
    func Chdir(path string) error {
    	return syscall.Chdir(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 373 bytes
    - Viewed (0)
  2. src/syscall/pwd_plan9.go

    func Fixwd() {
    	wdmu.Lock()
    	defer wdmu.Unlock()
    	fixwdLocked()
    }
    
    func fixwdLocked() {
    	if !wdSet {
    		return
    	}
    	// always call chdir when getwd returns an error
    	wd, _ := getwd()
    	if wd == wdStr {
    		return
    	}
    	if err := chdir(wdStr); err != nil {
    		return
    	}
    }
    
    // If any of the paths is relative, call Fixwd and return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/plan9/syscall_plan9.go

    func Open(path string, mode int) (fd int, err error) {
    	fixwd()
    	return open(path, mode)
    }
    
    //sys	create(path string, mode int, perm uint32) (fd int, err error)
    
    func Create(path string, mode int, perm uint32) (fd int, err error) {
    	fixwd()
    	return create(path, mode, perm)
    }
    
    //sys	remove(path string) (err error)
    
    func Remove(path string) error {
    	fixwd()
    	return remove(path)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 7K bytes
    - Viewed (0)
  4. src/syscall/syscall_plan9.go

    func Open(path string, mode int) (fd int, err error) {
    	if fixwd(path) {
    		defer runtime.UnlockOSThread()
    	}
    	return open(path, mode)
    }
    
    //sys	create(path string, mode int, perm uint32) (fd int, err error)
    
    func Create(path string, mode int, perm uint32) (fd int, err error) {
    	if fixwd(path) {
    		defer runtime.UnlockOSThread()
    	}
    	return create(path, mode, perm)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/plan9/pwd_plan9.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !go1.5
    
    package plan9
    
    func fixwd() {
    }
    
    func Getwd() (wd string, err error) {
    	fd, err := open(".", O_RDONLY)
    	if err != nil {
    		return "", err
    	}
    	defer Close(fd)
    	return Fd2path(fd)
    }
    
    func Chdir(path string) error {
    	return chdir(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 413 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/configurationCache/topLevel/tests/fixed.sample.conf

    commands: [{
        executable: gradle
        args: listFilesFixed
        flags: "--rerun-tasks --quiet"
        expected-output-file: fixed.out
    }, {
        executable: gradle
        args: listFilesFixed
        flags: "--rerun-tasks --quiet"
        expected-output-file: fixed.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 259 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/configurationCache/topLevel/tests/fixed.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-consistentResolution/tests/fixed-dependency-insight.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. src/cmd/fix/import_test.go

    	return func(f *ast.File) bool {
    		fixed := false
    		if !imports(f, p1) {
    			addImport(f, p1)
    			fixed = true
    		}
    		if imports(f, p2) {
    			deleteImport(f, p2)
    			fixed = true
    		}
    		return fixed
    	}
    }
    
    func rewriteImportFn(oldnew ...string) func(*ast.File) bool {
    	return func(f *ast.File) bool {
    		fixed := false
    		for i := 0; i < len(oldnew); i += 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/release/content/script.js

          }
        });
      }
    
      injectIssues(
        "https://services.gradle.org/fixed-issues/@baseVersion@",
        $("h2#fixed-issues"),
        "fixed-issues",
        "Retrieving the fixed issue information for @baseVersion@",
        function(i) {
          return i + " issues have been fixed in Gradle @baseVersion@.";
        }
      );
    
      injectIssues(
        "https://services.gradle.org/known-issues/@baseVersion@",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top