- Sort Score
- Num 10 results
- Language All
Results 61 - 70 of 469 for logon (0.02 seconds)
-
docs/en/data/people.yml
maintainers: - login: tiangolo answers: 1922 avatarUrl: https://avatars.githubusercontent.com/u/1326112?u=cb5d06e73a9e1998141b1641aa88e443c6717651&v=4 url: https://github.com/tiangolo experts: - login: tiangolo count: 1922 avatarUrl: https://avatars.githubusercontent.com/u/1326112?u=cb5d06e73a9e1998141b1641aa88e443c6717651&v=4 url: https://github.com/tiangolo - login: YuriiMotov count: 1156
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Apr 01 15:47:21 GMT 2026 - 28.7K bytes - Click Count (0) -
scripts/people.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Mar 23 13:51:24 GMT 2026 - 15K bytes - Click Count (0) -
docs/en/data/contributors.yml
tiangolo: login: tiangolo count: 935 avatarUrl: https://avatars.githubusercontent.com/u/1326112?u=cb5d06e73a9e1998141b1641aa88e443c6717651&v=4 url: https://github.com/tiangolo dependabot: login: dependabot count: 157 avatarUrl: https://avatars.githubusercontent.com/in/29110?v=4 url: https://github.com/apps/dependabot YuriiMotov: login: YuriiMotov count: 66
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Apr 01 07:31:54 GMT 2026 - 20.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
import org.lastaflute.core.time.TimeManager; import org.lastaflute.web.login.LoginHandlingResource; import org.lastaflute.web.login.PrimaryLoginManager; import org.lastaflute.web.login.TypicalLoginAssist; import org.lastaflute.web.login.credential.LoginCredential; import org.lastaflute.web.login.exception.LoginRequiredException; import org.lastaflute.web.login.option.LoginSpecifiedOption; import org.lastaflute.web.servlet.session.SessionManager;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 12.1K bytes - Click Count (0) -
scripts/contributors.py
if pr.state == "MERGED" and pr.author: if is_lang: translators[pr.author.login] += 1 else: contributors[pr.author.login] += 1 return ContributorsResults( contributors=contributors, translation_reviewers=translation_reviewers, translators=translators, authors=authors, )
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Dec 16 12:34:01 GMT 2025 - 8.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java
// Test login/logout related labels assertEquals("{labels.login}", FessLabels.LABELS_LOGIN); assertEquals("{labels.login.title}", FessLabels.LABELS_LOGIN_TITLE); assertEquals("{labels.login.placeholder_username}", FessLabels.LABELS_LOGIN_placeholder_username); assertEquals("{labels.login.placeholder_password}", FessLabels.LABELS_LOGIN_placeholder_password);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java
// Test that constructor accepts Error as cause (verifies Throwable parameter change) String message = "SSO login failed due to memory error"; OutOfMemoryError error = new OutOfMemoryError("Not enough memory for SSO login"); SsoLoginException exception = new SsoLoginException(message, error); assertEquals(message, exception.getMessage());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 14.7K bytes - Click Count (0) -
src/main/webapp/WEB-INF/orig/view/advance.jsp
</li> </c:when> <c:when test="${ pageLoginLink }"> <li class="nav-item"><la:link href="/login" styleClass="nav-link" role="button" aria-haspopup="true" aria-expanded="false" > <i class="fa fa-fw fa-sign-in" aria-hidden="true"></i> <la:message key="labels.login" /> </la:link></li> </c:when> </c:choose>Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 14.2K bytes - Click Count (0) -
src/test/java/jcifs/pac/kerberos/KerberosCredentialsTest.java
/** * Test constructor with a valid login context. * * @throws LoginException if login fails. */ @Test void testConstructor_Success() throws LoginException { try (MockedConstruction<LoginContext> mocked = Mockito.mockConstruction(LoginContext.class, (mock, context) -> { when(mock.getSubject()).thenReturn(subject); doNothing().when(mock).login(); })) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/SsoAuthenticator.java
* OAuth, SPNEGO, or other authentication mechanisms. Each authenticator is responsible * for obtaining login credentials, resolving user information, and managing SSO * lifecycle operations like logout and metadata exchange. */ public interface SsoAuthenticator { /** * Gets the login credential for SSO authentication. * @return The login credential. */ LoginCredential getLoginCredential(); /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.2K bytes - Click Count (1)