- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 244 for track (0.02 sec)
-
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
private long authenticationTTL = 3600000L; // 1 hour default /** Timestamp when the authentication was created */ private long authenticationTimestamp = System.currentTimeMillis(); /** Flag to track if this authenticator has been closed */ private volatile boolean closed = false; /** * Construct anonymous credentials */ public NtlmPasswordAuthenticator() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K bytes - Viewed (0) -
src/main/java/jcifs/util/SecureKeyManager.java
SecretKey secretKey = new SecretKeySpec(keyClone, algorithm); // Store in memory sessionKeys.put(sessionId, secretKey); rawKeys.put(sessionId, keyClone); // Track creation time for rotation (only for non-archived keys) if (!sessionId.contains(".v")) { keyCreationTimes.put(sessionId, System.currentTimeMillis()); keyVersions.putIfAbsent(sessionId, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 21.5K bytes - Viewed (0) -
docs/changelogs/changelog_2x.md
misleading; it was always used to configure redirects between `https://` and `http://` schemes. * **RouteDatabase is no longer public API.** OkHttp continues to track which routes have failed but this is no exposed in the API. * **ResponseSource is gone.** This enum exposed whether a response came from the cache, network, or both. OkHttp 2 offers more detail with raw access to
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
*/ public SearchConditionBuilder scroll() { isScroll = true; return this; } /** * Sets the track total hits configuration. * * @param trackTotalHits the track total hits setting * @return this builder for method chaining */ public SearchConditionBuilder trackTotalHits(final String trackTotalHits) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* * @return whether to use strict resource lifecycle */ boolean isStrictResourceLifecycle(); /** * This is solely intended for debugging * * @return whether to track the locations from which resources were created */ boolean isTraceResourceUsage(); /** * Checks if compound requests are allowed for the specified command *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.33.md
- `kubeproxy_conntrack_reconciler_deleted_entries_total` metric can be used to track cumulative sum of conntrack flows cleared by reconciler. ([#130204](https://github.com/kubernetes/kubernetes/pull/130204), [@aroradaman](https://github.com/aroradaman))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 19:46:23 UTC 2025 - 294.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** * Get the value for the key 'query.track.total.hits'. <br> * The value is, e.g. 10000 <br> * comment: Maximum number of total hits to track in queries. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getQueryTrackTotalHits(); /** * Get the value for the key 'query.track.total.hits' as {@link Integer}. <br>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1) -
src/main/webapp/css/admin/bootstrap.min.css.map
gradient-bg($custom-range-thumb-active-bg);\n }\n }\n\n &::-webkit-slider-runnable-track {\n width: $custom-range-track-width;\n height: $custom-range-track-height;\n color: transparent; // Why?\n cursor: $custom-range-track-cursor;\n background-color: $custom-range-track-bg;\n border-color: transparent;\n @include border-radius($custom-range-track-border-radius);\n @include box-shadow($custom-range-track-box-shadow);\n }\n\n &::-moz-range-thumb {\n width: $custom-range-thumb-width;\n...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 639.3K bytes - Viewed (1) -
guava/src/com/google/common/net/MediaType.java
/** * As described in <a href="https://w3c.github.io/webvtt/#iana-text-vtt">the VTT spec</a>, this is * used for Web Video Text Tracks (WebVTT) files, used with the HTML5 track element. * * @since 20.0 */ public static final MediaType VTT_UTF_8 = createConstantUtf8(TEXT_TYPE, "vtt"); /* image types */ /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java
} /** * A {@code LockGraphNode} associated with each lock instance keeps track of the directed edges in * the lock acquisition graph. */ private static final class LockGraphNode { /** * The map tracking the locks that are known to be acquired before this lock, each associated * with an example stack trace. Locks are weakly keyed to allow proper garbage collection when
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 18 15:05:43 UTC 2025 - 35.9K bytes - Viewed (0)