- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 847 for _count (0.08 sec)
-
src/test/java/jcifs/internal/smb2/nego/NegotiateContextResponseTest.java
// This appears to be a bug in the implementation, but we test the actual behavior assertEquals(6, encodedSize); // actual encoded size: 2 bytes count + 2*2 bytes for ciphers assertEquals(2, buffer[0]); // cipher count (little endian) assertEquals(0, buffer[1]); assertEquals(1, buffer[2]); // AES128_CCM (little endian) assertEquals(0, buffer[3]);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.4K bytes - Viewed (0) -
cmd/iam-object-store.go
policyDocs, err := iamOS.loadPolicyDocConcurrent(ctx, policiesList[:count]...) if err != nil { return err } for index := range policiesList[:count] { if policyDocs[index].Policy.Version != "" { policyName := path.Dir(policiesList[index]) cache.iamPolicyDocsMap[policyName] = policyDocs[index] } } policiesList = policiesList[count:] }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java
public int count; /** Array of trust information for domains. */ public LsarTrustInformation[] domains; /** Maximum count of domains. */ public int max_count; @Override public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_long(count); _dst.enc_ndr_referent(domains, 1);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 42.5K bytes - Viewed (0) -
tests/generics_test.go
count, err := gorm.G[User](tx).Where("name like ?", "TestGenericsTransaction%").Count(ctx, "*") if err != nil { t.Fatalf("Count failed: %v", err) } if count != 2 { t.Errorf("expected 2 records, got %d", count) } if err := tx.Rollback().Error; err != nil { t.Fatalf("failed to rollback transaction: %v", err) }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Sep 04 13:13:16 UTC 2025 - 28K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableSortedMultiset.java
* desired count. * * @param element the element to add or remove occurrences of * @param count the desired count of the element in this multiset * @return this {@code Builder} object * @throws NullPointerException if {@code element} is null * @throws IllegalArgumentException if {@code count} is negative */ @CanIgnoreReturnValue @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 29.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/samrTest.java
samr.SamrSamArray array = new samr.SamrSamArray(); when(mockNdrBuffer.dec_ndr_long()).thenReturn(0, 0); // count, _entriesp = 0 // When: Decoding array array.decode(mockNdrBuffer); // Then: Should have null entries assertEquals(0, array.count); assertNull(array.entries); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
final int count = searchLogHelper.getClickCount(url); doc.put(fessConfig.getIndexFieldClickCount(), count); if (logger.isDebugEnabled()) { logger.debug("Click Count: {}, url: {}", count, url); } } } /** * Adds a favorite count field to the document based on user favorite data.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.searchlog_log_type_search_keyword=Keyword Count labels.searchlog_log_type_search_zerohit=Zero Hit Count labels.searchlog_log_type_search_zeroclick=Zero Click Count labels.searchlog_log_type_search_count_hour=Search Count/Hour labels.searchlog_log_type_search_count_day=Search Count/Day labels.searchlog_log_type_search_user_hour=User Count/Hour labels.searchlog_log_type_search_user_day=User Count/Day
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/TransWaitNamedPipeTest.java
assertEquals(0xFFFFFFFF, pipe.timeout); // Max parameter and data counts should be 0 assertEquals(0, pipe.maxParameterCount); assertEquals(0, pipe.maxDataCount); // Max setup count should be 0 assertEquals(0, pipe.maxSetupCount); // Setup count should be 2 (as per actual implementation) assertEquals(2, pipe.setupCount); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDCacheImplTest.java
rpc.names = new lsarpc.LsarTransNameArray(); rpc.names.count = 1; rpc.names.names = new lsarpc.LsarTranslatedName[] { new lsarpc.LsarTranslatedName() }; rpc.domains = new lsarpc.LsarRefDomainList(); rpc.domains.count = 0; rpc.domains.domains = new lsarpc.LsarTrustInformation[0]; return null;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14K bytes - Viewed (0)