- Sort Score
- Num 10 results
- Language All
Results 121 - 130 of 1,214 for creators (0.14 seconds)
-
src/main/java/org/codelibs/core/exception/ClassNotFoundRuntimeException.java
*/ private final String className; /** * Creates a {@link ClassNotFoundRuntimeException}. * * @param cause the underlying exception */ public ClassNotFoundRuntimeException(final ClassNotFoundException cause) { this(null, cause); } /** * Creates a {@link ClassNotFoundRuntimeException}. * * @param className the class nameCreated: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 1.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
return previousClusterState.getAndSet(status) != status; } /** * Creates a new action validator. * * @param requestManager The request manager. * @param messagesCreator The messages creator. * @param runtimeGroups The runtime groups. * @return A new action validator. */
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Dec 20 08:30:43 GMT 2025 - 36.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exception/InvalidQueryException.java
private static final long serialVersionUID = 1L; /** Message code for localized error messages */ private final transient VaMessenger<FessMessages> messageCode; /** * Creates a new InvalidQueryException with message code, message, and cause. * * @param messageCode the message code for localized error messages * @param message the detailed error messageCreated: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.3K bytes - Click Count (0) -
src/main/java/jcifs/internal/witness/WitnessHeartbeatMessage.java
private long heartbeatInterval; /** * Creates a new WitnessHeartbeat RPC message. */ public WitnessHeartbeatMessage() { super(WITNESS_HEARTBEAT); this.contextHandle = new byte[20]; this.sequenceNumber = 0; this.responseSequenceNumber = 0; this.heartbeatInterval = 0; } /** * Creates a new WitnessHeartbeat RPC message with the specified parameters.Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 23 09:06:40 GMT 2025 - 5.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java
* or {@code null} if this source has no associated file */ @Nullable Path getPath(); /** * Creates a new input stream to read the source contents. * Each call creates a fresh stream starting from the beginning. * The caller is responsible for closing the returned stream. * * @return a new input stream positioned at the start of the contentCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jan 29 09:46:53 GMT 2025 - 4K bytes - Click Count (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/StringSettingsSource.java
/** * Creates a new settings source backed by the specified string. * * @param settings The settings' string representation, may be empty or {@code null}. */ public StringSettingsSource(CharSequence settings) { this(settings, null); } /** * Creates a new settings source backed by the specified string. *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2K bytes - Click Count (0) -
guava/src/com/google/common/collect/AbstractSequentialIterator.java
*/ @GwtCompatible public abstract class AbstractSequentialIterator<T> extends UnmodifiableIterator<T> { private @Nullable T nextOrNull; /** * Creates a new iterator with the given first element, or, if {@code firstOrNull} is null, * creates a new empty iterator. */ protected AbstractSequentialIterator(@Nullable T firstOrNull) { this.nextOrNull = firstOrNull; } /**
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Mar 17 20:26:29 GMT 2025 - 2.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java
} // ----------------------------------------------------- // Actually Crud // ------------- /** * Creates a new role item. * * @param form the create form containing the new item data * @return HTML response redirecting to the list page after creation */ @Execute @Secured({ ROLE })Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 12.8K bytes - Click Count (0) -
src/main/java/org/codelibs/core/collection/IteratorEnumeration.java
protected final Iterator<T> iterator; /** * Creates an {@link IteratorEnumeration}. * * @param iterator the iterator (must not be {@literal null}) */ public IteratorEnumeration(final Iterator<T> iterator) { assertArgumentNotNull("iterator", iterator); this.iterator = iterator; } /** * Creates an {@link IteratorEnumeration}. *
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 1.8K bytes - Click Count (0) -
src/main/java/org/codelibs/core/exception/ClIllegalArgumentException.java
protected final String argName; /** Message code */ protected final String messageCode; /** Arguments for the message */ protected final Object[] args; /** * Creates a {@link ClIllegalArgumentException}. * * @param argName * Name of the argument * @param messageCode * Message code * @param argsCreated: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 2.6K bytes - Click Count (0)