Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. cmd/bucket-targets.go

    	}
    	// validate if target credentials are ok
    	exists, err := clnt.BucketExists(ctx, tgt.TargetBucket)
    	if err != nil {
    		switch minio.ToErrorResponse(err).Code {
    		case "NoSuchBucket":
    			return BucketRemoteTargetNotFound{Bucket: tgt.TargetBucket, Err: err}
    		case "AccessDenied":
    			return RemoteTargetConnectionErr{Bucket: tgt.TargetBucket, AccessKey: tgt.Credentials.AccessKey, Err: err}
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:09:56 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. cmd/signature-v2.go

    	if len(authFields) != 2 {
    		return auth.Credentials{}, false, ErrMissingFields
    	}
    
    	// Then will be splitting on ":", this will separate `AWSAccessKeyId` and `Signature` string.
    	keySignFields := strings.Split(strings.TrimSpace(authFields[1]), ":")
    	if len(keySignFields) != 2 {
    		return auth.Credentials{}, false, ErrMissingFields
    	}
    
    	return checkKeyValid(r, keySignFields[0])
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. cmd/sftp-server.go

    		}
    	} else {
    
    		// Temporary credentials are not allowed.
    		if ui.Credentials.IsTemp() {
    			return nil, errAuthentication
    		}
    
    		if subtle.ConstantTimeCompare([]byte(ui.Credentials.SecretKey), pass) != 1 {
    			return nil, errAuthentication
    		}
    	}
    
    	return &ssh.Permissions{
    		CriticalOptions: map[string]string{
    			"AccessKey":    ui.Credentials.AccessKey,
    			"SecretKey":    ui.Credentials.SecretKey,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. hack/make-rules/test-e2e-node.sh

        2>&1 | tee -i "${artifacts}/build-log.txt"
      exit $?
    
    else
      # Refresh sudo credentials if needed
      if ping -c 1 -q metadata.google.internal &> /dev/null; then
        echo 'Running on GCE, not asking for sudo credentials'
      elif ping -c 1 -q 169.254.169.254 &> /dev/null; then
        echo 'Running on AWS, not asking for sudo credentials'
      elif sudo --non-interactive "$(which bash)" -c true 2> /dev/null; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. cmd/iam-etcd-store.go

    			if u.Credentials.IsTemp() {
    				// We should delete such that the client can re-request
    				// for the expiring credentials.
    				deleteKeyEtcd(ctx, ies.client, getUserIdentityPath(user, userType))
    				deleteKeyEtcd(ctx, ies.client, getMappedPolicyPath(user, userType, false))
    			}
    			return nil
    		}
    		u.Credentials.Claims = jwtClaims.Map()
    	}
    	if u.Credentials.Description == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

        }
    
        @CompileStatic
        HttpResourceInteraction expect(String path, boolean matchPrefix, Collection<String> methods, Action action, PasswordCredentials credentials = null) {
            if (credentials != null) {
                action = withAuthentication(path, credentials.username, credentials.password, action)
            } else {
                action = refuseAuthentication(path, action)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    If you are concerned about placing your credentials in `gradle.properties`, check out the https://plugins.gradle.org/plugin/de.qaware.seu.as.code.credentials[Seauc Credentials plugin] or the https://plugins.gradle.org/plugin/nu.studer.credentials[Gradle Credentials plugin].
    
    [[plugin-publishing-plugin]]
    == Adding the {publishplugin}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. cmd/iam-object-store.go

    			if u.Credentials.IsTemp() {
    				// We should delete such that the client can re-request
    				// for the expiring credentials.
    				iamOS.deleteIAMConfig(ctx, getUserIdentityPath(user, userType))
    				iamOS.deleteIAMConfig(ctx, getMappedPolicyPath(user, userType, false))
    			}
    			return nil
    
    		}
    		u.Credentials.Claims = jwtClaims.Map()
    	}
    
    	if u.Credentials.Description == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  9. pilot/pkg/security/model/authentication.go

    func ConstructSdsSecretConfigForCredential(name string, credentialSocketExist bool) *tls.SdsSecretConfig {
    	if name == "" {
    		return nil
    	}
    	if name == credentials.BuiltinGatewaySecretTypeURI {
    		return ConstructSdsSecretConfig(SDSDefaultResourceName)
    	}
    	if name == credentials.BuiltinGatewaySecretTypeURI+SdsCaSuffix {
    		return ConstructSdsSecretConfig(SDSRootResourceName)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/controller.go

    		namespaces[ns.Name] = ns
    	}
    	input.Namespaces = namespaces
    
    	if c.credentialsController != nil {
    		credentials, err := c.credentialsController.ForCluster(c.cluster)
    		if err != nil {
    			return fmt.Errorf("failed to get credentials: %v", err)
    		}
    		input.Credentials = credentials
    	}
    
    	output := convertResources(input)
    
    	// Handle all status updates
    	c.QueueStatusUpdates(input)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top