Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 358 for functionality (0.08 sec)

  1. docs/en/docs/tutorial/security/simple-oauth2.md

    We are not using `scopes` in this example, but the functionality is there if you need it.
    
    ///
    
    Now, get the user data from the (fake) database, using the `username` from the form field.
    
    If there is no such user, we return an error saying "Incorrect username or password".
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/SearchEngineUtilTest.java

            AtomicInteger callbackCount = new AtomicInteger(0);
    
            try {
                // This will likely fail due to missing SearchEngineClient setup,
                // but we can verify the method signature and basic functionality
                SearchEngineUtil.scroll("test_index", hit -> {
                    callbackCount.incrementAndGet();
                    return true; // Continue processing
                });
            } catch (Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/http/HandlerTest.java

    import org.mockito.Mock;
    import org.mockito.junit.jupiter.MockitoExtension;
    
    import jcifs.CIFSContext;
    
    /**
     * Tests for the {@link Handler} class.
     * This class tests the functionality of the NTLM URLStreamHandler wrapper.
     */
    @ExtendWith(MockitoExtension.class)
    class HandlerTest {
    
        @Mock
        private CIFSContext mockCifsContext;
    
        private Handler handler;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

    import org.codelibs.fess.util.ComponentUtil;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * Helper class for managing related content configurations.
     * This class provides functionality to load, cache, and retrieve related content
     * based on search queries and virtual host configurations. It supports both exact
     * term matching and regex pattern matching for flexible content association.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

             */
            Query parse(final String query);
        }
    
        /**
         * Custom Lucene query parser that extends the standard QueryParser
         * to provide additional functionality for quoted queries.
         */
        protected static class LuceneQueryParser extends org.apache.lucene.queryparser.classic.QueryParser {
    
            /** The default field for queries */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb1/trans/SmbComTransactionResponseTest.java

            response.setTestErrorCode(0);
            response.hasMore = false;
            assertFalse(response.hasMoreElements());
        }
    
        @Test
        @DisplayName("Test reset functionality")
        void testReset() {
            // Reset should not throw exception
            assertDoesNotThrow(() -> response.reset());
        }
    
        @Test
        @DisplayName("Test encode operation")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  7. src/test/java/jcifs/ntlmssp/Type1MessageTest.java

    import org.mockito.junit.jupiter.MockitoExtension;
    
    import jcifs.CIFSContext;
    import jcifs.Configuration;
    import jcifs.NameServiceClient;
    import jcifs.NetbiosAddress;
    
    /**
     * Test class for NTLMSSP Type 1 Message functionality
     */
    @ExtendWith(MockitoExtension.class)
    @DisplayName("Type1Message Tests")
    class Type1MessageTest {
    
        @Mock
        private CIFSContext mockContext;
    
        @Mock
        private Configuration mockConfig;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  8. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlService.java

    import org.apache.maven.api.annotations.Nullable;
    
    /**
     * Comprehensive service interface for XML operations including node creation,
     * merging, reading, and writing.
     *
     * <p>This class provides XML merging functionality for Maven's XML handling
     * and specifies the combination modes that control how XML elements are merged.</p>
     *
     * <p>The merger supports two main types of combinations:</p>
     * <ul>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/job/ExecJob.java

    import org.lastaflute.di.exception.IORuntimeException;
    import org.lastaflute.job.LaJobRuntime;
    
    /**
     * Abstract base class for executable jobs in the Fess search engine.
     * This class provides common functionality for job execution including process management,
     * logging configuration, JVM options, and timeout handling.
     *
     * <p>Subclasses must implement the abstract methods to define specific job behavior
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponseTest.java

    import jcifs.internal.smb2.ServerMessageBlock2Request;
    import jcifs.internal.smb2.ServerMessageBlock2Response;
    import jcifs.internal.util.SMBUtil;
    
    /**
     * Test class for Smb2TreeConnectResponse functionality
     */
    @DisplayName("Smb2TreeConnectResponse Tests")
    class Smb2TreeConnectResponseTest extends BaseTest {
    
        private Configuration mockConfig;
        private Smb2TreeConnectResponse response;
    
        @BeforeEach
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 19.3K bytes
    - Viewed (0)
Back to top