- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 268 for notimestamp (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java
* Creates an ElevateWord entity based on the form and operation mode. * * @param form create form containing elevate word data * @param username current user's username * @param currentTime current timestamp * @return optional ElevateWord entity */ public static OptionalEntity<ElevateWord> getEntity(final CreateForm form, final String username, final long currentTime) { switch (form.crudMode) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java
assertTrue(searchRequestParams.hasConditionQuery()); } public void test_hasConditionQuery_withTimestamp() { // Test with timestamp testParams.conditions.put(SearchRequestParams.AS_TIMESTAMP, new String[] { "2024-01-01" }); assertTrue(searchRequestParams.hasConditionQuery()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.2K bytes - Viewed (0) -
chainable_api.go
tx.Statement.assigns = attrs return } // Unscoped disables the global scope of soft deletion in a query. // By default, GORM uses soft deletion, marking records as "deleted" // by setting a timestamp on a specific field (e.g., `deleted_at`). // Unscoped allows queries to include records marked as deleted, // overriding the soft deletion behavior. // Example: // // var users []User // db.Unscoped().Find(&users)
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sun May 25 07:40:40 UTC 2025 - 14.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
* * @return the negotiateContexts */ public NegotiateContextResponse[] getNegotiateContexts() { return this.negotiateContexts; } /** * Gets the server start time timestamp. * * @return the serverStartTime */ public long getServerStartTime() { return this.serverStartTime; } /** * Gets the security mode flags from the server.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
cmd/object-api-interface.go
Cached bool // true only when we are requesting a cached response instead of hitting the disk for example ListBuckets() call. NoMetadata bool } // SetReplicaStatus sets replica status and timestamp for delete operations in ObjectOptions func (o *ObjectOptions) SetReplicaStatus(st replication.StatusType) { o.DeleteReplication.ReplicaStatus = st o.DeleteReplication.ReplicaTimeStamp = UTCNow() }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Sep 07 16:13:09 UTC 2025 - 17.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
if (lastModified != null) { putResultDataBody(dataMap, fessConfig.getIndexFieldLastModified(), lastModified); // timestamp putResultDataBody(dataMap, fessConfig.getIndexFieldTimestamp(), lastModified); } else { // timestamp putResultDataBody(dataMap, fessConfig.getIndexFieldTimestamp(), now); } // indexingTarget
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.4K bytes - Viewed (0) -
cmd/bucket-metadata.go
internalLogIf(ctx, err, logger.WarningKind) } } return nil } // default timestamps to metadata Created timestamp if unset. func (b *BucketMetadata) defaultTimestamps() { if b.PolicyConfigUpdatedAt.IsZero() { b.PolicyConfigUpdatedAt = b.Created } if b.EncryptionConfigUpdatedAt.IsZero() {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 16 14:27:42 UTC 2025 - 18.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java
public String getIndexFieldLastModified() { return "last_modified"; } @Override public String getIndexFieldTimestamp() { return "timestamp"; } @Override public String getIndexFieldMimetype() { return "mimetype"; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33.2K bytes - Viewed (0) -
cmd/admin-handlers.go
} } writeSuccessResponseJSON(w, dataUsageInfoJSON) } func lriToLockEntry(l lockRequesterInfo, now time.Time, resource, server string) *madmin.LockEntry { t := time.Unix(0, l.Timestamp) entry := &madmin.LockEntry{ Timestamp: t, Elapsed: now.Sub(t), Resource: resource, ServerList: []string{server}, Source: l.Source, Owner: l.Owner, ID: l.UID, Quorum: l.Quorum,
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 99.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.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 targetInfo the target information from the Type 2 message * @return the NTLMv2 response bytes */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.7K bytes - Viewed (0)