Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for pendant (0.23 sec)

  1. src/archive/zip/register.go

    package zip
    
    import (
    	"compress/flate"
    	"errors"
    	"io"
    	"sync"
    )
    
    // A Compressor returns a new compressing writer, writing to w.
    // The WriteCloser's Close method must be used to flush pending data to w.
    // The Compressor itself must be safe to invoke from multiple goroutines
    // simultaneously, but each returned writer will be used only by
    // one goroutine at a time.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  2. lib/time/zoneinfo.zip

    Asia/Rangoon Asia/Riyadh Asia/Saigon Asia/Sakhalin Asia/Samarkand Asia/Seoul Asia/Shanghai Asia/Singapore Asia/Srednekolymsk Asia/Taipei Asia/Tashkent Asia/Tbilisi Asia/Tehran Asia/Tel_Aviv Asia/Thimbu Asia/Thimphu Asia/Tokyo Asia/Tomsk Asia/Ujung_Pandang Asia/Ulaanbaatar Asia/Ulan_Bator Asia/Urumqi Asia/Ust-Nera Asia/Vientiane Asia/Vladivostok Asia/Yakutsk Asia/Yangon Asia/Yekaterinburg Asia/Yerevan Atlantic/Azores Atlantic/Bermuda Atlantic/Canary Atlantic/Cape_Verde Atlantic/Faeroe Atlantic/Faroe...
    ZIP Archive
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 02 18:20:41 GMT 2024
    - 392.3K bytes
    - Viewed (1)
  3. api/go1.16.txt

    pkg syscall (darwin-arm64), const PARMRK ideal-int
    pkg syscall (darwin-arm64), const PARODD = 8192
    pkg syscall (darwin-arm64), const PARODD ideal-int
    pkg syscall (darwin-arm64), const PENDIN = 536870912
    pkg syscall (darwin-arm64), const PENDIN ideal-int
    pkg syscall (darwin-arm64), const PRIO_PGRP = 1
    pkg syscall (darwin-arm64), const PRIO_PGRP ideal-int
    pkg syscall (darwin-arm64), const PRIO_PROCESS = 0
    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)
  4. api/go1.14.txt

    pkg syscall (freebsd-arm64), const PARMRK ideal-int
    pkg syscall (freebsd-arm64), const PARODD = 8192
    pkg syscall (freebsd-arm64), const PARODD ideal-int
    pkg syscall (freebsd-arm64), const PENDIN = 536870912
    pkg syscall (freebsd-arm64), const PENDIN ideal-int
    pkg syscall (freebsd-arm64), const PRIO_PGRP = 1
    pkg syscall (freebsd-arm64), const PRIO_PGRP ideal-int
    pkg syscall (freebsd-arm64), const PRIO_PROCESS = 0
    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)
  5. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const PARODD = 8192 #53466
    pkg syscall (freebsd-riscv64), const PARODD ideal-int #53466
    pkg syscall (freebsd-riscv64), const PENDIN = 536870912 #53466
    pkg syscall (freebsd-riscv64), const PENDIN ideal-int #53466
    pkg syscall (freebsd-riscv64), const PRIO_PGRP = 1 #53466
    pkg syscall (freebsd-riscv64), const PRIO_PGRP 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)
  6. api/go1.1.txt

    pkg syscall (darwin-386), const PARMRK ideal-int
    pkg syscall (darwin-386), const PARODD = 8192
    pkg syscall (darwin-386), const PARODD ideal-int
    pkg syscall (darwin-386), const PENDIN = 536870912
    pkg syscall (darwin-386), const PENDIN ideal-int
    pkg syscall (darwin-386), const PROT_EXEC = 4
    pkg syscall (darwin-386), const PROT_NONE = 0
    pkg syscall (darwin-386), const PROT_READ = 1
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  7. src/bufio/bufio.go

    	s := 0 // search start index
    	for {
    		// Search buffer.
    		if i := bytes.IndexByte(b.buf[b.r+s:b.w], delim); i >= 0 {
    			i += s
    			line = b.buf[b.r : b.r+i+1]
    			b.r += i + 1
    			break
    		}
    
    		// Pending error?
    		if b.err != nil {
    			line = b.buf[b.r:b.w]
    			b.r = b.w
    			err = b.readErr()
    			break
    		}
    
    		// Buffer full?
    		if b.Buffered() >= len(b.buf) {
    			b.r = b.w
    			line = b.buf
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Oct 12 14:39:08 GMT 2023
    - 21.8K bytes
    - Viewed (0)
  8. misc/wasm/wasm_exec_node.js

    go.exit = process.exit;
    WebAssembly.instantiate(fs.readFileSync(process.argv[2]), go.importObject).then((result) => {
    	process.on("exit", (code) => { // Node.js exits if no event handler is pending
    		if (code === 0 && !go.exited) {
    			// deadlock, make Go print error and stack traces
    			go._pendingEvent = { id: 0 };
    			go._resume();
    		}
    	});
    	return go.run(result.instance);
    }).catch((err) => {
    JavaScript
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jan 30 18:49:42 GMT 2023
    - 1.1K bytes
    - Viewed (0)
Back to top