Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for smbuser (0.51 seconds)

  1. tests/test_response_model_as_return_annotation.py

        return [
            DBUser(name="John", surname="Doe", password_hash="secret"),
            DBUser(name="Jane", surname="Does", password_hash="secret2"),
        ]
    
    
    @app.get("/no_response_model-annotation_list_of_model")
    def no_response_model_annotation_list_of_model() -> list[User]:
        return [
            DBUser(name="John", surname="Doe", password_hash="secret"),
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 50.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/sso/SsoManagerTest.java

        }
    
        // Test full integration scenarios
        @Test
        public void test_fullScenario_ssoEnabled() {
            currentSsoType = "saml";
            final LoginCredential expectedCredential = new TestLoginCredential("samluser");
            final ActionResponse expectedResponse = HtmlResponse.asEmptyBody();
            final String expectedLogoutUrl = "https://saml.example.com/logout";
    
            testAuthenticator.setLoginCredential(expectedCredential);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.5K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

            searchLog.setQueryOffset(pageStart);
            searchLog.setQueryPageSize(pageSize);
    
            if (context.userId != null) {
                searchLog.setUser(context.userId);
            }
    
            if (context.request != null) {
                searchLog.setClientIp(StringUtils.abbreviate(context.clientIp, 100));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 29.3K bytes
    - Click Count (0)
Back to Top