Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 310 for Credential (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. cmd/ftp-server-driver.go

    		})
    	}
    
    	// ok == true - at this point
    
    	if ui.Credentials.IsTemp() {
    		// Temporary credentials are not allowed.
    		return nil, errAuthentication
    	}
    
    	return minio.New(driver.endpoint, &minio.Options{
    		Creds:     credentials.NewStaticV4(ui.Credentials.AccessKey, ui.Credentials.SecretKey, ""),
    		Secure:    globalIsTLS,
    		Transport: globalRemoteFTPClientTransport,
    	})
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. cmd/bucket-policy-handlers_test.go

    		{
    			bucketName:         bucketName,
    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusNoContent,
    		},
    		// Test case - 2.
    		// Case with non-existent-bucket.
    		{
    			bucketName:         "non-existent-bucket",
    			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
    - 32.9K bytes
    - Viewed (0)
  8. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3ClientTest.groovy

            ex.message.startsWith("Could not write to resource 'https://somehost/file.txt'")
        }
    
        def credentials() {
            def credentials = new DefaultAwsCredentials()
            credentials.setAccessKey("AKey")
            credentials.setSecretKey("ASecret")
            credentials
        }
    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. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIvyPublishIntegrationTest.groovy

        }
    
        private void prepareIvyHttpRepository(IvyHttpRepository repository, PasswordCredentials credentials) {
            def rootModule = repository.module("group", "root")
            rootModule.ivy.expectPublish(true, credentials)
            rootModule.moduleMetadata.expectPublish(true, credentials)
        }
    
        private Map<File, String> ivyRepoFiles() {
            listFiles(ivyRepo.rootDir, null, true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. cmd/bucket-lifecycle-handlers_test.go

    }
    
    // Test for authentication
    func testBucketLifecycleHandlersWrongCredentials(obj ObjectLayer, instanceType, bucketName string, apiRouter http.Handler,
    	credentials auth.Credentials, t *testing.T,
    ) {
    	// test cases with sample input and expected output.
    	testCases := []struct {
    		method     string
    		bucketName string
    		accessKey  string
    		secretKey  string
    		// Sent body
    		body []byte
    		// Expected response
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top