Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Readlink (0.19 sec)

  1. misc/wasm/go_js_wasm_exec

    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    SOURCE="${BASH_SOURCE[0]}"
    while [ -h "$SOURCE" ]; do
    	DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
    	SOURCE="$(readlink "$SOURCE")"
    	[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE"
    done
    DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
    
    # Increase the V8 stack size from the default of 984K
    Shell Script
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Feb 02 15:35:28 GMT 2023
    - 603 bytes
    - Viewed (0)
  2. doc/next/6-stdlib/99-minor/os/63703.md

    On Windows, [Readlink] no longer tries to normalize volumes
    to drive letters, which was not always even possible.
    This behavior is controlled by the `winreadlinkvolume` setting.
    For Go 1.23, it defaults to `winreadlinkvolume=1`.
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 280 bytes
    - Viewed (0)
  3. doc/godebug.md

    and other reparse points with non-default [`os.ModeType`](/pkg/os#ModeType) bits
    (such as [`os.ModeDir`](/pkg/os#ModeDir)) do not have the `ModeIrregular` bit set.
    
    Go 1.23 changed [`os.Readlink`](/pkg/os#Readlink) and [`filepath.EvalSymlinks`](/pkg/path/filepath#EvalSymlinks)
    to avoid trying to normalize volumes to drive letters, which was not always even possible.
    This behavior is controlled by the `winreadlinkvolume` setting.
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  4. misc/wasm/wasm_exec.js

    			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()); },
    			stat(path, callback) { callback(enosys()); },
    JavaScript
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon May 22 17:47:47 GMT 2023
    - 16.3K bytes
    - Viewed (1)
  5. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const SYS_READ ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_READLINK = 58
    pkg syscall (netbsd-arm64-cgo), const SYS_READLINKAT = 469
    pkg syscall (netbsd-arm64-cgo), const SYS_READLINKAT ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_READLINK ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_READV = 120
    pkg syscall (netbsd-arm64-cgo), const SYS_READV ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  6. src/bufio/bufio_test.go

    	}
    
    	line, isPrefix, err := l.ReadLine()
    	if err != io.EOF {
    		t.Errorf("expected EOF from ReadLine, got '%s' %t %s", line, isPrefix, err)
    	}
    }
    
    func TestReadLineNonNilLineOrError(t *testing.T) {
    	r := NewReader(strings.NewReader("line 1\n"))
    	for i := 0; i < 2; i++ {
    		l, _, err := r.ReadLine()
    		if l != nil && err != nil {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  7. api/go1.16.txt

    pkg syscall (darwin-arm64), const SYS_QUOTACTL ideal-int
    pkg syscall (darwin-arm64), const SYS_READ = 3
    pkg syscall (darwin-arm64), const SYS_READ ideal-int
    pkg syscall (darwin-arm64), const SYS_READLINK = 58
    pkg syscall (darwin-arm64), const SYS_READLINK ideal-int
    pkg syscall (darwin-arm64), const SYS_READV = 120
    pkg syscall (darwin-arm64), const SYS_READV ideal-int
    pkg syscall (darwin-arm64), const SYS_READV_NOCANCEL = 411
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg os, func NewSyscallError(string, error) error
    pkg os, func Open(string) (*File, error)
    pkg os, func OpenFile(string, int, FileMode) (*File, error)
    pkg os, func Pipe() (*File, *File, error)
    pkg os, func Readlink(string) (string, error)
    pkg os, func Remove(string) error
    pkg os, func RemoveAll(string) error
    pkg os, func Rename(string, string) error
    pkg os, func SameFile(FileInfo, FileInfo) bool
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
  9. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_READ = 3
    pkg syscall (freebsd-arm64), const SYS_READ ideal-int
    pkg syscall (freebsd-arm64), const SYS_READLINK = 58
    pkg syscall (freebsd-arm64), const SYS_READLINK ideal-int
    pkg syscall (freebsd-arm64), const SYS_READLINKAT = 500
    pkg syscall (freebsd-arm64), const SYS_READLINKAT ideal-int
    pkg syscall (freebsd-arm64), const SYS_READV = 120
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  10. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const SYS_READ = 3 #53466
    pkg syscall (freebsd-riscv64), const SYS_READ ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_READLINK = 58 #53466
    pkg syscall (freebsd-riscv64), const SYS_READLINK ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_READLINKAT = 500 #53466
    pkg syscall (freebsd-riscv64), const SYS_READLINKAT ideal-int #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
Back to top