- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 431 for countIn (0.06 sec)
-
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java
@ExtendWith(MockitoExtension.class) class SrvCopychunkCopyTest { private static final int SOURCE_KEY_SIZE = 24; private static final int HEADER_SIZE = 32; // 24 bytes source key + 4 bytes chunk count + 4 bytes reserved private static final int CHUNK_SIZE = 24; @Mock private SrvCopychunk mockChunk; @BeforeEach void setUp() { } @Nested
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Iterators.java
} @SuppressWarnings("unchecked") // we only put Ts in it @Nullable T[] array = (@Nullable T[]) new Object[size]; int count = 0; for (; count < size && iterator.hasNext(); count++) { array[count] = iterator.next(); } for (int i = count; i < size; i++) { array[i] = null; // for GWT } List<@Nullable T> list = unmodifiableList(asList(array));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 50.5K bytes - Viewed (0) -
docs/de/docs/advanced/behind-a-proxy.md
{* ../../docs_src/behind_a_proxy/tutorial004.py hl[9] *} Dann wird er nicht in das OpenAPI-Schema aufgenommen. ## Mounten einer Unteranwendung Wenn Sie gleichzeitig eine Unteranwendung mounten (wie beschrieben in [Unteranwendungen – Mounts](sub-applications.md){.internal-link target=_blank}) und einen Proxy mit `root_path` verwenden wollen, können Sie das normal tun, wie Sie es erwarten würden.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 13K bytes - Viewed (0) -
tests/sql_builder_test.go
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jul 21 02:46:58 UTC 2025 - 16.7K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcDfsRootEnumTest.java
*/ @Test void testGetEntries() { // Given MsrpcDfsRootEnum dfsRootEnum = new MsrpcDfsRootEnum("test-server"); DfsEnumArray200 dfsEnumArray = new DfsEnumArray200(); dfsEnumArray.count = 2; dfsEnumArray.s = new DfsInfo200[2]; dfsEnumArray.s[0] = new DfsInfo200(); dfsEnumArray.s[0].dfs_name = "\\domain\share1"; dfsEnumArray.s[1] = new DfsInfo200();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/SetHashCodeTester.java
elements.add(null); collection = getSubjectGenerator().create(elements.toArray()); assertEquals( "A Set's hashCode() should be the sum of those of its elements (with " + "a null element counting as having a hash of zero).", expectedHashCode, getSet().hashCode()); } /** * Returns the {@link Method} instances for the test methods in this class which call {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 3.1K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.23.md
- *apiserver_cache_list_total*: Counter of LIST requests served from watch cache, broken down by resource_prefix and index_name - *apiserver_cache_list_fetched_objects_total*: Counter of objects read from watch cache in the course of serving a LIST request, broken down by resource_prefix and index_name
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Feb 28 21:06:52 UTC 2023 - 424.5K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/TestUtilJvm.kt
fun headerEntries(vararg elements: String?): List<Header> = List(elements.size / 2) { Header(elements[it * 2]!!, elements[it * 2 + 1]!!) } @JvmStatic fun repeat( c: Char, count: Int, ): String { val array = CharArray(count) Arrays.fill(array, c) return String(array) } /** * Okio buffers are internally implemented as a linked list of arrays. Usually this implementation
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2RdmaTransformCapabilitiesContext.java
// Context type /** Context ID for RDMA transform capabilities */ public static final int CONTEXT_ID = Smb2Constants.SMB2_RDMA_TRANSFORM_CAPABILITIES; // Transform count and reserved fields private int transformCount = 1; // Number of transforms (always 1 for SMBDirect) private int reserved1 = 0; private int reserved2 = 0; // SMB_DIRECT_RDMA_TRANSFORM_V1
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/assemblies/files/logging.properties
java.util.logging.FileHandler.level=INFO java.util.logging.FileHandler.pattern=${fess.log.path}/server_%g.log java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter java.util.logging.FileHandler.count=10 # Suppress warning logs
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 21 11:31:50 UTC 2016 - 475 bytes - Viewed (0)