Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 664 for time (0.03 sec)

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

    Russ Cox <******@****.***> 1511973652 -0500
    Registered: Tue Nov 05 11:13:11 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 Nov 05 11:13:11 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 Nov 05 11:13:11 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 Nov 05 11:13:11 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 Nov 05 11:13:11 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 Nov 05 11:13:11 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 Nov 05 11:13:11 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 Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Nov 06 19:50:28 UTC 2017
    - 142 bytes
    - Viewed (0)
  9. docs_src/custom_request_and_route/tutorial003.py

    
    @router.get("/timed")
    async def timed():
        return {"message": "It's the time of my life"}
    
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 1K bytes
    - Viewed (0)
  10. 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 Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top