Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 90 for Timestamp (0.17 sec)

  1. 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)
  2. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

                    buildQuery("sort:timestamp.desc"));
    
            assertQueryContext(query, Map.of(), //
                    Set.of(), //
                    "{\"timestamp\":{\"order\":\"desc\"}}{\"last_modified\":{\"order\":\"asc\"}}", //
                    buildQuery("sort:timestamp.desc sort:last_modified"));
            assertQueryContext(query, Map.of(), //
                    Set.of(), //
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 37.3K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMavenMetadataCache.java

                if (pomFile != null && pomFile.canRead()) {
                    this.length = pomFile.length();
                    this.timestamp = pomFile.lastModified();
                } else {
                    this.length = -1;
                    this.timestamp = -1;
                }
            }
    
            public Artifact getArtifact() {
                return pomArtifact;
            }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/beans/util/CopyOptionsTest.java

            assertThat(new CopyOptions().findDefaultConverter(Timestamp.class), is(CopyOptions.DEFAULT_TIMESTAMP_CONVERTER));
            assertThat(new CopyOptions().findDefaultConverter(java.util.Date.class), is(CopyOptions.DEFAULT_TIMESTAMP_CONVERTER));
            assertThat(new CopyOptions().findDefaultConverter(java.sql.Date.class), is(CopyOptions.DEFAULT_DATE_CONVERTER));
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 12K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.cc

      if (block->state != FetchState::FINISHED) {
        return true;  // No need to check for staleness.
      }
      if (max_staleness_ == 0) return true;  // Not enforcing staleness.
      return timer_seconds_() - block->timestamp <= max_staleness_;
    }
    
    std::shared_ptr<RamFileBlockCache::Block> RamFileBlockCache::Lookup(
        const Key& key) {
      absl::MutexLock lock(&mu_);
      auto entry = block_map_.find(key);
      if (entry != block_map_.end()) {
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Jul 16 01:39:09 GMT 2020
    - 11.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java

                ggg_ = ggg;
            }
    
            /**
             * @return Timestamp
             */
            public Timestamp getHhh() {
                return hhh_;
            }
    
            /**
             * @param hhh
             */
            public void setHhh(final Timestamp hhh) {
                hhh_ = hhh;
            }
    
            /**
             * @param iii
             */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/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)
  8. maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

                    versions.releaseRepository = repository;
                }
    
                if (versioning.getLatest() != null
                        && !versioning.getLatest().isEmpty()
                        && timestamp.compareTo(versions.latestTimestamp) > 0) {
                    versions.latestVersion = versioning.getLatest();
                    versions.latestTimestamp = timestamp;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 15.7K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_de.properties

    labels.advance_search_sitesearch=Seite oder Domain
    labels.advance_search_timestamp=Letzte Ă„nderung
    labels.advance_search_timestamp_default=jederzeit
    labels.advance_search_timestamp_pastday=letzte 24 Stunden
    labels.advance_search_timestamp_pastweek=letzte Woche
    labels.advance_search_timestamp_pastmonth=letzter Monat
    labels.advance_search_timestamp_pastyear=letztes Jahr
    labels.searchlog_configuration=Suchverlauf
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                    for (int i = 0; i < nodeList.getLength(); i++) {
                        final Node node = nodeList.item(i);
                        if ("timestamp".equalsIgnoreCase(node.getNodeName())) {
                            timestamp = node.getTextContent();
                        } else if ("buildNumber".equalsIgnoreCase(node.getNodeName())) {
                            buildNumber = node.getTextContent();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
Back to top