Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 936 for handles (0.17 sec)

  1. src/main/java/jcifs/pac/kerberos/KerberosCredentials.java

    import javax.security.auth.kerberos.KerberosKey;
    import javax.security.auth.login.LoginContext;
    import javax.security.auth.login.LoginException;
    
    /**
     * Kerberos credentials management class that handles authentication through JAAS.
     */
    public class KerberosCredentials {
    
        private Subject subject;
    
        /**
         * Creates KerberosCredentials using the default JAAS configuration.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndXResponse.java

    import jcifs.internal.TreeConnectResponse;
    import jcifs.internal.smb1.AndXServerMessageBlock;
    import jcifs.internal.smb1.ServerMessageBlock;
    
    /**
     * SMB1 Tree Connect AndX response implementation.
     * Handles server responses to tree connect requests in SMB1 protocol, providing
     * information about the connected share including service type and DFS capabilities.
     *
     * @author mbechler
     */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing failure URL records in the admin interface.
     * This form handles the editing of URLs that failed during crawling operations,
     * providing details about the failure for debugging and troubleshooting purposes.
     */
    public class EditForm {
    
        /**
         * Creates a new EditForm instance.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java

    import jcifs.internal.smb1.trans.SmbComTransaction;
    import jcifs.internal.smb1.trans.SmbComTransactionResponse;
    
    /**
     * Trans2 QueryPathInformation response message for file metadata queries.
     * This class handles the response from a TRANS2_QUERY_PATH_INFORMATION request,
     * returning various file information levels based on the requested information level.
     */
    public class Trans2QueryPathInformationResponse extends SmbComTransactionResponse {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/StopwordsPager.java

     */
    package org.codelibs.fess.app.pager;
    
    import java.io.Serializable;
    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager for managing stopwords pagination.
     * This class handles the state and logic for paginating through a list of stopwords,
     * including total record count, page size, and current page number.
     */
    public class StopwordsPager implements Serializable {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java

    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing favorite log operations.
     * Provides functionality to add URLs to user favorites and retrieve favorite URL lists.
     * This service handles the persistence and retrieval of favorite log entries in the search system.
     */
    public class FavoriteLogService {
    
        /**
         * Default constructor.
         */
        public FavoriteLogService() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb/SmbTreeInternalTest.java

            verify(tree).send(eq(request), isNull());
        }
    
        @ParameterizedTest(name = "send with single param: {0}")
        @EnumSource(RequestParam.class)
        @DisplayName("send handles each RequestParam enum constant")
        void send_eachRequestParam_isAccepted(RequestParam param) throws Exception {
            // Arrange: stub per-call return to ensure interaction with the exact enum
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb/SecurityBlobTest.java

            assertTrue(blob.equals(blob), "Object should be equal to itself");
            assertEquals(blob.get().hashCode(), blob.hashCode(), "hashCode should delegate to internal array");
        }
    
        // Confirms constructor handles null by producing an empty buffer
        @Test
        @DisplayName("Constructor with null sets empty buffer")
        void constructor_withNull_setsEmpty() {
            // Arrange & Act
            SecurityBlob blob = new SecurityBlob(null);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb/CredentialsInternalTest.java

            assertTrue(ex.getMessage().contains("refresh failed"));
        }
    
        @ParameterizedTest
        @MethodSource("domains")
        @DisplayName("getUserDomain handles null and empty")
        void getUserDomain_edges(String domain) {
            TestCredentials creds = new TestCredentials(domain, false, false, new Subject(), false);
            assertEquals(domain, creds.getUserDomain());
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/crawler/transformer/FessStandardTransformer.java

    import org.codelibs.fess.util.ComponentUtil;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * Standard transformer implementation for the Fess search engine.
     * This transformer handles document transformation and content extraction using
     * the standard Fess file transformation process with support for various content types.
     *
     * <p>It extends AbstractFessFileTransformer to provide file-specific transformation
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.8K bytes
    - Viewed (0)
Back to top