Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 90 for Timestamp (0.2 sec)

  1. internal/s3select/sql/funceval.go

    	tval1, err := d.Timestamp1.evalNode(r, tableAlias)
    	if err != nil {
    		return nil, err
    	}
    	if err = inferTypeAsTimestamp(tval1); err != nil {
    		return nil, err
    	}
    	ts1, ok := tval1.ToTimestamp()
    	if !ok {
    		return nil, fmt.Errorf("%s() expects two timestamp arguments", sqlFnDateDiff)
    	}
    
    	tval2, err := d.Timestamp2.evalNode(r, tableAlias)
    	if err != nil {
    		return nil, err
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 13.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/convert/TimestampConversionUtilTest.java

            final Timestamp timestamp = toSqlTimestamp("10/9/7 11:49", Locale.JAPAN);
            assertThat(new SimpleDateFormat("yyyy/MM/dd HH:mm:ss").format(timestamp), is("2010/09/07 11:49:00"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testToTimestamp_MediumStyle() throws Exception {
            final Timestamp timestamp = toSqlTimestamp("2010/9/7 11:49:10", Locale.JAPAN);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.4K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionResolver.java

        }
    
        private static class VersionInfo {
    
            String timestamp;
    
            String version;
    
            ArtifactRepository repository;
    
            VersionInfo(String timestamp, String version, ArtifactRepository repository) {
                this.timestamp = (timestamp != null) ? timestamp : "";
                this.version = version;
                this.repository = repository;
            }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 20.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java

            }
            final Timestamp timestamp = toSqlTimestampJdbcEscape(str);
            if (timestamp != null) {
                return toCalendar(timestamp, locale);
            }
            throw new ParseRuntimeException(str);
        }
    
        /**
         * オブジェクトを{@link Timestamp}に変換します。
         *
         * @param src
         *            変換元のオブジェクト
         * @return 変換された{@link Timestamp}
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 22.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

        }
    
        public void test_login_ecs() {
            activityHelper.useEcsFormat = true;
            activityHelper.login(OptionalThing.empty());
            assertEquals(
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/main/resources/fess_config.properties

    query.facet.fields.sort=count.desc
    query.facet.fields.missing=
    query.facet.queries=\
    labels.facet_timestamp_title:\
    labels.facet_timestamp_1day=timestamp:[now/d-1d TO *]\t\
    labels.facet_timestamp_1week=timestamp:[now/d-7d TO *]\t\
    labels.facet_timestamp_1month=timestamp:[now/d-1M TO *]\t\
    labels.facet_timestamp_1year=timestamp:[now/d-1y TO *]\n\
    labels.facet_contentLength_title:\
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  7. src/main/resources/fess_label_ru.properties

    labels.advance_search_sitesearch=Site or domain
    labels.advance_search_timestamp=Last update
    labels.advance_search_timestamp_default=anytime
    labels.advance_search_timestamp_pastday=past 24 hours
    labels.advance_search_timestamp_pastweek=past week
    labels.advance_search_timestamp_pastmonth=past month
    labels.advance_search_timestamp_pastyear=past year
    labels.searchlog_configuration=Search Log
    labels.searchlog_title=Search Log
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  8. internal/s3select/sql/value.go

    	}
    
    	boolV, ok1b := v.ToBool()
    	boolA, ok2b := a.ToBool()
    	if ok1b && ok2b {
    		return boolCompare(op, boolV, boolA)
    	}
    
    	timestampV, ok1t := v.ToTimestamp()
    	timestampA, ok2t := a.ToTimestamp()
    	if ok1t && ok2t {
    		return timestampCompare(op, timestampV, timestampA), nil
    	}
    
    	// Types cannot be compared, they do not match.
    	switch op {
    	case opEq:
    		return false, nil
    	case opIneq:
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Feb 25 20:31:19 GMT 2022
    - 20.2K bytes
    - Viewed (0)
  9. cmd/local-locker.go

    	Writer          bool      // Bool whether write or read lock.
    	UID             string    // UID to uniquely identify request of client.
    	Timestamp       time.Time // Timestamp set at the time of initialization.
    	TimeLastRefresh time.Time // Timestamp for last lock refresh.
    	Source          string    // Contains line, function and filename requesting the lock.
    	Group           bool      // indicates if it was a group lock.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Feb 19 22:54:46 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/orig/view/advance.jsp

    			<div class="form-group row">
    				<label for="as_timestamp" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message
    						key="labels.advance_search_timestamp"
    					/></label>
    				<div class="col-lg-5 col-md-8 col-sm-7 col-xs-6">
    					<select id="as_timestamp" name="as.timestamp" class="form-control">
    						<option value=""><la:message key="labels.advance_search_timestamp_default" /></option>
    						<option value="[now-1d/d TO *]"
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 14.9K bytes
    - Viewed (0)
Back to top