- Sort Score
- Result 10 results
- Languages All
Results 671 - 680 of 867 for Account (0.06 sec)
-
src/test/java/jcifs/dcerpc/DcerpcMessageTest.java
when(mockBuffer.dec_ndr_short()).thenReturn(100) // length .thenReturn(0) // auth_value length .thenReturn(0) // context id .thenReturn(0); // cancel count message.decode(mockBuffer); assertEquals(DcerpcConstants.RPC_PT_RESPONSE, message.ptype); assertEquals(100, message.alloc_hint); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.3K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacTest.java
void testInvalidVersion() throws IOException { // Create minimal PAC structure with wrong version ByteArrayOutputStream baos = new ByteArrayOutputStream(); writeLittleEndianInt(baos, 0); // buffer count = 0 writeLittleEndianInt(baos, 99); // invalid version baos.write(new byte[1]); // Make it > 8 bytes byte[] pacData = baos.toByteArray();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
src/cmd/asm/internal/arch/arm64.go
func ARM64RegisterShift(reg, op, count int16) (int64, error) { // the base register of shift operations must be general register. if reg > arm64.REG_R31 || reg < arm64.REG_R0 { return 0, errors.New("invalid register for shift operation") } return int64(reg&31)<<16 | int64(op)<<22 | int64(uint16(count)), nil }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Feb 14 15:13:11 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* Get the value for the key 'indexer.click.count.enabled'. <br> * The value is, e.g. true <br> * comment: Whether to enable click count tracking in the indexer. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getIndexerClickCountEnabled(); /** * Is the property for the key 'indexer.click.count.enabled' true? <br>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (2) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
*/ public void waitForNoWaitingThreads() { int count = waitingThreadNames.size(); while (count > 0) { if (logger.isInfoEnabled()) { logger.info("{} waiting thread(s).", count); } ThreadUtil.sleep(systemCpuCheckInterval); count = waitingThreadNames.size(); } } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionAggregation.java
regA(builder); return builder; } protected ValueCountAggregationBuilder regCountA(String name, String field) { ValueCountAggregationBuilder builder = AggregationBuilders.count(name).field(field); regA(builder); return builder; } protected TermsAggregationBuilder regTermsA(String name, String field) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 12.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/score/ScoreUpdaterTest.java
scoreUpdater.addScoreBooster(booster1); scoreUpdater.addScoreBooster(booster2); String result = scoreUpdater.execute(); // Check format with class name, colon, count, and newline String[] lines = result.split("\n"); assertEquals(2, lines.length); assertTrue(lines[0].matches("TestScoreBooster : \\d+")); assertTrue(lines[1].matches("TestScoreBooster : \\d+"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/FacetResponse.java
} }); } /** * Checks if this response contains any facet information. * * @return true if either query count map or field list is not null */ public boolean hasFacetResponse() { return queryCountMap != null || fieldList != null; } /** * Represents a field facet with its name and value counts.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ForwardingSortedMultisetTest.java
E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) { return standardSubMultiset(lowerBound, lowerBoundType, upperBound, upperBoundType); } @Override public int count(@Nullable Object element) { return standardCount(element); } @Override public boolean equals(@Nullable Object object) { return standardEquals(object); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 6.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2FindFirst2ResponseTest.java
} @Test void testReadDataWireFormat_emptyBuffer() throws Exception { // Test reading data from an empty buffer byte[] buffer = new byte[10]; // Set data count to test return value response.setDataCount(5); // With 0 entries, should return dataCount int result = response.readDataWireFormat(buffer, 0, 0); // Should return dataCount
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.4K bytes - Viewed (0)