Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 214 for notimestamp (0.05 sec)

  1. src/main/java/org/codelibs/fess/dict/mapping/CharMappingCreator.java

            dictionaryManager.addCreator(this);
        }
    
        @Override
        protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) {
            return new CharMappingFile(id, path, timestamp).manager(dictionaryManager);
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java

            final String k = "timestamp";
            assertEquals("", getAsQuery(Collections.singletonMap(k, new String[] { "" })));
            assertEquals("timestamp:2023-01-01", getAsQuery(Collections.singletonMap(k, new String[] { "2023-01-01" })));
            assertEquals("timestamp:2023-12-31", getAsQuery(Collections.singletonMap(k, new String[] { " 2023-12-31 " })));
            assertEquals("timestamp:2023-01-01 timestamp:2023-12-31",
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/badword/CreateForm.java

         */
        @Size(max = 1000)
        public String createdBy;
    
        /**
         * The timestamp when this bad word entry was created.
         */
        @ValidateTypeFailure
        public Long createdTime;
    
        /**
         * Initializes the form with default values including current user and timestamp.
         */
        public void initialize() {
            createdBy = ComponentUtil.getSystemHelper().getUsername();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/witness/WitnessRegistration.java

            return System.currentTimeMillis() - lastHeartbeat > timeoutMs;
        }
    
        // Getters and setters
    
        /**
         * Gets the last heartbeat timestamp.
         *
         * @return the last heartbeat timestamp in milliseconds
         */
        public long getLastHeartbeat() {
            return lastHeartbeat;
        }
    
        /**
         * Gets the registration ID.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

                    Set.of(), //
                    buildQuery("timestamp:[* TO 100]"));
            assertQueryContext(
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java

         * @param timestamp The last modified timestamp of the file.
         * @return A new {@link SynonymFile} associated with the dictionary manager.
         */
        @Override
        protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) {
            return new SynonymFile(id, path, timestamp).manager(dictionaryManager);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/ntlmssp/Type3Message.java

    import jcifs.SmbConstants;
    import jcifs.ntlmssp.av.AvFlags;
    import jcifs.ntlmssp.av.AvPair;
    import jcifs.ntlmssp.av.AvPairs;
    import jcifs.ntlmssp.av.AvSingleHost;
    import jcifs.ntlmssp.av.AvTargetName;
    import jcifs.ntlmssp.av.AvTimestamp;
    import jcifs.smb.NtlmUtil;
    import jcifs.util.Crypto;
    
    /**
     * Represents an NTLMSSP Type-3 message.
     */
    public class Type3Message extends NtlmMessage {
    
        private byte[] lmResponse;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  8. compat/maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferResource.java

         *
         * @return The of the artifact in bytes or a negative value if unknown.
         */
        long getContentLength();
    
        /**
         * Gets the timestamp when the transfer of this artifact was started.
         *
         * @return The timestamp when the transfer of this artifact was started.
         */
        long getTransferStartTime();
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

         *
         * @param id The ID of the dictionary file.
         * @param path The path of the dictionary file.
         * @param timestamp The timestamp of the dictionary file.
         */
        public KuromojiFile(final String id, final String path, final Date timestamp) {
            super(id, path, timestamp);
        }
    
        @Override
        public String getType() {
            return KUROMOJI;
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/advance.jsp

    							<c:if test="${as.timestamp.contains('[now-1w/d TO *]')}">selected</c:if>
    						><la:message key="labels.advance_search_timestamp_pastweek" /></option>
    						<option value="[now-1M/d TO *]"
    							<c:if test="${as.timestamp.contains('[now-1M/d TO *]')}">selected</c:if>
    						><la:message key="labels.advance_search_timestamp_pastmonth" /></option>
    						<option value="[now-1y/d TO *]"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 14.1K bytes
    - Viewed (0)
Back to top