Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for qsub (0.15 sec)

  1. src/archive/tar/strconv.go

    	const maxNanoSecondDigits = 9
    
    	// Split string into seconds and sub-seconds parts.
    	ss, sn, _ := strings.Cut(s, ".")
    
    	// Parse the seconds.
    	secs, err := strconv.ParseInt(ss, 10, 64)
    	if err != nil {
    		return time.Time{}, ErrHeader
    	}
    	if len(sn) == 0 {
    		return time.Unix(secs, 0), nil // No sub-second values
    	}
    
    	// Parse the nanoseconds.
    	if strings.Trim(sn, "0123456789") != "" {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 01 14:28:42 GMT 2023
    - 9K bytes
    - Viewed (0)
  2. api/go1.6.txt

    pkg debug/elf, const R_MIPS_SHIFT5 = 16
    pkg debug/elf, const R_MIPS_SHIFT5 R_MIPS
    pkg debug/elf, const R_MIPS_SHIFT6 = 17
    pkg debug/elf, const R_MIPS_SHIFT6 R_MIPS
    pkg debug/elf, const R_MIPS_SUB = 24
    pkg debug/elf, const R_MIPS_SUB R_MIPS
    pkg debug/elf, const R_MIPS_TLS_DTPMOD32 = 38
    pkg debug/elf, const R_MIPS_TLS_DTPMOD32 R_MIPS
    pkg debug/elf, const R_MIPS_TLS_DTPMOD64 = 40
    pkg debug/elf, const R_MIPS_TLS_DTPMOD64 R_MIPS
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Jan 13 23:40:13 GMT 2016
    - 12.9K bytes
    - Viewed (0)
  3. src/archive/tar/common.go

    	// to the nearest second and ignores the AccessTime and ChangeTime fields.
    	//
    	// To use AccessTime or ChangeTime, specify the Format as PAX or GNU.
    	// To use sub-second resolution, specify the Format as PAX.
    	ModTime    time.Time // Modification time
    	AccessTime time.Time // Access time (requires either PAX or GNU support)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  4. src/cmd/asm/internal/asm/testdata/ppc64.s

    	FMOVDCC F1, F2                  // fc400891
    	FADDS F1, F2                    // ec42082a
    	FADDS F1, F2, F3                // ec62082a
    	FADDSCC F1, F2, F3              // ec62082b
    	FSUB F1, F2                     // fc420828
    	FSUB F1, F2, F3                 // fc620828
    	FSUBCC F1, F2, F3               // fc620829
    	FSUBS F1, F2                    // ec420828
    	FSUBS F1, F2, F3                // ec620828
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Apr 24 15:53:25 GMT 2024
    - 49K bytes
    - Viewed (0)
  5. src/archive/tar/format.go

    //	ChangeTime        |    n/a | unlimited |     int89
    //	Devmajor/Devminor | uint21 |    uint21 |    uint57
    //	------------------+--------+-----------+----------
    //	string encoding   |  ASCII |     UTF-8 |    binary
    //	sub-second times  |     no |       yes |        no
    //	sparse files      |     no |       yes |       yes
    //
    // The table's upper portion shows the [Header] fields, where each format reports
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 11.3K bytes
    - Viewed (0)
  6. src/archive/zip/reader.go

    parseExtras:
    	for extra := readBuf(f.Extra); len(extra) >= 4; { // need at least tag and size
    		fieldTag := extra.uint16()
    		fieldSize := int(extra.uint16())
    		if len(extra) < fieldSize {
    			break
    		}
    		fieldBuf := extra.sub(fieldSize)
    
    		switch fieldTag {
    		case zip64ExtraID:
    			f.zip64 = true
    
    			// update directory values from the zip64 extra block.
    			// They should only be consulted if the sizes read earlier
    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.16.txt

    pkg io/fs, type StatFS interface, Open(string) (File, error)
    pkg io/fs, type StatFS interface, Stat(string) (FileInfo, error)
    pkg io/fs, type SubFS interface { Open, Sub }
    pkg io/fs, type SubFS interface, Open(string) (File, error)
    pkg io/fs, type SubFS interface, Sub(string) (FS, error)
    pkg io/fs, type WalkDirFunc func(string, DirEntry, error) error
    pkg io/fs, var ErrClosed error
    pkg io/fs, var ErrExist error
    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 go/token, const SHL_ASSIGN Token
    pkg go/token, const SHR Token
    pkg go/token, const SHR_ASSIGN Token
    pkg go/token, const STRING Token
    pkg go/token, const STRUCT Token
    pkg go/token, const SUB Token
    pkg go/token, const SUB_ASSIGN Token
    pkg go/token, const SWITCH Token
    pkg go/token, const TYPE Token
    pkg go/token, const UnaryPrec ideal-int
    pkg go/token, const VAR Token
    pkg go/token, const XOR Token
    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 (1)
  9. api/go1.14.txt

    pkg syscall (freebsd-arm64), const BPF_ST ideal-int
    pkg syscall (freebsd-arm64), const BPF_STX = 3
    pkg syscall (freebsd-arm64), const BPF_STX ideal-int
    pkg syscall (freebsd-arm64), const BPF_SUB = 16
    pkg syscall (freebsd-arm64), const BPF_SUB ideal-int
    pkg syscall (freebsd-arm64), const BPF_T_BINTIME = 2
    pkg syscall (freebsd-arm64), const BPF_T_BINTIME ideal-int
    pkg syscall (freebsd-arm64), const BPF_T_BINTIME_FAST = 258
    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. doc/asm.html

    In that directory is a file <code>a.out.go</code>; it contains
    a long list of constants starting with <code>A</code>, like this:
    </p>
    
    <pre>
    const (
    	AAND = obj.ABaseARM + obj.A_ARCHSPECIFIC + iota
    	AEOR
    	ASUB
    	ARSB
    	AADD
    	...
    </pre>
    
    <p>
    This is the list of instructions and their spellings as known to the assembler and linker for that architecture.
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
Back to top