Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for DefaultAwsCredentials (0.24 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/credentials/DefaultAwsCredentials.java

     * limitations under the License.
     */
    
    package org.gradle.internal.credentials;
    
    import org.gradle.api.credentials.AwsCredentials;
    import org.gradle.api.tasks.Internal;
    
    public class DefaultAwsCredentials implements AwsCredentials {
    
        private String accessKey;
        private String secretKey;
        private String sessionToken;
    
        @Internal
        @Override
        public String getAccessKey() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/S3ClientIntegrationTest.groovy

        final String bucketName = 'org.gradle.artifacts'
    
        @Rule
        final TestNameTestDirectoryProvider temporaryFolder = new TestNameTestDirectoryProvider(getClass())
    
        @Shared
        DefaultAwsCredentials awsCredentials = new DefaultAwsCredentials()
    
        @Rule
        public final S3Server server = new S3Server(temporaryFolder)
    
        def setup() {
            awsCredentials.setAccessKey(accessKey)
            awsCredentials.setSecretKey(secret)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/credentials/CredentialsToStringSpec.groovy

            credentials << [makeAwsCredentials(secretValue), makePasswordCredentials(secretValue), makeHttpHeaderCredentials(secretValue)]
        }
    
        private static DefaultAwsCredentials makeAwsCredentials(String secretValue) {
            def credentials = new DefaultAwsCredentials()
            credentials.setAccessKey(secretValue)
            credentials.setSecretKey(secretValue)
            credentials.setSessionToken(secretValue)
            return credentials
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/AbstractAuthenticationSupportedRepositoryTest.groovy

            given:
            DefaultAwsCredentials enhancedCredentials = new DefaultAwsCredentials()
            enhanceCredentials(enhancedCredentials, 'accessKey', 'secretKey')
    
            Instantiator instantiator = Mock()
            AuthenticationContainer authenticationContainer = Mock()
            instantiator.newInstance(DefaultAwsCredentials) >> enhancedCredentials
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/AuthenticationSupporter.java

    import org.gradle.internal.Cast;
    import org.gradle.internal.authentication.AllSchemesAuthentication;
    import org.gradle.internal.authentication.AuthenticationInternal;
    import org.gradle.internal.credentials.DefaultAwsCredentials;
    import org.gradle.internal.credentials.DefaultHttpHeaderCredentials;
    import org.gradle.internal.credentials.DefaultPasswordCredentials;
    import org.gradle.internal.reflect.Instantiator;
    
    import java.util.Collection;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenPublishS3IntegrationTest.groovy

    import org.gradle.integtests.resource.s3.fixtures.MavenS3Repository
    import org.gradle.integtests.resource.s3.fixtures.S3Artifact
    import org.gradle.integtests.resource.s3.fixtures.S3Server
    import org.gradle.internal.credentials.DefaultAwsCredentials
    import org.gradle.test.precondition.Requires
    import org.gradle.test.precondition.TestPrecondition
    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.gradle.test.preconditions.UnitTestPreconditions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CredentialsProviderFactory.java

    import org.gradle.api.execution.TaskExecutionGraphListener;
    import org.gradle.api.provider.Provider;
    import org.gradle.api.provider.ProviderFactory;
    import org.gradle.internal.credentials.DefaultAwsCredentials;
    import org.gradle.internal.credentials.DefaultHttpHeaderCredentials;
    import org.gradle.internal.credentials.DefaultPasswordCredentials;
    import org.gradle.internal.logging.text.TreeFormatter;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3ClientTest.groovy

    import com.amazonaws.services.s3.model.UploadPartResult
    import com.google.common.base.Optional
    import org.gradle.api.resources.ResourceException
    import org.gradle.internal.credentials.DefaultAwsCredentials
    import org.gradle.internal.resource.transport.http.HttpProxySettings
    import spock.lang.Ignore
    import spock.lang.Specification
    
    class S3ClientTest extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.internal.credentials.DefaultAwsCredentials> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (DefaultAwsCredentials.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top