- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 411 for durant (0.04 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/MojoException.java
* under the License. */ package org.apache.maven.api.plugin; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.services.MavenException; /** * An exception occurring during the execution of a plugin. * * @since 4.0.0 */ @Experimental public class MojoException extends MavenException { protected Object source; protected String longMessage; /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon May 13 09:53:45 UTC 2024 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ContentNotFoundException.java
*/ package org.codelibs.fess.exception; /** * Exception thrown when requested content cannot be found. * Typically used when a document or resource is not available during crawling or indexing. */ public class ContentNotFoundException extends FessSystemException { private static final long serialVersionUID = 1L; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbEndOfFileException.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb; /** * Exception thrown when reaching the end of an SMB file. * * This exception is thrown during read operations when * attempting to read beyond the end of a file. * * @author mbechler */ public class SmbEndOfFileException extends SmbException { /** * */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/CreateForm.java
import jakarta.validation.constraints.Size; /** * Form class for creating protected words dictionary entries. * Protected words are terms that should not be modified or analyzed during * text processing, preserving their original form in search indexes. * */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/CrawlingConfigForm.java
*/ @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer depth; /** * Maximum number of pages/documents to access during crawling. */ @Min(value = 0) @Max(value = 9223372036854775807L) @ValidateTypeFailure public Long maxAccessCount;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/ndr/NdrException.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.dcerpc.ndr; import java.io.IOException; /** * Exception thrown when an error occurs during NDR encoding or decoding operations. */ public class NdrException extends IOException { /** * Error message for null reference pointers. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractService.java
super(AbstractService.this.monitor); } @Override public boolean isSatisfied() { return state().compareTo(TERMINATED) >= 0; } } /** The listeners to notify during a state transition. */ private final ListenerCallQueue<Listener> listeners = new ListenerCallQueue<>(); /** * The current state of the service. This should be written with the lock held but can be read
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 20.7K bytes - Viewed (0) -
src/main/java/jcifs/DfsResolver.java
* @param path the DFS path to resolve * @param tf the CIFS context containing configuration and credentials * @return the final referral for the given DFS path * @throws CIFSException if an error occurs during resolution * @throws jcifs.smb.SmbAuthException if authentication fails */ DfsReferralData resolve(CIFSContext tf, String domain, String root, String path) throws CIFSException; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/SamrPolicyHandle.java
* * @param handle the DCE/RPC handle for communication * @param server the server name (null defaults to local server) * @param access the desired access rights * @throws IOException if an I/O error occurs during handle creation */ public SamrPolicyHandle(final DcerpcHandle handle, String server, final int access) throws IOException { this.handle = handle; if (server == null) { server = "\\\\";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/cache/BatchRequestException.java
} /** * Returns the list of results from all requests that were part of the batch operation. * Each result contains the original request, the response (if successful), and any error * that occurred during processing. * * @return An unmodifiable list of request results */ public List<RequestResult<?, ?>> getResults() { return results; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 2.4K bytes - Viewed (0)