- Sort Score
- Result 10 results
- Languages All
Results 1171 - 1180 of 2,819 for uint (0.03 sec)
-
android/guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java
private final char[][] replacements; // The number of elements in the replacement array. private final int replacementsLength; // The first code point in the safe range. private final int safeMin; // The last code point in the safe range. private final int safeMax; // Cropped values used in the fast path range checks. private final char safeMinChar; private final char safeMaxChar;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 15:45:16 UTC 2025 - 8.5K bytes - Viewed (0) -
cmd/erasure-metadata.go
} func commonParity(parities []int, defaultParityCount int) int { N := len(parities) occMap := make(map[int]int) for _, p := range parities { occMap[p]++ } var maxOcc, cparity int for parity, occ := range occMap { if parity == -1 { // Ignore non defined parity continue } readQuorum := N - parity
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 21.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComNegotiateResponseTest.java
byte[] domainBytes = "DOMAIN\0".getBytes("US-ASCII"); // Use reflection to set protected byteCount field int byteCountValue = 8 + domainBytes.length; setByteCount(response, byteCountValue); byte[] buffer = new byte[byteCountValue]; int bufferIndex = 0; byte[] key = new byte[] { 1, 2, 3, 4, 5, 6, 7, 8 }; System.arraycopy(key, 0, buffer, bufferIndex, key.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsbhv/BsClickLogBhv.java
doDelete(entity, null); } public int queryDelete(CBCall<ClickLogCB> cbLambda) { return doQueryDelete(createCB(cbLambda), null); } public int[] batchInsert(List<ClickLog> list) { return batchInsert(list, null, null); } public int[] batchInsert(List<ClickLog> list, RequestOptionCall<BulkRequestBuilder> call) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsbhv/BsRoleBhv.java
doDelete(entity, null); } public int queryDelete(CBCall<RoleCB> cbLambda) { return doQueryDelete(createCB(cbLambda), null); } public int[] batchInsert(List<Role> list) { return batchInsert(list, null, null); } public int[] batchInsert(List<Role> list, RequestOptionCall<BulkRequestBuilder> call) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFailureUrlBhv.java
doDelete(entity, null); } public int queryDelete(CBCall<FailureUrlCB> cbLambda) { return doQueryDelete(createCB(cbLambda), null); } public int[] batchInsert(List<FailureUrl> list) { return batchInsert(list, null, null); } public int[] batchInsert(List<FailureUrl> list, RequestOptionCall<BulkRequestBuilder> call) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsRequestHeaderBhv.java
doDelete(entity, null); } public int queryDelete(CBCall<RequestHeaderCB> cbLambda) { return doQueryDelete(createCB(cbLambda), null); } public int[] batchInsert(List<RequestHeader> list) { return batchInsert(list, null, null); } public int[] batchInsert(List<RequestHeader> list, RequestOptionCall<BulkRequestBuilder> call) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsThumbnailQueueBhv.java
doDelete(entity, null); } public int queryDelete(CBCall<ThumbnailQueueCB> cbLambda) { return doQueryDelete(createCB(cbLambda), null); } public int[] batchInsert(List<ThumbnailQueue> list) { return batchInsert(list, null, null); } public int[] batchInsert(List<ThumbnailQueue> list, RequestOptionCall<BulkRequestBuilder> call) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.8K bytes - Viewed (0) -
src/test/java/jcifs/https/HandlerTest.java
} @Test @DisplayName("Should return consistent port value") void testPortConsistency() { // When int port1 = handler.getDefaultPort(); int port2 = handler.getDefaultPort(); int port3 = handler.getDefaultPort(); // Then assertEquals(port1, port2); assertEquals(port2, port3); assertEquals(443, port1);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/pac/Pac.java
} int bufferCount = pacStream.readInt(); int version = pacStream.readInt(); if (version != PacConstants.PAC_VERSION) { throw new PACDecodingException("Unrecognized PAC version " + version); } for (int bufferIndex = 0; bufferIndex < bufferCount; bufferIndex++) { int bufferType = pacStream.readInt();Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0)