Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 220 for Credential (0.14 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpIntegTest.groovy

            module.jar.expectPut(credentials)
            module.jar.sha1.expectPut(credentials)
            module.jar.sha256.expectPut(credentials)
            module.jar.sha512.expectPut(credentials)
            module.ivy.expectPut(credentials)
            module.ivy.sha1.expectPut(credentials)
            module.ivy.sha256.expectPut(credentials)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  2. fastapi/security/http.py

        security = HTTPBearer()
    
    
        @app.get("/users/me")
        def read_current_user(
            credentials: Annotated[HTTPAuthorizationCredentials, Depends(security)]
        ):
            return {"scheme": credentials.scheme, "credentials": credentials.credentials}
        ```
        """
    
        def __init__(
            self,
            *,
            bearerFormat: Annotated[Optional[str], Doc("Bearer token format.")] = None,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 15:29:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. cmd/bucket-handlers_test.go

    		{
    			bucketName:         bucketName,
    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusOK,
    		},
    		// Test case - 2.
    		// Non-existent bucket name.
    		{
    			bucketName:         "2333",
    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusNotFound,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  4. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/S3ClientIntegrationTest.groovy

            DefaultAwsCredentials credentials = new DefaultAwsCredentials()
            String bucketName = System.getenv('G_S3_BUCKET')
            credentials.setAccessKey(System.getenv('G_AWS_ACCESS_KEY_ID'))
            credentials.setSecretKey(System.getenv('G_AWS_SECRET_ACCESS_KEY'))
            S3Client s3Client = new S3Client(credentials, new S3ConnectionProperties())
    
            def fileContents = 'This is only a test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/transport/RepositoryTransportFactory.java

                    return null;
                }
    
                Credentials credentials = ((AuthenticationInternal) authentications.iterator().next()).getCredentials();
    
                if (credentials == null) {
                    return null;
                }
                if (type.isAssignableFrom(credentials.getClass())) {
                    return type.cast(credentials);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientConfigurer.java

                String scheme = getAuthScheme(authentication);
                org.gradle.api.credentials.Credentials credentials = authenticationInternal.getCredentials();
    
                Collection<AuthenticationInternal.HostAndPort> hostsForAuthentication = authenticationInternal.getHostsForAuthentication();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/FormScheme.java

        public boolean isComplete() {
            return false;
        }
    
        @Override
        public Header authenticate(final Credentials credentials, final HttpRequest request) throws AuthenticationException {
            return null;
        }
    
        public void authenticate(final Credentials credentials,
                final BiConsumer<HttpUriRequest, BiConsumer<HttpResponse, HttpEntity>> executor) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpAuthenticationDependencyResolutionIntegrationTest.groovy

            def moduleA = mavenHttpRepo.module('group', 'projectA', '1.2').publish()
            and:
            buildFile << """
    repositories {
        maven {
            url "${mavenHttpRepo.uri}"
            credentials(org.gradle.api.credentials.HttpHeaderCredentials) {
                name = "TestHttpHeaderName"
                value = "TestHttpHeaderValue"
            }
            authentication { header(HttpHeaderAuthentication) }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  9. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3Client.java

                clientConfiguration.setProxyPort(proxy.port);
                PasswordCredentials credentials = proxy.credentials;
                if (credentials != null) {
                    clientConfiguration.setProxyUsername(credentials.getUsername());
                    clientConfiguration.setProxyPassword(credentials.getPassword());
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  10. docs/sts/web-identity.md

    provider environments. This allows the generation of temporary credentials with pre-defined access policies for applications/users to interact with MinIO object storage.
    
    Calling AssumeRoleWithWebIdentity does not require the use of MinIO root or IAM credentials. Therefore, you can distribute an application (for example, on mobile devices) that requests temporary security credentials without including MinIO long lasting credentials in the application. Instead, the identity of the caller is validated...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top