- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 19 for 8601 (0.03 sec)
-
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
* Default date time formatter for ISO 8601 format with UTC timezone. */ public static final DateTimeFormatter DEFAULT_DATE_PRINTER = ISODateTimeFormat.dateTime().withZone(DateTimeZone.UTC); /** * Converts a Date object to its string representation in ISO 8601 format. * * @param value The Date object to convert.Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:40:57 UTC 2025 - 34.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
} } /** * Writes the current timestamp to the crawling session information. * The timestamp is formatted in ISO 8601 extended format. * * @param crawlingInfoHelper helper for managing crawling session information * @param key the key under which to store the timestamp */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 31.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/net/HostAndPortTest.java
// Some nonsense that causes parse failures. checkFromStringCase("[goo.gl]", 1, null, 99, false); checkFromStringCase("[goo.gl]:80", 1, null, 99, false); checkFromStringCase("[", 1, null, 99, false); checkFromStringCase("[]:", 1, null, 99, false); checkFromStringCase("[]:80", 1, null, 99, false); checkFromStringCase("[]bad", 1, null, 99, false); } public void testFromStringParseableNonsense() {Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 28 16:03:47 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbConstants.java
int SIGNATURE_OFFSET = 14; /** TID offset in SMB header */ int TID_OFFSET = 24; /** SMB header length */ int HEADER_LENGTH = 32; /** Milliseconds between 1970 and 1601 */ long MILLISECONDS_BETWEEN_1970_AND_1601 = 11644473600000L; /** Default timezone */ TimeZone TZ = TimeZone.getDefault(); /** Whether to use batching */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Encdec.java
*/ public static final int TIME_1904_SEC_32LE = 4; /** * Time encoding type: 1601 epoch, 64-bit nanoseconds, little-endian. */ public static final int TIME_1601_NANOS_64LE = 5; /** * Time encoding type: 1601 epoch, 64-bit nanoseconds, big-endian. */ public static final int TIME_1601_NANOS_64BE = 6; /**Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmUtil.java
* * @param responseKeyNT the NT response key * @param serverChallenge the server challenge bytes * @param clientChallenge the client challenge bytes * @param nanos1601 the timestamp in nanoseconds since 1601 * @param avPairs the AV pairs from the Type 2 message * @return the calculated response */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0) -
docs/ru/docs/deployment/docker.md
# (4)! RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt # (5)! COPY ./app /code/app # (6)! CMD ["fastapi", "run", "app/main.py", "--port", "80"] ``` 1. Начинаем с официального базового образа Python. 2. Устанавливаем текущую рабочую директорию в `/code`. Здесь мы разместим файл `requirements.txt` и директорию `app`.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Sep 30 11:24:39 UTC 2025 - 44.7K bytes - Viewed (0) -
docs/zh/docs/deployment/docker.md
# (4) RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt # (5) COPY ./app /code/app # (6) CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"] ``` 1. 从官方Python基础镜像开始。 2. 将当前工作目录设置为`/code`。 这是我们放置`requirements.txt`文件和`app`目录的位置。 3. 将符合要求的文件复制到`/code`目录中。 首先仅复制requirements.txt文件,而不复制其余代码。
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 31.2K bytes - Viewed (0) -
docs/en/docs/deployment/docker.md
# (4)! RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt # (5)! COPY ./app /code/app # (6)! CMD ["fastapi", "run", "app/main.py", "--port", "80"] ``` 1. Start from the official Python base image. 2. Set the current working directory to `/code`. This is where we'll put the `requirements.txt` file and the `app` directory.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Sep 20 12:58:04 UTC 2025 - 29.5K bytes - Viewed (1) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt
if (year in 0..69) year += 2000 // If any partial is omitted or out of range, return -1. The date is impossible. Note that leap // seconds are not supported by this syntax. require(year >= 1601) require(month != -1) require(dayOfMonth in 1..31) require(hour in 0..23) require(minute in 0..59) require(second in 0..59) GregorianCalendar(UTC).apply {
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 23.1K bytes - Viewed (0)