- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 306 for combine (0.24 sec)
-
guava/src/com/google/common/collect/ImmutableTable.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 17.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Tables.java
* input elements. Cells are inserted into the generated {@code Table} in encounter order. * * <p>If multiple input elements map to the same row and column, the specified merging function is * used to combine the values. Like {@link * java.util.stream.Collectors#toMap(java.util.function.Function, java.util.function.Function, * BinaryOperator, java.util.function.Supplier)}, this Collector throws a {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
* The processor maintains a pool of searchers and an executor service for concurrent operations. * It implements rank fusion techniques to combine results from different search engines * and provides a unified search interface. */ public class RankFusionProcessor implements AutoCloseable { private static final Logger logger = LogManager.getLogger(RankFusionProcessor.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableList.java
@CanIgnoreReturnValue @Override public Builder<E> addAll(Iterator<? extends E> elements) { super.addAll(elements); return this; } @CanIgnoreReturnValue Builder<E> combine(Builder<E> other) { addAll(other.contents, other.size); return this; } /** * Returns a newly-created {@code ImmutableList} based on the contents of the {@code Builder}. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 27.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java
} private byte[] calculateBindingInfo(ChannelInfo channel) { ByteArrayOutputStream baos = new ByteArrayOutputStream(); try { // Combine session key with channel-specific data byte[] sessionKey = getSessionKey(); if (sessionKey != null) { baos.write(sessionKey); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 20K bytes - Viewed (0) -
android/pom.xml
<configuration> <source>1.8</source> <target>1.8</target> <encoding>UTF-8</encoding> <parameters>true</parameters> <compilerArgs combine.children="override"> <!-- https://errorprone.info/docs/installation#maven --> <arg>-XDcompilePolicy=simple</arg> <arg>--should-stop=ifError=FLOW</arg>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 24.3K bytes - Viewed (0) -
pom.xml
<configuration> <source>1.8</source> <target>1.8</target> <encoding>UTF-8</encoding> <parameters>true</parameters> <compilerArgs combine.children="override"> <!-- https://errorprone.info/docs/installation#maven --> <arg>-XDcompilePolicy=simple</arg> <arg>--should-stop=ifError=FLOW</arg>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 23.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableSortedSet.java
public Builder<E> addAll(Iterator<? extends E> elements) { super.addAll(elements); return this; } @CanIgnoreReturnValue @Override Builder<E> combine(ImmutableSet.Builder<E> builder) { super.combine(builder); return this; } /** * Returns a newly-created {@code ImmutableSortedSet} based on the contents of the {@code * Builder} and its comparator.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 36.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableRangeSetTest.java
ImmutableRangeSet.Builder<Integer> zat = ImmutableRangeSet.<Integer>builder().add(rangeThree).add(rangeFour); ImmutableRangeSet<Integer> rangeSet = zis.combine(zat).build(); assertThat(rangeSet.asRanges()) .containsExactly(Range.closedOpen(1, 3), Range.closedOpen(4, 5), Range.closedOpen(6, 9)) .inOrder(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Jan 25 16:19:30 UTC 2025 - 21.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
// Use AES-GCM - nonce is 16 bytes final Cipher cipher = createGCMCipher(false, nonce); cipher.updateAAD(associatedData); // Combine ciphertext and auth tag for decryption final byte[] input = new byte[ciphertext.length + authTag.length]; System.arraycopy(ciphertext, 0, input, 0, ciphertext.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0)