Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 175 for timeStamp (0.21 sec)

  1. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

             * @return The nonce.
             */
            public String getNonce() {
                return nonce;
            }
    
            /**
             * Gets the expiration timestamp.
             * @return The expiration timestamp.
             */
            public long getExpiration() {
                return expiration;
            }
    
            @Override
            public String toString() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 37.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

    import java.lang.reflect.Constructor;
    import java.lang.reflect.Field;
    import java.lang.reflect.Method;
    import java.lang.reflect.Type;
    import java.lang.reflect.TypeVariable;
    import java.sql.Time;
    import java.sql.Timestamp;
    import java.util.Collection;
    import java.util.Map;
    
    import org.codelibs.core.beans.BeanDesc;
    import org.codelibs.core.beans.ParameterizedClassDesc;
    import org.codelibs.core.beans.PropertyDesc;
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/reqheader/AdminReqheaderAction.java

        /**
         * Creates a RequestHeader entity from form data with user and timestamp information.
         *
         * @param form the form containing the request header data
         * @param username the username of the user performing the operation
         * @param currentTime the current timestamp
         * @return optional entity containing the request header data, or empty if creation fails
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess/doc.json

          },
          "content_length": {
            "type": "long"
          },
          "created": {
            "type": "date",
            "format": "date_optional_time"
          },
          "timestamp": {
            "type": "date",
            "format": "date_optional_time"
          },
          "expires": {
            "type": "date",
            "format": "date_optional_time"
          },
          "digest": {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. src/main/config/openapi/openapi-user.yaml

              required: false
              style: form
              explode: true
              schema:
                type: array
                items:
                  type: string
                example: ["timestamp:[now/d-1d TO *]"]
            - name: facet.size
              in: query
              description: Item size in facets returned by facet.field
              required: false
              schema:
                type: integer
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. okhttp-testing-support/src/main/kotlin/okhttp3/RecordingConnectionListener.kt

       */
      private val enforceOrder: Boolean = true,
    ) : ConnectionListener() {
      val eventSequence: Deque<ConnectionEvent> = ConcurrentLinkedDeque()
    
      private val forbiddenLocks = mutableSetOf<Any>()
    
      /** The timestamp of the last taken event, used to measure elapsed time between events. */
      private var lastTimestampNs: Long? = null
    
      /** Confirm that the thread does not hold a lock on `lock` during the callback. */
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri May 30 21:28:20 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

         * @param valueMap The value map.
         */
        protected void printByEcs(final Map<String, String> valueMap) {
            final StringBuilder buf = new StringBuilder(100);
            buf.append("{\"@timestamp\":\"").append(valueMap.remove("time")).append('"');
            buf.append(",\"log.level\":\"INFO\"");
            buf.append(",\"ecs.version\":\"").append(ecsVersion).append('"');
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java

        }
    
        /**
         * Creates a ScheduledJob entity from form data with user and timestamp information.
         *
         * @param form the form containing the scheduled job data
         * @param username the username of the user performing the operation
         * @param currentTime the current timestamp
         * @return optional entity containing the scheduled job data, or empty if creation fails
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 22.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java

        public String available;
    
        /** Sort order for the configuration */
        public String sortOrder;
    
        /** User who created the configuration */
        public String createdBy;
    
        /** Creation timestamp of the configuration */
        public String createdTime;
    
        /** Version number of the configuration */
        public String versionNo;
    
        /** Description of the configuration */
        public String description;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java

         */
        public String queries;
    
        /**
         * User who created the related query entry.
         */
        public String createdBy;
    
        /**
         * Timestamp when the related query was created.
         */
        public String createdTime;
    
        /**
         * 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
    - 7.2K bytes
    - Viewed (0)
Back to top