- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 22 for UnaryOperator (0.16 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/LayeredMavenOptions.java
*/ package org.apache.maven.cling.invoker.mvn; import java.util.ArrayList; import java.util.Collection; import java.util.List; import java.util.Objects; import java.util.Optional; import java.util.function.UnaryOperator; import org.apache.maven.api.cli.mvn.MavenOptions; import org.apache.maven.cling.invoker.LayeredOptions; /** * Options that are "layered" by precedence order. *
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 5.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java
import java.io.File; import java.nio.file.Path; import java.util.ArrayList; import java.util.Collections; import java.util.HashSet; import java.util.List; import java.util.Set; import java.util.function.UnaryOperator; import com.google.inject.AbstractModule; import com.google.inject.Module; import org.apache.maven.api.Constants; import org.apache.maven.api.ProtoSession; import org.apache.maven.api.cli.Logger;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 14.3K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
} private static UnaryOperator<String> prefix(String prefix, UnaryOperator<String> cb) { return s -> { String v = null; if (s.startsWith(prefix)) { v = cb.apply(s.substring(prefix.length())); } return v; }; } private static UnaryOperator<String> or(UnaryOperator<String>... callbacks) { return s -> {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 78.1K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/props/MavenProperties.java
private List<String> footer; private Path location; private UnaryOperator<String> callback; boolean substitute = true; boolean typed; public MavenProperties() {} public MavenProperties(Path location) throws IOException { this(location, null); } public MavenProperties(Path location, UnaryOperator<String> callback) throws IOException { this.location = location;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 09:03:48 UTC 2025 - 38.5K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java
private List<String> footer; private Path location; private UnaryOperator<String> callback; boolean substitute = true; boolean typed; public MavenProperties() {} public MavenProperties(Path location) throws IOException { this(location, null); } public MavenProperties(Path location, UnaryOperator<String> callback) throws IOException { this.location = location;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 38.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java
import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Locale; import java.util.Map; import java.util.Objects; import java.util.Properties; import java.util.function.UnaryOperator; import java.util.stream.Collectors; import org.apache.maven.api.Constants; import org.apache.maven.api.annotations.Nullable; import org.apache.maven.api.cli.CoreExtensions;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 10 07:39:11 UTC 2025 - 25.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java
import java.util.LinkedHashSet; import java.util.List; import java.util.ListIterator; import java.util.Map; import java.util.Optional; import java.util.Set; import java.util.function.Consumer; import java.util.function.UnaryOperator; import org.apache.commons.cli.CommandLine; import org.apache.commons.cli.DefaultParser; import org.apache.commons.cli.DeprecatedAttributes; import org.apache.commons.cli.HelpFormatter;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Oct 08 07:36:42 UTC 2025 - 21.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
protected String clusterName = "fesen"; /** List of rewrite rules for document settings */ protected final List<UnaryOperator<String>> docSettingRewriteRuleList = new ArrayList<>(); /** List of rewrite rules for document mappings */ protected final List<UnaryOperator<String>> docMappingRewriteRuleList = new ArrayList<>(); /** Whether to use pipelines for document processing */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 122.4K bytes - Viewed (1) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
import java.util.LinkedHashMap; import java.util.List; import java.util.Locale; import java.util.Map; import java.util.Objects; import java.util.Properties; import java.util.function.Consumer; import java.util.function.UnaryOperator; import org.apache.maven.api.Constants; import org.apache.maven.api.ProtoSession; import org.apache.maven.api.annotations.Nullable; import org.apache.maven.api.cli.Invoker;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Oct 28 13:01:07 UTC 2025 - 43.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableList.java
import java.util.Comparator; import java.util.Iterator; import java.util.List; import java.util.RandomAccess; import java.util.Spliterator; import java.util.function.Consumer; import java.util.function.UnaryOperator; import java.util.stream.Collector; import org.jspecify.annotations.Nullable; /** * A {@link List} whose contents will never change, with many other important properties detailed at * {@link ImmutableCollection}.Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Nov 17 22:50:48 UTC 2025 - 30.6K bytes - Viewed (0)