- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 220 for traceCh (0.03 sec)
-
tests/lru_test.go
l := lru.NewLRU[int64, int64](8192, nil, 0) trace := make([]int64, b.N*2) for i := 0; i < b.N*2; i++ { if i%2 == 0 { trace[i] = getRand(b) % 16384 } else { trace[i] = getRand(b) % 32768 } } b.ResetTimer() for i := 0; i < b.N; i++ { l.Add(trace[i], trace[i]) } var hit, miss int for i := 0; i < b.N; i++ { if _, ok := l.Get(trace[i]); ok { hit++ } else { miss++
Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Mon Sep 08 09:19:22 UTC 2025 - 10.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstallerRequest.java
this.session = session; return this; } @Nonnull public ArtifactInstallerRequestBuilder trace(RequestTrace trace) { this.trace = trace; return this; } @Nonnull public ArtifactInstallerRequestBuilder artifacts(@Nullable Collection<ProducedArtifact> artifacts) { this.artifacts = artifacts != null ? artifacts : Collections.emptyList();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 4.2K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlTest.java
// ## Note: There's no Curl.trace() factory method, but we can use the constructor ## // ## Act ## final CurlRequest request = new CurlRequest(Method.TRACE, "http://example.com"); // ## Assert ## assertNotNull(request); assertEquals(Method.TRACE, request.method()); } @Test public void test_MethodEnumValueOf() {
Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 16.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionResolverRequest.java
Session session; RequestTrace trace; ArtifactCoordinates artifactCoordinates; List<RemoteRepository> repositories; public VersionResolverRequestBuilder session(Session session) { this.session = session; return this; } public VersionResolverRequestBuilder trace(RequestTrace trace) { this.trace = trace; return this; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 10 07:30:49 UTC 2025 - 5.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverRequest.java
this.session = session; return this; } @Nonnull public ArtifactResolverRequestBuilder trace(RequestTrace trace) { this.trace = trace; return this; } @Nonnull public ArtifactResolverRequestBuilder coordinates(Collection<? extends ArtifactCoordinates> coordinates) { this.coordinates = coordinates;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 10 07:30:49 UTC 2025 - 5.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactDeployerRequest.java
this.session = session; return this; } @Nonnull public ArtifactDeployerRequestBuilder trace(RequestTrace trace) { this.trace = trace; return this; } @Nonnull public ArtifactDeployerRequestBuilder repository(RemoteRepository repository) { this.repository = repository;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 5.8K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jStdoutLogger.java
return false; } @Override public void trace(String msg) {} @Override public void trace(String format, Object arg) {} @Override public void trace(String format, Object arg1, Object arg2) {} @Override public void trace(String format, Object... arguments) {} @Override public void trace(String msg, Throwable t) {} @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 6.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactoryRequest.java
this.session = session; return this; } public DependencyCoordinatesFactoryRequestBuilder trace(RequestTrace trace) { this.trace = trace; return this; } public DependencyCoordinatesFactoryRequestBuilder groupId(String groupId) { this.groupId = groupId; return this;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.1K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java
return newArrayListWithCapacity(3); } }; /** * A Throwable used to record a stack trace that illustrates an example of a specific lock * acquisition ordering. The top of the stack trace is truncated such that it starts with the * acquisition of the lock in question, e.g. * * <pre> * com...ExampleStackTrace: LockB -> LockC
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Sep 11 17:06:34 UTC 2025 - 35.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverRequest.java
return this; } /** * Sets the request trace for debugging and diagnostics. * * @param trace the request trace, may be {@code null} * @return this builder, never {@code null} */ public VersionResolverRequestBuilder trace(RequestTrace trace) { this.trace = trace; return this; } /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 10.4K bytes - Viewed (0)