Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 184 for Credential (0.17 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

        }
    
        def "credentials from DSL override credentials in URL"() {
            httpBuildCacheServer.withBasicAuth("user", "pass")
            settingsFile.text = useHttpBuildCache(getUrlWithCredentials("user", "wrongPass"))
            settingsFile << """
                buildCache {
                    remote.credentials {
                        username = "user"
                        password = "pass"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/extensions_test.go

    			want:                  credentials.KubernetesSecretTypeURI + "nm/sec",
    			wantResourceName:      "sec",
    			wantResourceNamespace: "nm",
    		},
    		{
    			name:                  credentials.KubernetesSecretTypeURI + "nm/sec",
    			namespace:             "nm",
    			want:                  credentials.KubernetesSecretTypeURI + "nm/sec",
    			wantResourceName:      "sec",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. pilot/pkg/credentials/kube/secrets.go

    func (s *CredentialsController) GetCertInfo(name, namespace string) (certInfo *credentials.CertInfo, err error) {
    	k8sSecret := s.secrets.Get(name, namespace)
    	if k8sSecret == nil {
    		return nil, fmt.Errorf("secret %v/%v not found", namespace, name)
    	}
    
    	return ExtractCertInfo(k8sSecret)
    }
    
    func (s *CredentialsController) GetCaCert(name, namespace string) (certInfo *credentials.CertInfo, err error) {
    	k8sSecret := s.secrets.Get(name, namespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

                    final AuthScope authScope = getAuthScope(webAuthName, scheme, paramMap);
                    final Credentials credentials = getCredentials(webAuthName, scheme, paramMap);
                    basicAuthList.add(new AuthenticationImpl(authScope, credentials, authScheme));
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top