- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 309 for PERFORMANCE (0.07 sec)
-
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/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) -
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/test/java/jcifs/smb1/util/MimeMapTest.java
assertNotNull(map); // Verify it works by testing a known mapping assertEquals("application/pdf", map.getMimeType("pdf")); } } @Nested @DisplayName("Performance and concurrency") class PerformanceTests { @Test @DisplayName("Should handle multiple lookups efficiently") void testMultipleLookups() throws IOException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.1K bytes - Viewed (0) -
src/test/java/jcifs/util/transport/TransportTest.java
assertEquals(0, transport.getResponseMapSize()); // Response map is accessible through protected field for testing // but we avoid complex interactions here for performance } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.5K bytes - Viewed (0) -
docs/en/docs/features.md
With **FastAPI** you get all of **Starlette**'s features (as FastAPI is just Starlette on steroids): * Seriously impressive performance. It is <a href="https://github.com/encode/starlette#performance" class="external-link" target="_blank">one of the fastest Python frameworks available, on par with **NodeJS** and **Go**</a>. * **WebSocket** support. * In-process background tasks.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 9.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableCollection.java
* mutable objects as elements at all, as many users may expect your "immutable" object to be * <i>deeply</i> immutable. * </ul> * * <h4>Performance notes</h4> * * <ul> * <li>Implementations can be generally assumed to prioritize memory efficiency, then speed of * access, and lastly speed of creation.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 21.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
protected static final String CRAWLER_CLIENTS = "crawlerClients"; /** * Cache for client rules mapping client names to their corresponding URL patterns. * This cache improves performance by avoiding repeated parsing of client configuration rules. * The key is the rule string, and the value is a pair containing the client name and compiled pattern. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.1K bytes - Viewed (0) -
docs/changelogs/changelog_4x.md
_2020-03-17_ **This release candidate turns on web socket compression.** The [spec][rfc_7692] includes a sophisticated mechanism for client and server to negotiate compression features. We strive to offer great performance in our default configuration and so we're making compression the default for everyone starting with this release candidate. Please be considerate of your servers and their operators as you roll out this release. Compression
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Apr 17 13:25:31 UTC 2024 - 25.2K bytes - Viewed (0)