Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 218 for timeStamp (0.14 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/reqheader/EditForm.java

         * Used for audit trail purposes to track who made changes.
         */
        @Size(max = 1000)
        public String updatedBy;
    
        /**
         * The timestamp when this request header configuration was last updated.
         * Stored as a long value representing milliseconds since epoch.
         * Used for audit trail and concurrency control.
         */
        @ValidateTypeFailure
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. okhttp-osgi-tests/build.gradle.kts

      runtimeClasspath {
        /*
           - The below two ignored files are generated during test execution
           by the test: okhttp/src/test/java/okhttp3/osgi/OsgiTest.java
    
           - The compressed index.xml file contains a timestamp property which
           changes with every test execution, such that running the test
           actually changes the test classpath itself. This means that it
           can"t benefit from incremental build acceleration, because on every
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:17:18 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            if (lastModified != null) {
                dataMap.put(fessConfig.getIndexFieldLastModified(), lastModified); // overwrite
                // timestamp
                putResultDataBody(dataMap, fessConfig.getIndexFieldTimestamp(), lastModified);
            } else {
                // timestamp
                putResultDataBody(dataMap, fessConfig.getIndexFieldTimestamp(), now);
            }
            // indexingTarget
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/fe.tld

        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>java.lang.String pagingQuery(java.lang.String)</function-signature>
        <example>
          ${fe:pagingQuery("ex_q=timestamp:")}
        </example>
      </function>
    
      <function>
        <description>
          Returns query parameters for Facet.
        </description>
        <name>facetQuery</name>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:38:54 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/EditForm.java

        /**
         * The expiration time for the crawling session.
         * This field indicates when the crawling session should expire or be cleaned up.
         */
        public String expiredTime;
    
        /**
         * The timestamp when this crawling session was created.
         * Stored as a long value representing milliseconds since epoch.
         */
        @ValidateTypeFailure
        public Long createdTime;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  6. docs/smb3-features/06-witness-protocol-design.md

    ```java
    package jcifs.internal.witness;
    
    import java.util.List;
    import java.util.ArrayList;
    
    public class WitnessNotification {
        private final WitnessEventType eventType;
        private final long timestamp;
        private final String resourceName;
        private final List<WitnessIPAddress> newIPAddresses;
        private final List<WitnessIPAddress> oldIPAddresses;
        private final String clientAccessPoint;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java

        /** The file configuration ID associated with this authentication. */
        public String fileConfigId;
    
        /** The user who created this file authentication entry. */
        public String createdBy;
    
        /** The timestamp when this file authentication entry was created. */
        public String createdTime;
    
        /** The version number for optimistic locking. */
        public String versionNo;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java

         *
         * @param form the form containing duplicate host data
         * @param username the current username
         * @param currentTime the current timestamp
         * @return optional duplicate host entity
         */
        public static OptionalEntity<DuplicateHost> getEntity(final CreateForm form, final String username, final long currentTime) {
            switch (form.crudMode) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheStrategy.kt

         */
        private var expires: Date? = null
    
        /**
         * Extension header set by OkHttp specifying the timestamp when the cached HTTP request was
         * first initiated.
         */
        private var sentRequestMillis = 0L
    
        /**
         * Extension header set by OkHttp specifying the timestamp when the cached HTTP response was
         * first received.
         */
        private var receivedResponseMillis = 0L
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 12K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/query/QueryTestBase.java

                public String getIndexFieldSite() {
                    return "site";
                }
    
                @Override
                public String getIndexFieldTimestamp() {
                    return "timestamp";
                }
    
                @Override
                public String getIndexFieldId() {
                    return "_id";
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.6K bytes
    - Viewed (0)
Back to top