Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for as_timestamp (0.17 sec)

  1. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

        public static final String AS_FILETYPE = "filetype";
    
        public static final String AS_SITESEARCH = "sitesearch";
    
        public static final String AS_OCCURRENCE = "occt";
    
        public static final String AS_TIMESTAMP = "timestamp";
    
        public abstract String getQuery();
    
        public abstract Map<String, String[]> getFields();
    
        public abstract Map<String, String[]> getConditions();
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

                            .forEach(q -> queryBuf.append(" site:").append(q.trim())));
            stream(conditions.get(SearchRequestParams.AS_TIMESTAMP))
                    .of(stream -> stream.filter(q -> StringUtil.isNotBlank(q) && q.length() <= maxQueryLength)
                            .forEach(q -> queryBuf.append(" timestamp:").append(q.trim())));
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // The time at which the most recent occurrence of this event was recorded.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTimestamp = 7;
    
      // The number of times this event has occurred.
      // +optional
      optional int32 count = 8;
    
      // Type of this event (Normal, Warning), new types could be added in the future
      // +optional
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
Back to top