Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 284 for Tate (0.22 sec)

  1. internal/bucket/lifecycle/expiration.go

    		return nil
    	}
    	return e.EncodeElement(int(eDays), startElement)
    }
    
    // ExpirationDate is a embedded type containing time.Time to unmarshal
    // Date in Expiration
    type ExpirationDate struct {
    	time.Time
    }
    
    // UnmarshalXML parses date from Expiration and validates date format
    func (eDate *ExpirationDate) UnmarshalXML(d *xml.Decoder, startElement xml.StartElement) error {
    	var dateStr string
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Feb 21 20:28:34 GMT 2024
    - 6.6K bytes
    - Viewed (1)
  2. src/test/java/org/codelibs/fess/taglib/FessFunctionsTest.java

        }
    
        public void test_parseDate() {
            Date date;
    
            date = FessFunctions.parseDate("");
            assertNull(date);
    
            date = FessFunctions.parseDate("2004-04-01T12:34:56.123Z");
            assertEquals("2004-04-01T12:34:56.123Z", FessFunctions.formatDate(date));
    
            date = FessFunctions.parseDate("2004-04-01T12:34:56Z");
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess_log.user_info/user_info.json

    {
        "properties": {
          "createdAt": {
            "type": "date",
            "format": "date_optional_time"
          },
          "updatedAt": {
            "type": "date",
            "format": "date_optional_time"
          }
        }
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Feb 24 22:07:26 GMT 2019
    - 215 bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/PacDataInputStream.java

            return ( readInt() ) & 0xffffffffL;
        }
    
    
        public int readUnsignedShort () throws IOException {
            return ( readShort() ) & 0xffff;
        }
    
    
        public Date readFiletime () throws IOException {
            Date date = null;
    
            long last = readUnsignedInt();
            long first = readUnsignedInt();
            if ( first != 0x7fffffffL && last != 0xffffffffL ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jul 21 21:19:58 GMT 2018
    - 5.1K bytes
    - Viewed (0)
  5. samples/guide/src/main/java/okhttp3/recipes/CurrentDateHeader.java

          System.out.println(response.request().header("Date"));
        }
      }
    
      static class CurrentDateInterceptor implements Interceptor {
        @Override public Response intercept(Chain chain) throws IOException {
          Request request = chain.request();
          Headers newHeaders = request.headers()
              .newBuilder()
              .add("Date", new Date())
              .build();
          Request newRequest = request.newBuilder()
    Java
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Oct 31 15:32:50 GMT 2018
    - 1.8K bytes
    - Viewed (0)
  6. src/main/config/es/fess_log_click_log.json

              },
              "queryId" : {
                "type" : "keyword"
              },
              "queryRequestedAt" : {
                "type" : "date",
                "format" : "date_optional_time"
              },
              "requestedAt" : {
                "type" : "date",
                "format" : "date_optional_time"
              },
              "url" : {
                "type" : "keyword"
              },
              "userSessionId" : {
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jun 30 05:55:50 GMT 2018
    - 1.1K bytes
    - Viewed (0)
  7. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/provider/BuildTimestampValueSource.kt

                    runningDocsTestTask.get() -> "from current time because testing docs"
                    runningOnCi.get() -> "from current time because CI"
                    else -> "from current date"
                }
            }
    
        private
        fun Date.withoutTime(): Date = SimpleDateFormat("yyyy-MM-dd").run {
            parse(format(this@withoutTime))
        }
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/exentity/AccessToken.java

            asDocMeta().version(version);
        }
    
        public Date getExpires() {
            if (getExpiredTime() == null) {
                return null;
            }
            return new Date(getExpiredTime());
        }
    
        public void setExpires(final Date date) {
            setExpiredTime(date != null ? date.getTime() : null);
        }
    
        @Override
        public String toString() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/fscc/FileBasicInfo.java

    
        @Override
        public String toString () {
            return new String(
                "SmbQueryFileBasicInfo[" + "createTime=" + new Date(this.createTime) + ",lastAccessTime=" + new Date(this.lastAccessTime)
                        + ",lastWriteTime=" + new Date(this.lastWriteTime) + ",changeTime=" + new Date(this.changeTime) + ",attributes=0x"
                        + Hexdump.toHexString(this.attributes, 4) + "]");
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.2K bytes
    - Viewed (0)
  10. dbflute_fess/dfprop/conditionBeanMap.dfprop

            #; !NotInScope = map:{ $$ALL$$ = list:{ $$VersionNo$$ } }
        }
        ; Date = map:{
            # [Include]
            # Date columns may not be needed
            # to be set these condition-keys basically.
            ; NotEqual = map:{}
            ; InScope = map:{}
            ; NotInScope = map:{}
    
            # [Exclude]
            # Common columns of Date type may not be needed
            # to be set these condition-keys basically.
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 4K bytes
    - Viewed (0)
Back to top