- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 257 for combined (0.14 sec)
-
android/guava-tests/test/com/google/common/collect/ImmutableListTest.java
ImmutableList.Builder<String> zis = ImmutableList.<String>builder().add("a", "b"); ImmutableList.Builder<String> zat = ImmutableList.<String>builder().add("c", "d"); ImmutableList<String> list = zis.combine(zat).build(); assertEquals(asList("a", "b", "c", "d"), list); } // Basic tests @J2ktIncompatible @GwtIncompatible // NullPointerTester public void testNullPointers() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 24.2K bytes - Viewed (0) -
LICENSE
source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Nov 29 17:31:56 UTC 2021 - 13.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java
* Similar to <code>maven.repo.local.tail</code>, this property may contain comma separated list of paths to be * used as local repositories (combine with chained local repository), but while latter is "appending" this * one is "prepending". * * @since 4.0.0 */ @Config
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jul 25 11:08:20 UTC 2025 - 25.4K bytes - Viewed (0) -
docs/pt/docs/advanced/custom-response.md
Neste caso, o `status_code` utilizada será o padrão de `RedirectResponse`, que é `307`. --- Você também pode utilizar o parâmetro `status_code` combinado com o parâmetro `response_class`: {* ../../docs_src/custom_response/tutorial006c.py hl[2,7,9] *} ### `StreamingResponse`
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 13.2K bytes - Viewed (0) -
docs/es/docs/deployment/https.md
Pero una vez que conoces la información básica de **HTTPS para desarrolladores** puedes combinar y configurar fácilmente diferentes herramientas para ayudarte a gestionar todo de una manera sencilla.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun May 11 13:37:26 UTC 2025 - 13K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableRangeSet.java
public Builder<C> addAll(Iterable<Range<C>> ranges) { for (Range<C> range : ranges) { add(range); } return this; } @CanIgnoreReturnValue Builder<C> combine(Builder<C> builder) { addAll(builder.ranges); return this; } /** * Returns an {@code ImmutableRangeSet} containing the ranges added to this builder. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 27.4K bytes - Viewed (0) -
cmd/xl-storage-format-v2.go
// Marshal metadata crc := hashDeterministicBytes(c.MetaSys) c.MetaSys = nil if bts, err := c.MarshalMsg(metaDataPoolGet()); err == nil { crc ^= xxhash.Sum64(bts) metaDataPoolPut(bts) } // Combine upper and lower part var tmp [4]byte binary.LittleEndian.PutUint32(tmp[:], uint32(crc^(crc>>32))) return tmp } // UsesDataDir returns true if this object version uses its data directory for
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 65.6K bytes - Viewed (1) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
private static final Logger log = LoggerFactory.getLogger(SecurityAuditLogger.class); private static final DateTimeFormatter ISO_FORMATTER = DateTimeFormatter.ISO_INSTANT; // Patterns for sensitive data - compiled once and cached private static final Pattern PASSWORD_PATTERN = Pattern.compile( "(?i)(password|passwd|pwd|secret|token|key|credential|auth)([\"']?\\s*[:=]\\s*[\"']?)([^\"',\\s]+)", Pattern.CASE_INSENSITIVE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMultimap.java
public Builder<K, V> orderValuesBy(Comparator<? super V> valueComparator) { this.valueComparator = checkNotNull(valueComparator); return this; } @CanIgnoreReturnValue Builder<K, V> combine(Builder<K, V> other) { if (other.builderMap != null) { for (Map.Entry<K, ImmutableCollection.Builder<V>> entry : other.builderMap.entrySet()) { putAll(entry.getKey(), entry.getValue().build());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 28.6K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
throw new IOException("Channel binding failed: " + response.getStatus()); } } private byte[] calculateBindingInfo(ChannelInfo channel) { // Combine session key with channel-specific data ByteArrayOutputStream baos = new ByteArrayOutputStream(); try { baos.write(session.getSessionKey());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0)