Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 509 for Credential (0.13 sec)

  1. docs/sts/etcd.md

    }
    ```
    
    These credentials can now be used to perform MinIO API operations, these credentials automatically expire in 1hr. To understand more about credential expiry duration and client grants STS API read further [here](https://github.com/minio/minio/blob/master/docs/sts/client-grants.md).
    
    ## Explore Further
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/SsoManager.java

    import org.apache.logging.log4j.Logger;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.web.login.credential.LoginCredential;
    import org.lastaflute.web.response.ActionResponse;
    
    public class SsoManager {
        private static final Logger logger = LogManager.getLogger(SsoManager.class);
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt

        "PATHEXT",
    )
    
    
    val credentialsKeywords = listOf(
        "api_key",
        "access_key",
        "apikey",
        "accesskey",
        "password",
        "token",
        "credential",
        "auth"
    )
    
    
    fun Test.filterEnvironmentVariables() {
        environment = makePropagatedEnvironment()
        environment.forEach { (key, _) ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 18 01:52:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/options/options.go

    	credFetcherTypeEnv  = env.Register("CREDENTIAL_FETCHER_TYPE", security.JWT,
    		"The type of the credential fetcher. Currently supported types include GoogleComputeEngine").Get()
    	credIdentityProvider = env.Register("CREDENTIAL_IDENTITY_PROVIDER", "GoogleComputeEngine",
    		"The identity provider for credential. Currently default supported identity provider is GoogleComputeEngine").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/base/login/OpenIdConnectCredential.java

    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.entity.FessUser;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.web.login.credential.LoginCredential;
    
    public class OpenIdConnectCredential implements LoginCredential, FessCredential {
    
        private final Map<String, Object> attributes;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. pkg/kubelet/images/puller.go

    		}
    		pullRequest.pullChan <- pullResult{
    			imageRef:  imageRef,
    			imageSize: size,
    			err:       err,
    			// Note: pullDuration includes credential resolution and getting the image size.
    			pullDuration: time.Since(startTime),
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java

    import org.codelibs.fess.sso.SsoResponseType;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.login.credential.LoginCredential;
    import org.lastaflute.web.login.exception.LoginFailureException;
    import org.lastaflute.web.response.ActionResponse;
    
    public class SsoAction extends FessLoginAction {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. src/os/exec/exec_posix_test.go

    	}
    
    	// If NoSetGroups is true, setgroups isn't called and cmd.Run should succeed
    	cmd := helperCommand(t, "echo", "foo")
    	cmd.SysProcAttr = &syscall.SysProcAttr{
    		Credential: &syscall.Credential{
    			Uid:         uint32(uid),
    			Gid:         uint32(gid),
    			NoSetGroups: true,
    		},
    	}
    
    	if err = cmd.Run(); err != nil {
    		t.Errorf("Failed to run command: %v", err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 20:21:32 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java

    import org.codelibs.fess.entity.FessUser;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.sso.aad.AzureAdAuthenticator;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.web.login.credential.LoginCredential;
    
    import com.microsoft.aad.adal4j.AuthenticationResult;
    import com.microsoft.aad.adal4j.UserInfo;
    
    public class AzureAdCredential implements LoginCredential, FessCredential {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CredentialsProviderFactoryTest.groovy

            def provider = factory.provide(AwsCredentials, "id")
    
            when:
            def credentials = provider.get()
    
            then:
            credentials.secretKey == 'secret'
            credentials.accessKey == 'access'
            credentials.sessionToken == 'token'
        }
    
        def "collects multiple missing credentials failures when presence is checked"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top