Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for rowEnd (0.23 sec)

  1. doc/go1.17_spec.html

    	<li>Give an error if unable to represent an integer constant
    	    precisely.</li>
    
    	<li>Give an error if unable to represent a floating-point or
    	    complex constant due to overflow.</li>
    
    	<li>Round to the nearest representable constant if unable to
    	    represent a floating-point or complex constant due to limits
    	    on precision.</li>
    </ul>
    
    <p>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. src/archive/tar/common.go

    func alignSparseEntries(src []sparseEntry, size int64) []sparseEntry {
    	dst := src[:0]
    	for _, s := range src {
    		pos, end := s.Offset, s.endOffset()
    		pos += blockPadding(+pos) // Round-up to nearest blockSize
    		if end != size {
    			end -= blockPadding(-end) // Round-down to nearest blockSize
    		}
    		if pos < end {
    			dst = append(dst, sparseEntry{Offset: pos, Length: end - pos})
    		}
    	}
    	return dst
    }
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  3. src/cmd/cgo/gcc.go

    			// makes the whole program not compile. Much of the time these
    			// structs are in system headers that cannot be corrected.
    			continue
    		}
    
    		// Round off up to talign, assumed to be a power of 2.
    		off = (off + talign - 1) &^ (talign - 1)
    
    		if f.ByteOffset > off {
    			fld, sizes = c.pad(fld, sizes, f.ByteOffset-off)
    			off = f.ByteOffset
    		}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  4. src/archive/tar/writer.go

    			tw.hdr.Typeflag = TypeReg
    		}
    	}
    
    	// Round ModTime and ignore AccessTime and ChangeTime unless
    	// the format is explicitly chosen.
    	// This ensures nominal usage of WriteHeader (without specifying the format)
    	// does not always result in the PAX format being chosen, which
    	// causes a 1KiB increase to every header.
    	if tw.hdr.Format == FormatUnknown {
    		tw.hdr.ModTime = tw.hdr.ModTime.Round(time.Second)
    		tw.hdr.AccessTime = time.Time{}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 19.6K bytes
    - Viewed (0)
  5. doc/go_spec.html

    	<li>Give an error if unable to represent an integer constant
    	    precisely.</li>
    
    	<li>Give an error if unable to represent a floating-point or
    	    complex constant due to overflow.</li>
    
    	<li>Round to the nearest representable constant if unable to
    	    represent a floating-point or complex constant due to limits
    	    on precision.</li>
    </ul>
    
    <p>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg syscall (netbsd-386), const ENXIO = 6
    pkg syscall (netbsd-386), const EN_SW_CTL_INF = 4096
    pkg syscall (netbsd-386), const EN_SW_CTL_PREC = 768
    pkg syscall (netbsd-386), const EN_SW_CTL_ROUND = 3072
    pkg syscall (netbsd-386), const EN_SW_DATACHAIN = 128
    pkg syscall (netbsd-386), const EN_SW_DENORM = 2
    pkg syscall (netbsd-386), const EN_SW_INVOP = 1
    pkg syscall (netbsd-386), const EN_SW_OVERFLOW = 8
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  7. api/go1.2.txt

    pkg syscall (netbsd-386), const ENOSTR Errno
    pkg syscall (netbsd-386), const EN_SW_CTL_INF ideal-int
    pkg syscall (netbsd-386), const EN_SW_CTL_PREC ideal-int
    pkg syscall (netbsd-386), const EN_SW_CTL_ROUND ideal-int
    pkg syscall (netbsd-386), const EN_SW_DATACHAIN ideal-int
    pkg syscall (netbsd-386), const EN_SW_DENORM ideal-int
    pkg syscall (netbsd-386), const EN_SW_INVOP ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  8. api/go1.9.txt

    pkg syscall, type RawConn interface, Write(func(uintptr) bool) error
    pkg testing, method (*B) Helper()
    pkg testing, method (*T) Helper()
    pkg testing, type TB interface, Helper()
    pkg time, method (Duration) Round(Duration) Duration
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Oct 04 20:20:20 GMT 2021
    - 10.7K bytes
    - Viewed (0)
  9. src/archive/zip/struct.go

    	const (
    		minOffset   = -12 * time.Hour  // E.g., Baker island at -12:00
    		maxOffset   = +14 * time.Hour  // E.g., Line island at +14:00
    		offsetAlias = 15 * time.Minute // E.g., Nepal at +5:45
    	)
    	offset = offset.Round(offsetAlias)
    	if offset < minOffset || maxOffset < offset {
    		offset = 0
    	}
    	return time.FixedZone("", int(offset/time.Second))
    }
    
    // msDosTimeToTime converts an MS-DOS date and time into a time.Time.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  10. src/bufio/bufio.go

    			// Put the '\r' back on buf and drop it from line.
    			// Let the next call to ReadLine check for "\r\n".
    			if b.r == 0 {
    				// should be unreachable
    				panic("bufio: tried to rewind past start of buffer")
    			}
    			b.r--
    			line = line[:len(line)-1]
    		}
    		return line, true, nil
    	}
    
    	if len(line) == 0 {
    		if err != nil {
    			line = nil
    		}
    		return
    	}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Oct 12 14:39:08 GMT 2023
    - 21.8K bytes
    - Viewed (0)
Back to top