Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 1,522 for timed (0.02 seconds)

  1. src/archive/zip/testdata/time-winrar.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Mon Nov 06 19:50:28 GMT 2017
    - 150 bytes
    - Click Count (0)
  2. src/archive/zip/testdata/time-7zip.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Mon Nov 06 19:50:28 GMT 2017
    - 150 bytes
    - Click Count (0)
  3. src/archive/zip/testdata/time-infozip.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Mon Nov 06 19:50:28 GMT 2017
    - 166 bytes
    - Click Count (0)
  4. src/archive/zip/testdata/time-osx.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Mon Nov 06 19:50:28 GMT 2017
    - 142 bytes
    - Click Count (0)
  5. src/archive/zip/testdata/time-go.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Mon Nov 06 19:50:28 GMT 2017
    - 148 bytes
    - Click Count (0)
  6. src/archive/zip/testdata/time-win7.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Mon Nov 06 19:50:28 GMT 2017
    - 114 bytes
    - Click Count (0)
  7. src/archive/zip/testdata/time-winzip.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Mon Nov 06 19:50:28 GMT 2017
    - 150 bytes
    - Click Count (0)
  8. CHANGELOG/CHANGELOG-1.27.md

    ### Feature
    
    - Kubeadm: generate CA certificates with a start time that is offset 5 minutes in the past relative to the current system time to workaround cases of clock desync.
    Created: Fri Dec 26 09:05:12 GMT 2025
    - Last Modified: Wed Jul 17 07:48:22 GMT 2024
    - 466.3K bytes
    - Click Count (2)
  9. cmd/data-scanner.go

    		d.mu.RUnlock()
    		// Don't sleep for really small amount of time
    		wantSleep := time.Duration(float64(base) * factor)
    		if wantSleep <= minWait {
    			return
    		}
    		if maxWait > 0 && wantSleep > maxWait {
    			wantSleep = maxWait
    		}
    		timer := time.NewTimer(wantSleep)
    		select {
    		case <-ctx.Done():
    			if !timer.Stop() {
    				<-timer.C
    				if d.isScanner {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 45.5K bytes
    - Click Count (0)
  10. cmd/data-scanner-metric.go

    		}
    	}
    }
    
    // time a scanner action.
    // Use for s < scannerMetricLastRealtime
    func (p *scannerMetrics) time(s scannerMetric) func() {
    	startTime := time.Now()
    	return func() {
    		duration := time.Since(startTime)
    
    		atomic.AddUint64(&p.operations[s], 1)
    		if s < scannerMetricLastRealtime {
    			p.latency[s].add(duration)
    		}
    	}
    }
    
    // timeSize add time and size of a scanner action.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed Oct 01 06:06:01 GMT 2025
    - 9.4K bytes
    - Click Count (0)
Back to Top