Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for lseek (0.14 sec)

  1. src/cmd/link/internal/ld/data.go

    // writeParallel handles scheduling parallel execution of data write functions.
    func writeParallel(wg *sync.WaitGroup, fn writeFn, ctxt *Link, seek, vaddr, length uint64) {
    	if out, err := ctxt.Out.View(seek); err != nil {
    		ctxt.Out.SeekSet(int64(seek))
    		fn(ctxt, ctxt.Out, int64(vaddr), int64(length))
    	} else {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			fn(ctxt, out, int64(vaddr), int64(length))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // seat : 2014-05-22 SEAT, S.A. (Sociedad Unipersonal)
    seat
    
    // secure : 2015-08-27 Amazon Registry Services, Inc.
    secure
    
    // security : 2015-05-14 XYZ.COM LLC
    security
    
    // seek : 2014-12-04 Seek Limited
    seek
    
    // select : 2015-10-08 Registry Services, LLC
    select
    
    // sener : 2014-10-24 Sener IngenierĂ­a y Sistemas, S.A.
    sener
    
    // services : 2014-02-27 Binky Moon, LLC
    services
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    		if _, err := io.CopyN(f, rand.Reader, nBytes); err != nil {
    			return nil, nil, fmt.Errorf("failed to write data to file: %v", err)
    		}
    		if _, err := f.Seek(0, 0); err != nil {
    			return nil, nil, fmt.Errorf("failed to seek to front: %v", err)
    		}
    
    		done = func() {
    			f.Close()
    			os.Remove(f.Name())
    		}
    
    		return f, done, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    is manifestly less resplendent, and in the blue Light still less. Indigo in the violet blue Light is most resplendent, and its splendor is gradually diminish'd, as it is removed thence by degrees through the green and yellow Light to the red. By a Leek the green Light, and next that the blue and yellow which compound green, are more strongly reflected than the other Colours red and violet, and so of the rest. But to make these Experiments the more manifest, such Bodies ought to be chosen as have...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  5. src/encoding/json/testdata/code.json.gz

    uches":1,"min_t":1228939360,"max_t":1228939360,"mean_t":1228939360},{"name":"video-play-stall-expected.png","kids":[],"cl_weight":0.008403361344537815,"touches":1,"min_t":1228939360,"max_t":1228939360,"mean_t":1228939360},{"name":"video-play-stall-seek-expected.checksum","kids":[],"cl_weight":0.008403361344537815,"touches":1,"min_t":1228939360,"max_t":1228939360,"mean_t":1228939360},{"name":"video-seekable-stall-expected.png","kids":[],"cl_weight":0.008403361344537815,"touches":1,"min_t":1228939...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top