- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 318 for PERFORMANCE (0.05 sec)
-
guava/src/com/google/common/base/CaseFormat.java
public final String to(CaseFormat format, String str) { checkNotNull(format); checkNotNull(str); return (format == this) ? str : convert(format, str); } /** Enum values can override for performance reasons. */ String convert(CaseFormat format, String s) { // deal with camel conversion StringBuilder out = null; int i = 0; int j = -1; while ((j = wordBoundary.indexIn(s, ++j)) != -1) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Apr 15 22:14:00 UTC 2025 - 6.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/RequestTrace.java
* * <p>This trace information is particularly useful for:</p> * <ul> * <li>Debugging and troubleshooting request flows</li> * <li>Audit logging of session operations</li> * <li>Performance monitoring of nested operations</li> * </ul> * * @param context The context identifier for this request trace, helping to identify the scope or purpose
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 2.9K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
# SMB3 Lease Feature - Detailed Design Document ## 1. Overview SMB3 leases provide a client caching mechanism that replaces the traditional oplock mechanism. Leases enable better performance through client-side caching while maintaining cache coherency across multiple clients. ## 2. Protocol Specification Reference - **MS-SMB2 Section 2.2.13**: SMB2 CREATE Request with Lease Context - **MS-SMB2 Section 2.2.14**: SMB2 CREATE Response with Lease State
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
import jakarta.annotation.PostConstruct; import jakarta.annotation.PreDestroy; /** * Helper class for managing crawler statistics and performance metrics. * This class provides functionality to track, record, and report statistics * about crawler operations including timing data, performance metrics, and * operational events. It uses an internal cache to maintain statistics * objects and provides methods to begin tracking, record events, and
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java
} } } @Nested @DisplayName("Performance Tests") class PerformanceTests { @Test @DisplayName("Should handle repeated encoding efficiently") void testRepeatedEncoding() { TestCreateContextRequest request = new TestCreateContextRequest("PERFORMANCE".getBytes(StandardCharsets.UTF_8)); byte[] buffer = new byte[256];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0) -
README.md
# Security jcifs.smb.client.signingPreferred=false jcifs.smb.client.signingEnforced=false jcifs.smb.client.encryptionEnforced=false jcifs.smb.client.disablePlainTextPasswords=true # Performance jcifs.smb.client.useBatching=true jcifs.smb.client.useUnicode=true jcifs.smb.client.maxMpxCount=10 ``` ### Usage with Properties ```java Properties props = new Properties();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 09:24:52 UTC 2025 - 6.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/UserRoleLoginExceptionTest.java
assertEquals("org.codelibs.fess.app.web.RootAction", actionClass.getName()); } public void test_fillInStackTrace() { // Test fillInStackTrace returns null for performance optimization UserRoleLoginException exception = new UserRoleLoginException(RootAction.class); Throwable result = exception.fillInStackTrace(); assertNull(result);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.8K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/collect/SortedCopyBenchmark.java
import java.util.LinkedHashSet; import java.util.List; import java.util.Random; import java.util.Set; import java.util.TreeSet; import org.jspecify.annotations.NullUnmarked; /** * Provides supporting data for performance notes in the documentation of {@link * Ordering#sortedCopy} and {@link Ordering#immutableSortedCopy}, as well as for automated code * suggestions. * */ @NullUnmarked public class SortedCopyBenchmark {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 3.5K bytes - Viewed (0) -
android/guava/src/com/google/common/base/CaseFormat.java
public final String to(CaseFormat format, String str) { checkNotNull(format); checkNotNull(str); return (format == this) ? str : convert(format, str); } /** Enum values can override for performance reasons. */ String convert(CaseFormat format, String s) { // deal with camel conversion StringBuilder out = null; int i = 0; int j = -1; while ((j = wordBoundary.indexIn(s, ++j)) != -1) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Apr 15 22:14:00 UTC 2025 - 6.5K bytes - Viewed (0) -
src/archive/tar/stat_unix.go
package tar import ( "io/fs" "os/user" "runtime" "strconv" "sync" "syscall" ) func init() { sysStat = statUnix } // userMap and groupMap caches UID and GID lookups for performance reasons. // The downside is that renaming uname or gname by the OS never takes effect. var userMap, groupMap sync.Map // map[int]string func statUnix(fi fs.FileInfo, h *Header, doNameLookups bool) error {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Mar 15 16:01:50 UTC 2024 - 3.2K bytes - Viewed (0)