- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 242 for combiner (0.06 sec)
-
android/guava-tests/test/com/google/common/collect/ImmutableBiMapTest.java
ImmutableBiMap.Builder<String, Integer> zat = ImmutableBiMap.<String, Integer>builder().put("two", 2).put("three", 3); ImmutableBiMap<String, Integer> biMap = zis.combine(zat).build(); assertMapEquals(biMap, "one", 1, "two", 2, "three", 3); } // TODO(b/172823566): Use mainline testToImmutableBiMap once CollectorTester is usable to java7.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 21.2K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java
for (Entry<? extends K, ? extends V> entry : entries) { put(entry); } return this; } @CanIgnoreReturnValue Builder<K, V> combine(Builder<K, V> other) { super.combine(other); return this; } @Override public Builder<K, V> orderEntriesByValue(Comparator<? super V> valueComparator) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 16.1K bytes - Viewed (0) -
src/test/java/jcifs/ACETest.java
void shouldSupportBitwiseOperations() { // Test combining read and write permissions int readWrite = ACE.FILE_READ_DATA | ACE.FILE_WRITE_DATA; assertEquals(0x00000003, readWrite, "Combined read/write should be 0x00000003"); // Test checking individual bits assertTrue((readWrite & ACE.FILE_READ_DATA) != 0, "Should contain FILE_READ_DATA bit");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Toolchain.java
* in the Maven configuration. * </p> * * <p> * The following are key functionalities provided by the Toolchain interface:</p><ul> * <li>Access to the type of the toolchain (e.g., JDK, compiler).</li> * <li>Retrieval of the specific version of the toolchain.</li> * <li>Configuration of toolchain properties to match the project's requirements.</li> * </ul> * * <p>Example usage:</p> * <pre>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Feb 11 12:33:57 UTC 2025 - 3.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheInterceptor.kt
.newBuilder() .body(RealResponseBody(contentType, contentLength, cacheWritingSource.buffer())) .build() } companion object { /** Combines cached headers with a network headers as defined by RFC 7234, 4.3.4. */ private fun combine( cachedHeaders: Headers, networkHeaders: Headers, ): Headers { val result = Headers.Builder()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 10.3K bytes - Viewed (0) -
futures/failureaccess/pom.xml
Guava (just as they can use ListenableFuture by depending on the listenablefuture artifact). </description> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-compile</id> <goals> <goal>compile</goal> </goals> <configuration>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 18:13:11 UTC 2025 - 5.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableListMultimap.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 18.8K bytes - Viewed (0) -
pom.xml
<tag>HEAD</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> <configuration> <encoding>UTF-8</encoding> <release>17</release> </configuration> </plugin> <plugin>
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Fri Jun 20 20:21:38 UTC 2025 - 4.7K bytes - Viewed (0) -
cmd/post-policy_test.go
uuidConditionStr := fmt.Sprintf(`["eq", "$x-amz-meta-uuid", "%s"]`, "1234") // Add the content-encoding string, set to gzip. contentEncodingConditionStr := fmt.Sprintf(`["eq", "$content-encoding", "%s"]`, "gzip") // Combine all conditions into one string. conditionStr := fmt.Sprintf(`"conditions":[%s, %s, %s, %s, %s, %s, %s, %s]`, bucketConditionStr,
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 30.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
* ACE and <i>all</i> of the bits in the desired access bits match bits in * the access mask of the ACE, the access check is successful. Otherwise, * more ACEs are evaluated until all desired access bits (combined) * are "allowed". If all of the desired access bits are not "allowed" * the then same process is repeated for inherited ACEs. * <p> * For example, if user <code>WNET\alice</code> tries to open a file
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.8K bytes - Viewed (0)