Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 353 for DATE (0.04 sec)

  1. src/main/config/es/fess_log_user_info.json

    {
      "fess_log.user_info" : {
        "aliases" : { },
        "mappings" : {
          "user_info" : {
            "properties" : {
              "createdAt" : {
                "type" : "date",
                "format" : "date_optional_time"
              },
              "updatedAt" : {
                "type" : "date",
                "format" : "date_optional_time"
              }
            }
          }
        },
        "settings" : {
          "index" : {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Nov 05 07:28:42 UTC 2017
    - 689 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/dict/ListBody.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.dict;
    
    import java.util.Date;
    
    import org.codelibs.fess.app.web.admin.dict.ListForm;
    
    /**
     * The request body for listing dictionaries.
     */
    public class ListBody extends ListForm {
        /**
         * Default constructor.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/smb1/SmbComNegotiateResponseTest.java

    import java.io.UnsupportedEncodingException;
    import java.net.InetAddress;
    import java.net.UnknownHostException;
    import java.nio.ByteBuffer;
    import java.nio.ByteOrder;
    import java.util.Date;
    
    import org.junit.jupiter.api.BeforeEach;
    import org.junit.jupiter.api.Test;
    
    import jcifs.smb1.UniAddress;
    
    /**
     * Unit tests for the SmbComNegotiateResponse class.
     */
    class SmbComNegotiateResponseTest {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheStrategy.kt

        private var servedDate: Date? = null
        private var servedDateString: String? = null
    
        /** The last modified date of the cached response, if known. */
        private var lastModified: Date? = null
        private var lastModifiedString: String? = null
    
        /**
         * The expiration date of the cached response, if known. If both this field and the max age are
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 12K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/beans/util/MyBean2.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.beans.util;
    
    import java.util.Date;
    
    /**
     * @author higa
     */
    public class MyBean2 {
    
        /**
         *
         */
        public Date aaa;
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 779 bytes
    - Viewed (0)
  6. src/test/java/jcifs/util/EncdecTest.java

                Encdec.dec_uint32le(smallBuffer, 0);
            });
        }
    
        @Test
        @DisplayName("Should handle time encoding/decoding")
        void testTimeOperations() {
            // Given
            Date currentDate = new Date();
            byte[] buffer = new byte[8];
    
            // When - Use direct encoding methods since time constants are private
            Encdec.enc_uint64le(currentDate.getTime(), buffer, 0);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java

                    + ",createAction=0x" + Hexdump.toHexString(this.createAction, 4) + ",creationTime=" + new Date(this.creationTime)
                    + ",lastAccessTime=" + new Date(this.lastAccessTime) + ",lastWriteTime=" + new Date(this.lastWriteTime) + ",changeTime="
                    + new Date(this.changeTime) + ",extFileAttributes=0x" + Hexdump.toHexString(this.extFileAttributes, 4) + ",allocationSize="
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java

            }
    
            /**
             * @param date
             */
            public void setBaz(final Map<String, Date> date) {
            }
    
            /** */
            public List<?> hoge;
    
            /**
             * @return Set
             */
            public Set<? extends Enum<?>> getFuga() {
                return null;
            }
    
            /**
             * @param date
             */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Fri Jun 20 13:40:57 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  9. src/main/resources/log4j2.xml

    		<Property name="log.pattern" value="%d [%t] %-5p %msg%n" />
    		<Property name="log.file.basedir" value="${sys:fess.log.path:-target/logs}" />
    		<Property name="backup.date.suffix" value="_%d{yyyyMMdd}" />
    		<Property name="backup.max.history" value="10" />
    		<Property name="backup.max.age" value="90" />
    		<Property name="backup.audit.max.age" value="360" />
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Feb 20 13:17:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/convert/ShortConversionUtil.java

            } else if (o instanceof String) {
                return toShort((String) o);
            } else if (o instanceof java.util.Date) {
                if (pattern != null) {
                    return Short.valueOf(new SimpleDateFormat(pattern).format(o));
                }
                return (short) ((java.util.Date) o).getTime();
            } else if (o instanceof Boolean) {
                return ((Boolean) o) ? (short) 1 : (short) 0;
            } else {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.8K bytes
    - Viewed (0)
Back to top