- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 2,142 for DEFAULT (0.04 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblemCollector.java
*/ public interface ModelProblemCollector { ProblemCollector<ModelProblem> getProblemCollector(); default boolean hasErrors() { return getProblemCollector().hasErrorProblems(); } default boolean hasFatalErrors() { return getProblemCollector().hasFatalProblems(); } default void add(BuilderProblem.Severity severity, ModelProblem.Version version, String message) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Dec 19 14:50:21 UTC 2024 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeThumbnailJob.java
/** * Default constructor for PurgeThumbnailJob. * Creates a new instance of the thumbnail purging job with default expiry time (30 days). */ public PurgeThumbnailJob() { // Default constructor } /** Expiration time for thumbnails in milliseconds (default: 30 days) */ private long expiry = 30 * 24 * 60 * 60 * 1000L; /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingConcurrentMap.java
* * <p><b>{@code default} method warning:</b> This class forwards calls to <i>only some</i> {@code * default} methods. Specifically, it forwards calls only for methods that existed <a * href="https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/ConcurrentMap.html">before * {@code default} methods were introduced</a>. For newer methods, like {@code forEach}, it inheritsRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Feb 18 16:58:16 UTC 2025 - 2.6K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/ValueGraphBuilder.java
/** * A builder for constructing instances of {@link MutableValueGraph} or {@link ImmutableValueGraph} * with user-defined properties. * * <p>A {@code ValueGraph} built by this class has the following default properties: * * <ul> * <li>does not allow self-loops * <li>orders {@link ValueGraph#nodes()} in the order in which the elements were added (insertion * order) * </ul> *Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 7.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer.java
// together and this really shows the problem of constructing a sensible default configuration, but // it's all encapsulated here so it appears normalized to the POM builder. // We are going to take the project packaging and find all plugins in the default lifecycle and create // fully populated Plugin objects, including executions with goals and default configuration taken // from the plugin.xml inside a plugin. @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/SerializeUtil.java
throw new IORuntimeException(ex); } } /** * Converts a byte array to an object using the default security filter. * <p> * This method applies a default ObjectInputFilter to prevent deserialization attacks. * Only classes matching the default allowed patterns can be deserialized. * </p> * * @param bytes the byte array (must not be {@literal null})
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 9K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/PluginUpgradeCliTest.java
assertFalse(options.plugins().isPresent(), "--plugins should not be present by default"); assertFalse(options.all().isPresent(), "--all should not be present by default"); assertFalse(options.infer().isPresent(), "--infer should not be present by default"); assertFalse(options.model().isPresent(), "--fix-model should not be present by default");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:48:39 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java
} /** * LSA Quality of Service information. */ public static class LsarQosInfo extends NdrObject { /** * Default constructor for LsarQosInfo. */ public LsarQosInfo() { // Default constructor } /** Length of the QoS information. */ public int length; /** Security impersonation level. */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 42.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryItem.java
*/ public abstract class DictionaryItem { /** The unique identifier for this dictionary item */ protected long id; /** * Default constructor for DictionaryItem. * Creates a new dictionary item with default values. */ public DictionaryItem() { // Default constructor } /** * Gets the unique identifier for this dictionary item. * * @return the ID of this dictionary itemRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistant.java
/** * Default constructor. */ public ImplementedInvokerAssistant() { // Default constructor } /** Default client invoke names for DBFlute behavior invocation. */ protected static final String[] DEFAULT_CLIENT_INVOKE_NAMES = { "Page", "Action", "Controller", "ControllerImpl", "Task", "Test" }; /** Default bypass invoke names for DBFlute behavior invocation. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0)