- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 218 for timeStamp (0.07 sec)
-
okhttp-testing-support/src/main/kotlin/okhttp3/RecordingConnectionListener.kt
*/ private val enforceOrder: Boolean = true, ) : ConnectionListener() { val eventSequence: Deque<ConnectionEvent> = ConcurrentLinkedDeque() private val forbiddenLocks = mutableSetOf<Any>() /** The timestamp of the last taken event, used to measure elapsed time between events. */ private var lastTimestampNs: Long? = null /** Confirm that the thread does not hold a lock on `lock` during the callback. */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri May 30 21:28:20 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ActivityHelper.java
* @param valueMap The value map. */ protected void printByEcs(final Map<String, String> valueMap) { final StringBuilder buf = new StringBuilder(100); buf.append("{\"@timestamp\":\"").append(valueMap.remove("time")).append('"'); buf.append(",\"log.level\":\"INFO\""); buf.append(",\"ecs.version\":\"").append(ecsVersion).append('"');
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.8K bytes - Viewed (0) -
src/test/java/jcifs/util/SmbCircuitBreakerTest.java
} @Test public void testStateTransitionMetrics() throws Exception { long initialTime = circuitBreaker.getTimeSinceLastStateChange(); assertTrue(initialTime >= 0, "Should have initial timestamp"); // Trip circuit circuitBreaker.trip(); Thread.sleep(100); long afterTripTime = circuitBreaker.getTimeSinceLastStateChange();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java
} /** * Creates a ScheduledJob entity from form data with user and timestamp information. * * @param form the form containing the scheduled job data * @param username the username of the user performing the operation * @param currentTime the current timestamp * @return optional entity containing the scheduled job data, or empty if creation fails */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 22.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java
public String available; /** Sort order for the configuration */ public String sortOrder; /** User who created the configuration */ public String createdBy; /** Creation timestamp of the configuration */ public String createdTime; /** Version number of the configuration */ public String versionNo; /** Description of the configuration */ public String description;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java
*/ public String queries; /** * User who created the related query entry. */ public String createdBy; /** * Timestamp when the related query was created. */ public String createdTime; /** * Version number for optimistic locking. */ public String versionNo; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.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 - 16.7K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type3MessageTest.java
| NtlmFlags.NTLMSSP_NEGOTIATE_EXTENDED_SESSIONSECURITY; Type2Message type2 = new Type2Message(createMockContext(), flags, challenge, "TARGET"); // Create target information with timestamp for NTLMv2 List<AvPair> pairs = new LinkedList<>(); pairs.add(new AvTargetName("TARGET")); pairs.add(new AvTimestamp(System.currentTimeMillis())); pairs.add(new AvFlags(0));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
* This cache is refreshed periodically based on the lastLoadedTime. */ protected String[] dataStoreNames = StringUtil.EMPTY_STRINGS; /** * Timestamp of the last time data store names were loaded from plugin files. * Used to implement a time-based cache refresh mechanism. */ protected long lastLoadedTime = 0; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0) -
docs/features/events.md
 Here’s a [sample event listener](https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/PrintEventsNonConcurrent.java) that prints each event with a timestamp. ```java class PrintingEventListener extends EventListener { private long callStartNanos; private void printEvent(String name) { long nowNanos = System.nanoTime(); if (name.equals("callStart")) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 7.7K bytes - Viewed (0)