Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Active (0.24 sec)

  1. src/cmd/cgo/doc.go

    directory and also in the system include directory (or some other place
    specified by a -I flag), then "#include <foo/bar.h>" will always find the
    local version in preference to any other version.
    
    The cgo tool is enabled by default for native builds on systems where
    it is expected to work. It is disabled by default when cross-compiling
    as well as when the CC environment variable is unset and the default
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  2. src/archive/tar/strconv.go

    	nStr, rest, ok := strings.Cut(s, " ")
    	if !ok {
    		return "", "", s, ErrHeader
    	}
    
    	// Parse the first token as a decimal integer.
    	n, perr := strconv.ParseInt(nStr, 10, 0) // Intentionally parse as native int
    	if perr != nil || n < 5 || n > int64(len(s)) {
    		return "", "", s, ErrHeader
    	}
    	n -= int64(len(nStr) + 1) // convert from index in s to index in rest
    	if n <= 0 {
    		return "", "", s, ErrHeader
    	}
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 01 14:28:42 GMT 2023
    - 9K bytes
    - Viewed (0)
  3. api/go1.14.txt

    pkg syscall (freebsd-arm64), const IFF_DEBUG = 4
    pkg syscall (freebsd-arm64), const IFF_DEBUG ideal-int
    pkg syscall (freebsd-arm64), const IFF_DRV_OACTIVE = 1024
    pkg syscall (freebsd-arm64), const IFF_DRV_OACTIVE ideal-int
    pkg syscall (freebsd-arm64), const IFF_DRV_RUNNING = 64
    pkg syscall (freebsd-arm64), const IFF_DRV_RUNNING ideal-int
    pkg syscall (freebsd-arm64), const IFF_DYING = 2097152
    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)
  4. api/go1.16.txt

    pkg syscall (darwin-arm64), const IFF_NOTRAILERS = 32
    pkg syscall (darwin-arm64), const IFF_NOTRAILERS ideal-int
    pkg syscall (darwin-arm64), const IFF_OACTIVE = 1024
    pkg syscall (darwin-arm64), const IFF_OACTIVE ideal-int
    pkg syscall (darwin-arm64), const IFF_POINTOPOINT = 16
    pkg syscall (darwin-arm64), const IFF_POINTOPOINT ideal-int
    pkg syscall (darwin-arm64), const IFF_PROMISC = 256
    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)
  5. src/cmd/addr2line/addr2line_test.go

    	}
    	fi1, err := os.Stat("addr2line_test.go")
    	if err != nil {
    		t.Fatalf("Stat failed: %v", err)
    	}
    
    	// Debug paths are stored slash-separated, so convert to system-native.
    	srcPath = filepath.FromSlash(srcPath)
    	fi2, err := os.Stat(srcPath)
    
    	if err != nil {
    		t.Fatalf("Stat failed: %v", err)
    	}
    	if !os.SameFile(fi1, fi2) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 22:16:54 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top