Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 460 for Soggin (0.2 sec)

  1. cmd/logging.go

    }
    
    func kmsLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "kms", err, errKind...)
    }
    
    // KMSLogger permits access to kms module specific logging
    type KMSLogger struct{}
    
    // LogOnceIf is the implementation of LogOnceIf, accessible using the Logger interface
    func (l KMSLogger) LogOnceIf(ctx context.Context, err error, id string, errKind ...interface{}) {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 16 15:43:39 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  2. okhttp-logging-interceptor/api/logging-interceptor.api

    }
    
    public final class okhttp3/logging/HttpLoggingInterceptor$Level : java/lang/Enum {
    	public static final field BASIC Lokhttp3/logging/HttpLoggingInterceptor$Level;
    	public static final field BODY Lokhttp3/logging/HttpLoggingInterceptor$Level;
    	public static final field HEADERS Lokhttp3/logging/HttpLoggingInterceptor$Level;
    	public static final field NONE Lokhttp3/logging/HttpLoggingInterceptor$Level;
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 06 09:14:38 GMT 2024
    - 4.5K bytes
    - Viewed (1)
  3. .github/actions/people/app/main.py

        maintainers = []
        for login in maintainers_logins:
            user = authors[login]
            maintainers.append(
                {
                    "login": login,
                    "answers": experts_results.commenters[login],
                    "prs": contributors_results.contributors[login],
                    "avatarUrl": user.avatarUrl,
                    "url": user.url,
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Mar 26 17:38:21 GMT 2024
    - 19.2K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java

     */
    package org.codelibs.fess.app.web.sso;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.fess.app.web.RootAction;
    import org.codelibs.fess.app.web.base.FessLoginAction;
    import org.codelibs.fess.app.web.base.login.ActionResponseCredential;
    import org.codelibs.fess.app.web.login.LoginAction;
    import org.codelibs.fess.exception.SsoMessageException;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.app.web.base.login.FessCredential;
    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.web.login.credential.LoginCredential;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/login/LoginAction.java

     */
    package org.codelibs.fess.app.web.login;
    
    import javax.annotation.Resource;
    import javax.servlet.http.HttpSession;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.app.service.UserService;
    import org.codelibs.fess.app.web.base.FessLoginAction;
    import org.codelibs.fess.app.web.base.login.LocalUserCredential;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

        protected static final String SPNEGO_LOGIN_SERVER_MODULE = "spnego.login.server.module";
        protected static final String SPNEGO_LOGIN_CLIENT_MODULE = "spnego.login.client.module";
        protected static final String SPNEGO_KRB5_CONF = "spnego.krb5.conf";
        protected static final String SPNEGO_LOGIN_CONF = "spnego.login.conf";
        protected static final String SPNEGO_LOGGER_LEVEL = "spnego.logger.level";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

    import javax.servlet.http.HttpSession;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.misc.DynamicProperties;
    import org.codelibs.core.net.UuidUtil;
    import org.codelibs.fess.app.web.base.login.ActionResponseCredential;
    import org.codelibs.fess.app.web.base.login.FessLoginAssist.LoginCredentialResolver;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java

    import javax.annotation.Resource;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.fess.app.service.UserService;
    import org.codelibs.fess.app.web.base.FessSearchAction;
    import org.codelibs.fess.app.web.base.login.LocalUserCredential;
    import org.codelibs.fess.app.web.login.LoginAction;
    import org.codelibs.fess.mylasta.action.FessUserBean;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

    import javax.servlet.http.HttpSession;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.net.UuidUtil;
    import org.codelibs.fess.app.web.base.login.ActionResponseCredential;
    import org.codelibs.fess.app.web.base.login.FessLoginAssist.LoginCredentialResolver;
    import org.codelibs.fess.app.web.base.login.OpenIdConnectCredential;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.1K bytes
    - Viewed (0)
Back to top