Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 391 for timme (0.03 sec)

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

    Russ Cox <******@****.***> 1511973652 -0500
    Registered: Tue Oct 29 11:13:09 UTC 2024
    - Last Modified: Fri Dec 01 00:22:21 UTC 2017
    - 140 bytes
    - Viewed (0)
  2. src/archive/zip/testdata/time-winrar.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    Registered: Tue Oct 29 11:13:09 UTC 2024
    - Last Modified: Mon Nov 06 19:50:28 UTC 2017
    - 150 bytes
    - Viewed (0)
  3. src/archive/zip/testdata/time-go.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    Registered: Tue Oct 29 11:13:09 UTC 2024
    - Last Modified: Mon Nov 06 19:50:28 UTC 2017
    - 148 bytes
    - Viewed (0)
  4. src/archive/zip/testdata/time-win7.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    Registered: Tue Oct 29 11:13:09 UTC 2024
    - Last Modified: Mon Nov 06 19:50:28 UTC 2017
    - 114 bytes
    - Viewed (0)
  5. src/archive/zip/testdata/time-winzip.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    Registered: Tue Oct 29 11:13:09 UTC 2024
    - Last Modified: Mon Nov 06 19:50:28 UTC 2017
    - 150 bytes
    - Viewed (0)
  6. src/archive/zip/testdata/time-7zip.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    Registered: Tue Oct 29 11:13:09 UTC 2024
    - Last Modified: Mon Nov 06 19:50:28 UTC 2017
    - 150 bytes
    - Viewed (0)
  7. src/archive/zip/testdata/time-infozip.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    Registered: Tue Oct 29 11:13:09 UTC 2024
    - Last Modified: Mon Nov 06 19:50:28 UTC 2017
    - 166 bytes
    - Viewed (0)
  8. src/archive/zip/testdata/time-osx.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    Registered: Tue Oct 29 11:13:09 UTC 2024
    - Last Modified: Mon Nov 06 19:50:28 UTC 2017
    - 142 bytes
    - Viewed (0)
  9. internal/cachevalue/cache_test.go

    		func(ctx context.Context) (time.Time, error) {
    			return time.Now(), nil
    		},
    	)
    
    	t1, _ := cache.Get()
    
    	t2, _ := cache.Get()
    
    	if !t1.Equal(t2) {
    		t.Fatalf("expected time to be equal: %s != %s", t1, t2)
    	}
    
    	time.Sleep(3 * time.Second)
    	t3, _ := cache.Get()
    
    	if t1.Equal(t3) {
    		t.Fatalf("expected time to be un-equal: %s == %s", t1, t3)
    	}
    }
    
    func BenchmarkCache(b *testing.B) {
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. cmd/dynamic-timeouts_test.go

    					panic(to)
    				}
    			}
    		}()
    	}
    	wg.Wait()
    }
    
    func TestDynamicTimeoutHitMinimum(t *testing.T) {
    	const minimum = 30 * time.Second
    	timeout := newDynamicTimeout(time.Minute, minimum)
    
    	initial := timeout.Timeout()
    
    	const successTimeout = 20 * time.Second
    	for l := 0; l < 100; l++ {
    		for i := 0; i < dynamicTimeoutLogSize; i++ {
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Fri Oct 14 10:08:40 UTC 2022
    - 5.4K bytes
    - Viewed (0)
Back to top