- Sort Score
- Num 10 results
- Language All
Results 191 - 200 of 918 for consume (0.14 seconds)
-
guava/src/com/google/common/collect/ImmutableEnumSet.java
import java.io.InvalidObjectException; import java.io.ObjectInputStream; import java.io.Serializable; import java.util.Collection; import java.util.EnumSet; import java.util.Spliterator; import java.util.function.Consumer; import org.jspecify.annotations.Nullable; /** * Implementation of {@link ImmutableSet} backed by a non-empty {@link java.util.EnumSet}. * * @author Jared Levy */ @GwtCompatibleCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 4.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/query/QueryFieldConfig.java
this.highlightedFields = highlightedFields; } /** * Processes the highlighted fields using the provided stream consumer. * * @param stream consumer that processes the stream of highlighted field names */ public void highlightedFields(final Consumer<Stream<String>> stream) { stream(highlightedFields).of(stream); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 21.9K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/EncryptInvoker.java
* under the License. */ package org.apache.maven.cling.invoker.mvnenc; import java.io.InterruptedIOException; import java.util.ArrayList; import java.util.function.Consumer; import org.apache.maven.api.annotations.Nullable; import org.apache.maven.api.cli.InvokerRequest; import org.apache.maven.api.cli.mvnenc.EncryptOptions; import org.apache.maven.api.services.Lookup;
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jun 11 13:14:09 GMT 2025 - 4.5K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/UpgradeInvoker.java
* under the License. */ package org.apache.maven.cling.invoker.mvnup; import java.io.InterruptedIOException; import java.util.ArrayList; import java.util.function.Consumer; import org.apache.maven.api.annotations.Nullable; import org.apache.maven.api.cli.InvokerRequest; import org.apache.maven.api.cli.mvnup.UpgradeOptions; import org.apache.maven.api.services.Lookup;
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jun 11 13:14:09 GMT 2025 - 4.4K bytes - Click Count (0) -
docs/en/docs/virtual-environments.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 22.1K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java
/** * User property for enabling/disabling the consumer POM feature. * * @since 4.0.0 */ @Config(type = "java.lang.Boolean", defaultValue = "true") public static final String MAVEN_CONSUMER_POM = "maven.consumer.pom"; /** * User property for controlling consumer POM flattening behavior. * When set to <code>true</code> (default), consumer POMs are flattened by removingCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Dec 16 13:41:14 GMT 2025 - 28.7K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/ForwardingMapTest.java
} catch (NoSuchMethodException e) { throw newLinkageError(e); } } else if (rawType.equals(Consumer.class)) { return (Consumer<Object>) v -> {}; } else { return null; } } private static <T> void callAllPublicMethods(TypeToken<T> type, T object) throws InvocationTargetException {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 12.4K bytes - Click Count (0) -
.github/workflows/create_issue.js
if (pr_match_groups.length != 2) { console.log(`PR Number not found in ${context.payload.head_commit.message}`); throw "Error extracting PR Number from commit message"; } const pr_number = parseInt(pr_match_groups[1]); const owner = context.payload.repository.owner.name; const repo = context.payload.repository.name; console.log(`Original PR: ${pr_number} and Rollback Commit: ${rollback_commit}`);
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Mon Oct 18 23:04:59 GMT 2021 - 2.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java
/** * Registers an event handler for the specified event name. * * @param eventName the event name to handle. * @param handler the consumer to invoke when the event is received. */ public void addEventHandler(final String eventName, final Consumer<EventInfo> handler) { eventHandlers.computeIfAbsent(eventName, k -> new ArrayList<>()).add(handler); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 33.3K bytes - Click Count (0) -
scripts/tests/test_translation_fixer/test_complex_doc/data/en_doc.md
Fixer tool will not preserve comments in these blocks. ```javascript // This is a sample JavaScript code block console.log("Hello, world!"); // Print greeting ``` ``` # This is a sample console code block $ echo "Hello, world!" # Print greeting ``` ``` // This is a sample console code block $ echo "Hello, world!" // Print greeting ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 08:08:04 GMT 2026 - 7.6K bytes - Click Count (0)