- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 280 for high (0.02 sec)
-
android/guava/src/com/google/common/collect/CompactLinkedHashSet.java
CompactLinkedHashSet<E> set = createWithExpectedSize(elements.length); Collections.addAll(set, elements); return set; } /** * Creates a {@code CompactLinkedHashSet} instance, with a high enough "initial capacity" that it * <i>should</i> hold {@code expectedSize} elements without rebuilding internal data structures. * * @param expectedSize the number of elements you expect to add to the returned set
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 14:59:07 UTC 2025 - 9.4K bytes - Viewed (0) -
android/guava/src/com/google/common/xml/XmlEscapers.java
/** * {@code Escaper} instances suitable for strings to be included in XML attribute values and * elements' text contents. When possible, avoid manual escaping by using templating systems and * high-level APIs that provide autoescaping. For example, consider <a * href="http://www.xom.nu/">XOM</a>. * * <p><b>Note:</b> Currently the escapers provided by this class do not escape any characters
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jun 20 17:15:33 UTC 2025 - 6.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponseTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.9K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/Hashing.java
* Returns a hash function implementing FarmHash's Fingerprint64, an open-source algorithm. * * <p>This is designed for generating persistent fingerprints of strings. It isn't * cryptographically secure, but it produces a high-quality hash with fewer collisions than some * alternatives we've used in the past. * * <p>FarmHash fingerprints are encoded by {@link HashCode#asBytes} in little-endian order. This
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 29.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/BooleanQueryCommandTest.java
QueryBuilder result = booleanQueryCommand.execute(context, booleanQuery, 1.0f); assertNotNull(result); assertTrue(result instanceof BoolQueryBuilder); } // Test to ensure high coverage of edge cases public void test_convertBooleanQuery_multipleShouldClauses() { BooleanQuery.Builder boolQueryBuilder = new BooleanQuery.Builder(); // Add multiple SHOULD clauses
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaConnection.java
import jcifs.internal.smb2.rdma.RdmaNegotiateRequest; import jcifs.internal.smb2.rdma.RdmaNegotiateResponse; /** * DiSNI RDMA connection implementation. * * This class would integrate with the DiSNI library to provide * high-performance RDMA operations over InfiniBand/RoCE networks. * * Note: This is a skeleton implementation. A real implementation would * require proper DiSNI integration with actual RDMA hardware. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 10.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java
.withFeatures(features) .suppressing(parentBuilder.getSuppressedTests()) .createTestSuite(); } /** * Returns an array of four bogus elements that will always be too high or too low for the * display. This includes two values for each extreme. * * <p>This method (dangerously) assume that the strings {@code "!! a"} and {@code "~~ z"} will
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 11.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java
assertNotNull(builder); assertTrue(builder instanceof MatchPhrasePrefixQueryBuilder); // Query was processed with high boost MatchPhrasePrefixQueryBuilder mpqb = (MatchPhrasePrefixQueryBuilder) builder; assertEquals(10.0f, mpqb.boost()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileInternalInfoTest.java
long[] testValues = { 0L, // Zero 1L, // One -1L, // Negative one 0x00000000FFFFFFFFL, // 32-bit max as long 0xFFFFFFFF00000000L, // High 32 bits set 0x7FFFFFFFFFFFFFFFL, // Long.MAX_VALUE 0x8000000000000000L, // Long.MIN_VALUE 0x0101010101010101L, // Repeating pattern
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionResponseTest.java
System.arraycopy(new byte[] { (byte) 0xFF, 'S', 'M', 'B' }, 0, buffer, 0, 4); buffer[4] = 1; // wordCount buffer[7] = 0; // byteCount low buffer[8] = 0; // byteCount high assertDoesNotThrow(() -> response.decode(buffer, 0)); } @Test @DisplayName("Test writeParameterWordsWireFormat") void testWriteParameterWordsWireFormat() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.4K bytes - Viewed (0)