Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 810 for NOW (1.03 sec)

  1. schema/field_test.go

    		user          = tests.User{
    			Model: gorm.Model{
    				ID:        10,
    				CreatedAt: time.Now(),
    				UpdatedAt: time.Now(),
    				DeletedAt: gorm.DeletedAt{Time: time.Now(), Valid: true},
    			},
    			Name:     "valuer_and_setter",
    			Age:      18,
    			Birthday: tests.Now(),
    			Active:   true,
    		}
    		reflectValue = reflect.ValueOf(&user)
    	)
    
    	// test valuer
    	values := map[string]interface{}{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 19 09:02:53 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/LeastRecentlyUsedCacheCleanupTest.groovy

        def "finds files to delete when files are old"() {
            given:
            long now = System.currentTimeMillis()
            long fiveDaysAgo = now - TimeUnit.DAYS.toMillis(5)
            def cacheEntries = [
                createCacheEntry(now),
                createCacheEntry(now),
                createCacheEntry(now),
                createCacheEntry(fiveDaysAgo),
            ]
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_deadline.txt

    func TestDeadlineWithinMinute(t *testing.T) {
    	now := time.Now()
    	d, ok := t.Deadline()
    	if !ok || d.IsZero() {
    		t.Fatalf("t.Deadline() = %v, %v; want nonzero deadline", d, ok)
    	}
    	if !d.After(now) {
    		t.Fatalf("t.Deadline() = %v; want after start of test (%v)", d, now)
    	}
    	if d.Sub(now) > time.Minute {
    		t.Fatalf("t.Deadline() = %v; want within one minute of start of test (%v)", d, now)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cache/cache_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	defer os.RemoveAll(dir)
    
    	c, err := Open(dir)
    	if err != nil {
    		t.Fatalf("Open: %v", err)
    	}
    	const start = 1000000000
    	now := int64(start)
    	c.now = func() time.Time { return time.Unix(now, 0) }
    
    	checkTime := func(name string, mtime int64) {
    		t.Helper()
    		file := filepath.Join(c.dir, name[:2], name)
    		info, err := os.Stat(file)
    		if err != nil {
    			t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:49:37 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_issue6480.txt

    # Check errors2.test mtime is updated
    exec $GOBIN/now
    cp stdout start_time.txt
    go test -x -c -o errors2.test errors
    ! stderr '[\\/]link|gccgo' # make sure up-to-date test binary is not relinked
    exec $GOBIN/mtime errors2.test
    cp stdout errors2_mod_time.txt
    exec $GOBIN/before start_time.txt errors2_mod_time.txt
    
    -- go.mod --
    module m
    
    go 1.16
    -- now/now.go --
    // Writes time.Now() to a file
    package main
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. utils/utils_test.go

    }
    
    func TestAssertEqual(t *testing.T) {
    	now := time.Now()
    	assertEqualTests := []struct {
    		name     string
    		src, dst interface{}
    		out      bool
    	}{
    		{"error equal", errors.New("1"), errors.New("1"), true},
    		{"error not equal", errors.New("1"), errors.New("2"), false},
    		{"driver.Valuer equal", ModifyAt{Time: now, Valid: true}, ModifyAt{Time: now, Valid: true}, true},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Feb 19 03:42:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/LocalCache.java

              ReferenceEntry<K, V> e = getEntry(key, hash);
              if (e != null) {
                long now = map.ticker.read();
                V value = getLiveValue(e, now);
                if (value != null) {
                  recordRead(e, now);
                  statsCounter.recordHits(1);
                  return scheduleRefresh(e, key, hash, value, now, loader);
                }
                ValueReference<K, V> valueReference = e.getValueReference();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            final long now = System.currentTimeMillis();
            assertTrue(now + ">=" + current + " : " + (now - current), now >= current);
            assertTrue(now - 1000 + "<" + current + " : " + (current - now + 1000), now - 1000 < current);
        }
    
        public void test_getLogFilePath() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. tests/group_by_test.go

    		Name:     "groupby",
    		Age:      10,
    		Birthday: Now(),
    		Active:   true,
    	}, {
    		Name:     "groupby",
    		Age:      20,
    		Birthday: Now(),
    	}, {
    		Name:     "groupby",
    		Age:      30,
    		Birthday: Now(),
    		Active:   true,
    	}, {
    		Name:     "groupby1",
    		Age:      110,
    		Birthday: Now(),
    	}, {
    		Name:     "groupby1",
    		Age:      220,
    		Birthday: Now(),
    		Active:   true,
    	}, {
    		Name:     "groupby1",
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jan 06 07:02:53 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  10. doc/next/6-stdlib/99-minor/net/63116.md

    The [DNSError] type now wraps errors caused by timeouts or cancellation.
    For example, `errors.Is(someDNSErr, context.DeadlineExceedeed)`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 13:37:36 UTC 2024
    - 198 bytes
    - Viewed (0)
Back to top