Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for Active (0.21 sec)

  1. src/archive/zip/reader.go

    				modified = time.Unix(epoch.Unix()+secs, nsecs)
    			}
    		case unixExtraID, infoZipUnixExtraID:
    			if len(fieldBuf) < 8 {
    				continue parseExtras
    			}
    			fieldBuf.uint32()              // AcTime (ignored)
    			ts := int64(fieldBuf.uint32()) // ModTime since Unix epoch
    			modified = time.Unix(ts, 0)
    		case extTimeExtraID:
    			if len(fieldBuf) < 5 || fieldBuf.uint8()&1 == 0 {
    				continue parseExtras
    			}
    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)
  2. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const IFF_DEBUG = 4 #53466
    pkg syscall (freebsd-riscv64), const IFF_DEBUG ideal-int #53466
    pkg syscall (freebsd-riscv64), const IFF_DRV_OACTIVE = 1024 #53466
    pkg syscall (freebsd-riscv64), const IFF_DRV_OACTIVE ideal-int #53466
    pkg syscall (freebsd-riscv64), const IFF_DRV_RUNNING = 64 #53466
    pkg syscall (freebsd-riscv64), const IFF_DRV_RUNNING 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)
  3. api/go1.1.txt

    pkg syscall (linux-386), const MSG_TRYHARD = 4
    pkg syscall (linux-386), const MSG_WAITALL = 256
    pkg syscall (linux-386), const MSG_WAITFORONE = 65536
    pkg syscall (linux-386), const MS_ACTIVE = 1073741824
    pkg syscall (linux-386), const MS_ASYNC = 1
    pkg syscall (linux-386), const MS_BIND = 4096
    pkg syscall (linux-386), const MS_DIRSYNC = 128
    pkg syscall (linux-386), const MS_INVALIDATE = 2
    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)
  4. doc/go_mem.html

    </p>
    
    <p>
    This rule generalizes the previous rule to buffered channels.
    It allows a counting semaphore to be modeled by a buffered channel:
    the number of items in the channel corresponds to the number of active uses,
    the capacity of the channel corresponds to the maximum number of simultaneous uses,
    sending an item acquires the semaphore, and receiving an item releases
    the semaphore.
    This is a common idiom for limiting concurrency.
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  5. src/archive/tar/reader.go

    			// This is wrong and leads to an output file that mangles the
    			// atime and ctime fields, which are often left unused.
    			//
    			// In order to continue reading tar files created by former, buggy
    			// versions of Go, we skeptically parse the atime and ctime fields.
    			// If we are unable to parse them and the prefix field looks like
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 08 01:59:14 GMT 2024
    - 26.8K bytes
    - Viewed (0)
  6. api/go1.15.txt

    pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER ideal-int
    pkg debug/pe, const IMAGE_SUBSYSTEM_NATIVE = 1
    pkg debug/pe, const IMAGE_SUBSYSTEM_NATIVE ideal-int
    pkg debug/pe, const IMAGE_SUBSYSTEM_NATIVE_WINDOWS = 8
    pkg debug/pe, const IMAGE_SUBSYSTEM_NATIVE_WINDOWS ideal-int
    pkg debug/pe, const IMAGE_SUBSYSTEM_OS2_CUI = 5
    pkg debug/pe, const IMAGE_SUBSYSTEM_OS2_CUI ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Jul 17 02:15:01 GMT 2020
    - 7.6K bytes
    - Viewed (0)
  7. api/except.txt

    pkg syscall (openbsd-386), type Stat_t struct, Lspare1 int32
    pkg syscall (openbsd-386), type Stat_t struct, Qspare [2]int64
    pkg syscall (openbsd-386), type Statfs_t struct, F_ctime uint32
    pkg syscall (openbsd-386), type Statfs_t struct, F_spare [3]uint32
    pkg syscall (openbsd-386), type Timespec struct, Sec int32
    pkg syscall (openbsd-386), type Timeval struct, Sec int32
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 25 00:13:30 GMT 2023
    - 34.6K bytes
    - Viewed (0)
  8. misc/go_android_exec/main.go

    	}
    	if err := adb("push", platformBin, path.Join(deviceGoroot, "bin")); err != nil {
    		return err
    	}
    
    	// Copy only the relevant subdirectories from pkg: pkg/include and the
    	// platform-native binaries in pkg/tool.
    	if err := adb("exec-out", "mkdir", "-p", path.Join(deviceGoroot, "pkg", "tool")); err != nil {
    		return err
    	}
    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)
  9. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const MSG_TRYHARD ideal-int
    pkg syscall (linux-arm-cgo), const MSG_WAITALL ideal-int
    pkg syscall (linux-arm-cgo), const MSG_WAITFORONE ideal-int
    pkg syscall (linux-arm-cgo), const MS_ACTIVE ideal-int
    pkg syscall (linux-arm-cgo), const MS_ASYNC ideal-int
    pkg syscall (linux-arm-cgo), const MS_BIND ideal-int
    pkg syscall (linux-arm-cgo), const MS_DIRSYNC ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top