Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for isopen (0.16 sec)

  1. misc/wasm/wasm_exec.js

    			lchown(path, uid, gid, callback) { callback(enosys()); },
    			link(path, link, callback) { callback(enosys()); },
    			lstat(path, callback) { callback(enosys()); },
    			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()); },
    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)
  2. src/archive/zip/reader.go

    	return xdir < ydir || xdir == ydir && xelem < yelem
    }
    
    // Open opens the named file in the ZIP archive,
    // using the semantics of fs.FS.Open:
    // paths are always slash separated, with no
    // leading / or ../ elements.
    func (r *Reader) Open(name string) (fs.File, error) {
    	r.initFileList()
    
    	if !fs.ValidPath(name) {
    		return nil, &fs.PathError{Op: "open", Path: name, Err: fs.ErrInvalid}
    	}
    	e := r.openLookup(name)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  3. api/go1.8.txt

    pkg net/url, method (*URL) Port() string
    pkg net/url, method (*URL) UnmarshalBinary([]uint8) error
    pkg net, var DefaultResolver *Resolver
    pkg os, func Executable() (string, error)
    pkg os, var ErrClosed error
    pkg plugin, func Open(string) (*Plugin, error)
    pkg plugin, method (*Plugin) Lookup(string) (Symbol, error)
    pkg plugin, type Plugin struct
    pkg plugin, type Symbol interface {}
    pkg reflect, func Swapper(interface{}) func(int, int)
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Dec 21 05:25:57 GMT 2016
    - 16.3K bytes
    - Viewed (0)
  4. api/go1.4.txt

    pkg syscall (windows-386), const FILE_ATTRIBUTE_REPARSE_POINT = 1024
    pkg syscall (windows-386), const FILE_ATTRIBUTE_REPARSE_POINT ideal-int
    pkg syscall (windows-386), const FILE_FLAG_OPEN_REPARSE_POINT = 2097152
    pkg syscall (windows-386), const FILE_FLAG_OPEN_REPARSE_POINT ideal-int
    pkg syscall (windows-386), const FSCTL_GET_REPARSE_POINT = 589992
    pkg syscall (windows-386), const FSCTL_GET_REPARSE_POINT ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 12 03:01:01 GMT 2014
    - 34K bytes
    - Viewed (0)
  5. misc/go_android_exec/main.go

    	// and wait for our os.Stderr (and os.Stdout) to close as a result.
    	// However, if the os.Stderr (or os.Stdout) file descriptors are
    	// passed on, the hanging adb subprocess will hold them open and
    	// go test will hang forever.
    	//
    	// Avoid that by wrapping stderr, breaking the short circuit and
    	// forcing cmd.Run to use another pipe and goroutine to pass
    	// along stderr from adb.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Aug 21 17:46:57 GMT 2023
    - 15.3K bytes
    - Viewed (0)
  6. src/archive/zip/writer.go

    		h, err := FileInfoHeader(info)
    		if err != nil {
    			return err
    		}
    		h.Name = name
    		h.Method = Deflate
    		fw, err := w.CreateHeader(h)
    		if err != nil {
    			return err
    		}
    		f, err := fsys.Open(name)
    		if err != nil {
    			return err
    		}
    		defer f.Close()
    		_, err = io.Copy(fw, f)
    		return err
    	})
    }
    
    func (w *Writer) compressor(method uint16) Compressor {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 04 14:28:57 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  7. misc/ios/go_ios_exec.go

    		signal.Stop(sigs)
    		close(sigs)
    	}
    	return out.Bytes(), err
    }
    
    func copyLocalDir(dst, src string) error {
    	if err := os.Mkdir(dst, 0755); err != nil {
    		return err
    	}
    
    	d, err := os.Open(src)
    	if err != nil {
    		return err
    	}
    	defer d.Close()
    	fi, err := d.Readdir(-1)
    	if err != nil {
    		return err
    	}
    
    	for _, f := range fi {
    		if f.IsDir() {
    			if f.Name() == "testdata" {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  8. api/go1.21.txt

    pkg debug/elf, const DF_1_NOHDR DynFlag1 #56887
    pkg debug/elf, const DF_1_NOKSYMS = 524288 #56887
    pkg debug/elf, const DF_1_NOKSYMS DynFlag1 #56887
    pkg debug/elf, const DF_1_NOOPEN = 64 #56887
    pkg debug/elf, const DF_1_NOOPEN DynFlag1 #56887
    pkg debug/elf, const DF_1_NORELOC = 4194304 #56887
    pkg debug/elf, const DF_1_NORELOC DynFlag1 #56887
    pkg debug/elf, const DF_1_NOW = 1 #56887
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Aug 07 09:39:17 GMT 2023
    - 25.6K bytes
    - Viewed (0)
Back to top