Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 601 for NOW (0.09 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenBuildTimestamp.java

        public static final TimeZone DEFAULT_BUILD_TIME_ZONE = TimeZone.getTimeZone("Etc/UTC");
    
        private String formattedTimestamp;
    
        public MavenBuildTimestamp() {
            this(Instant.now());
        }
    
        public MavenBuildTimestamp(Instant time) {
            this(time, DEFAULT_BUILD_TIMESTAMP_FORMAT);
        }
    
        public MavenBuildTimestamp(Instant time, Map<String, String> properties) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. callbacks/update.go

    					if v, ok := selectColumns[field.DBName]; (ok && v) || !ok {
    						now := stmt.DB.NowFunc()
    						assignValue(field, now)
    
    						if field.AutoUpdateTime == schema.UnixNanosecond {
    							set = append(set, clause.Assignment{Column: clause.Column{Name: field.DBName}, Value: now.UnixNano()})
    						} else if field.AutoUpdateTime == schema.UnixMillisecond {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 05:44:55 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/orig/view/advance.jsp

    						<option value="[now-1d/d TO *]"
    							<c:if test="${as.timestamp.contains('[now-1d/d TO *]')}">selected</c:if>
    						><la:message key="labels.advance_search_timestamp_pastday" /></option>
    						<option value="[now-1w/d TO *]"
    							<c:if test="${as.timestamp.contains('[now-1w/d TO *]')}">selected</c:if>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. doc/next/5-toolchain.md

    In Go 1.23, overhead should be in the single digit percentages.
    
    <!-- https://go.dev/issue/62737 , https://golang.org/cl/576681,  https://golang.org/cl/577615 -->
    The compiler in Go 1.23 can now overlap the stack frame slots of local variables
    accessed in disjoint regions of a function, which reduces stack usage
    for Go applications.
    
    <!-- https://go.dev/cl/577935 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/robustio/robustio_flaky.go

    		if errors.As(err, &errno) && (lowestErrno == 0 || errno < lowestErrno) {
    			bestErr = err
    			lowestErrno = errno
    		} else if bestErr == nil {
    			bestErr = err
    		}
    
    		if start.IsZero() {
    			start = time.Now()
    		} else if d := time.Since(start) + nextSleep; d >= arbitraryTimeout {
    			break
    		}
    		time.Sleep(nextSleep)
    		nextSleep += time.Duration(rand.Int63n(int64(nextSleep)))
    	}
    
    	return bestErr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/FaultTolerantClientTest.java

             */
            @Override
            public ResponseData execute(final RequestData request) {
                final long now = SystemUtil.currentTimeMillis();
                if (now - previousTime < interval) {
                    throw new IllegalStateException();
                }
                previousTime = now;
    
                count++;
                if (count <= exceptionCount) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. doc/next/6-stdlib/99-minor/debug/elf/66836.md

    Now defines the symbol type constants [STT_RELC], [STT_SRELC], and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 84 bytes
    - Viewed (0)
  8. tests/customize_field_test.go

    		Date *time.Time `gorm:"column:mapped_time"`
    	}
    
    	DB.Migrator().DropTable(&CustomizeColumn{})
    	DB.AutoMigrate(&CustomizeColumn{})
    
    	expected := "foo"
    	now := time.Now()
    	cc := CustomizeColumn{ID: 666, Name: expected, Date: &now}
    
    	if count := DB.Create(&cc).RowsAffected; count != 1 {
    		t.Error("There should be one record be affected when create record")
    	}
    
    	var cc1 CustomizeColumn
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Sep 11 09:33:31 UTC 2020
    - 6.9K bytes
    - Viewed (0)
  9. doc/next/6-stdlib/99-minor/database/sql/64707.md

    Errors returned by [driver.Valuer] implementations are now wrapped for
    improved error handling during operations like [DB.Query], [DB.Exec],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 160 bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/advance.jsp

    						<option value="[now-1d/d TO *]"
    							<c:if test="${as.timestamp.contains('[now-1d/d TO *]')}">selected</c:if>
    						><la:message key="labels.advance_search_timestamp_pastday" /></option>
    						<option value="[now-1w/d TO *]"
    							<c:if test="${as.timestamp.contains('[now-1w/d TO *]')}">selected</c:if>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 14.9K bytes
    - Viewed (0)
Back to top