- Sort Score
- Num 10 results
- Language All
Results 91 - 100 of 316 for TIMESTAMP (0.07 seconds)
-
src/main/java/jcifs/internal/smb2/persistent/HandleInfo.java
* The timeout in milliseconds for durable handles (not applicable for persistent handles) */ private final long timeout; /** * The timestamp when this handle was created */ private final long createTime; /** * The timestamp of the last access to this handle */ private volatile long lastAccessTime; /** * The associated lease key if this handle has an SMB2 lease
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 5.9K bytes - Click Count (0) -
pom.xml
<url>https://github.com/codelibs/jcifs</url> <tag>HEAD</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format> <osgi-version-qualifier>${maven.build.timestamp}</osgi-version-qualifier> <osgi.version>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.${osgi-version-qualifier}</osgi.version>
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Mon Aug 25 14:34:10 GMT 2025 - 12.1K bytes - Click Count (0) -
src/main/java/org/codelibs/core/misc/DynamicProperties.java
*/ protected long checkInterval = 5000L; /** * The timestamp of the last check for file modifications. */ protected volatile long lastChecked = 0L; /** * The timestamp of the last modification of the properties file. */ protected volatile long lastModified = 0L; /** * The properties file.Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 13.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java
* @param id The unique identifier for this dictionary file. * @param path The path to the dictionary file. * @param timestamp The last modified timestamp of the file. */ public StemmerOverrideFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); } @Override public String getType() { return STEMMER_OVERRIDE; } @OverrideCreated: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Dec 20 05:56:45 GMT 2025 - 14.2K bytes - Click Count (0) -
src/main/resources/suggest_indices/suggest/mappings-default.json
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Fri Jan 06 03:01:29 GMT 2017 - 760 bytes - Click Count (0) -
docs_src/response_directly/tutorial001_py310.py
from fastapi import FastAPI from fastapi.encoders import jsonable_encoder from fastapi.responses import JSONResponse from pydantic import BaseModel class Item(BaseModel): title: str timestamp: datetime description: str | None = None app = FastAPI() @app.put("/items/{id}") def update_item(id: str, item: Item): json_compatible_item_data = jsonable_encoder(item)
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 10 08:55:32 GMT 2025 - 474 bytes - Click Count (0) -
src/main/java/jcifs/smb1/dcerpc/rpc.java
// Default constructor } /** * The low field of the timestamp. */ public int time_low; /** * The middle field of the timestamp. */ public short time_mid; /** * The high field of the timestamp multiplexed with the version number. */ public short time_hi_and_version; /**Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 11.2K bytes - Click Count (0) -
docs_src/encoder/tutorial001_py39.py
from typing import Union from fastapi import FastAPI from fastapi.encoders import jsonable_encoder from pydantic import BaseModel fake_db = {} class Item(BaseModel): title: str timestamp: datetime description: Union[str, None] = None app = FastAPI() @app.put("/items/{id}") def update_item(id: str, item: Item): json_compatible_item_data = jsonable_encoder(item)Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 461 bytes - Click Count (0) -
src/test/java/org/codelibs/core/beans/util/CopyOptionsTest.java
import static org.hamcrest.CoreMatchers.nullValue; import static org.hamcrest.CoreMatchers.sameInstance; import static org.junit.Assert.assertThat; import java.sql.Time; import java.sql.Timestamp; import java.util.Date; import org.codelibs.core.beans.converter.DateConverter; import org.codelibs.core.beans.converter.NumberConverter; import org.codelibs.core.exception.ConverterRuntimeException;
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Fri Jun 20 13:40:57 GMT 2025 - 12K bytes - Click Count (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
/** * Field name for URL. */ protected static final String URL = "url"; /** * Field name for last modified timestamp. */ protected static final String LAST_MODIFIED = "lastModified"; /** * Field name for creation time timestamp. */ protected static final String CREATE_TIME = "createTime"; /** * Document type. */Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Nov 20 08:40:57 GMT 2025 - 34.3K bytes - Click Count (0)