Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,558 for During (0.05 sec)

  1. src/main/java/org/codelibs/fess/exception/SsoProcessException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    /**
     * Exception thrown during SSO (Single Sign-On) processing operations.
     *
     * This exception is used to indicate errors that occur during the execution
     * of SSO authentication and authorization processes. It extends FessSystemException
     * to provide consistent error handling within the Fess system for SSO-related
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverResult.java

    /**
     * Represents the result of a version range resolution request. This interface provides access to
     * information about resolved versions that match a version range constraint, including any exceptions
     * that occurred during resolution, the available versions, and their source repositories.
     *
     * <p>The versions returned by this interface are guaranteed to be in ascending order.</p>
     *
     * @since 4.0.0
     */
    @Experimental
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 29 08:17:07 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  3. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java

         *
         * @return the command string
         */
        @Nonnull
        String command();
    
        /**
         * Returns the Maven command name (ie "Maven"). This string is used in some invokers to complete error messages.
         *
         * @return the command (human) name
         */
        @Nonnull
        String commandName();
    
        /**
         * Returns the logger to be used during the parsing process.
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlFactory.java

        /**
         * Converts the given content to an XML string.
         *
         * @param content the object to convert
         * @return the xml string representation
         * @throws XmlWriterException if an error occurs during the transformation
         * @see #fromXmlString(String)
         */
        @Nonnull
        default String toXmlString(@Nonnull T content) throws XmlWriterException {
            StringWriter sw = new StringWriter();
            write(content, sw);
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  5. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelTransformer.java

    /**
     * Interface for model transformers that can modify Maven project models at different stages of processing.
     * <p>
     * Model transformers allow plugins and extensions to modify the POM model during the build process.
     * Transformations can be applied at three different stages:
     * <ol>
     *   <li>File model - The raw model as read directly from the file</li>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/DcerpcHandle.java

         */
        /**
         * Parses a DCERPC binding string into a DcerpcBinding object
         * @param str the binding string to parse
         * @return the parsed DcerpcBinding object
         * @throws DcerpcException if the binding string is malformed
         */
        protected static DcerpcBinding parseBinding(final String str) throws DcerpcException {
            int state, mark, si;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

         *
         * @param queryString the query string to parse
         * @param enc the character encoding to use for URL decoding
         * @return a map of parameter names to their decoded values
         * @throws IOException if an error occurs during URL decoding
         */
        protected Map<String, String[]> parseQueryString(final String queryString, final String enc) throws IOException {
            final Map<String, List<String>> paramListMap = new HashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java

         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The URL that failed during crawling.
         * This is a required field containing the actual URL that encountered an error.
         */
        @Required
        public String url;
    
        /**
         * The name of the crawler thread that encountered the failure.
         * This is a required field used for identifying which crawler process failed.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SSPContext.java

        /**
         * Gets the NetBIOS name of the remote endpoint.
         * @return the name of the remote endpoint
         */
        String getNetbiosName();
    
        /**
         * Disposes of the security context and releases any associated resources.
         * @throws CIFSException if an error occurs during disposal
         */
        void dispose() throws CIFSException;
    
        /**
         * Checks whether the specified security mechanism is supported.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  10. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerException.java

    import org.apache.maven.api.annotations.Nullable;
    import org.apache.maven.api.services.MavenException;
    
    /**
     * Represents an exception that occurs during the invocation of a Maven build or command.
     * This exception is typically thrown when there are errors during the execution of a Maven
     * process, such as build failures, plugin errors, or other runtime issues.
     *
     * @since 4.0.0
     */
    @Experimental
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Nov 13 14:14:56 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top