Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 120 for Credential (0.17 sec)

  1. cmd/metrics.go

    				tc.ResponseRecorder.LogErrBody = true
    			}
    
    			writeErrorResponseJSON(r.Context(), w, toAdminAPIErr(r.Context(), errAuthentication), r.URL)
    			return
    		}
    
    		cred := auth.Credentials{
    			AccessKey: claims.AccessKey,
    			Claims:    claims.Map(),
    			Groups:    groups,
    		}
    
    		// For authenticated users apply IAM policy.
    		if !globalIAMSys.IsAllowed(policy.Args{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/status/server.go

    	"github.com/prometheus/client_golang/prometheus/collectors"
    	"github.com/prometheus/common/expfmt"
    	"golang.org/x/net/http2"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/codes"
    	"google.golang.org/grpc/credentials/insecure"
    	grpcHealth "google.golang.org/grpc/health/grpc_health_v1"
    	grpcStatus "google.golang.org/grpc/status"
    	"google.golang.org/protobuf/proto"
    	k8sUtilIo "k8s.io/utils/io"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

        val nextTunnelRequest =
          createTunnel()
            ?: return ConnectResult(plan = this) // Success.
    
        // The proxy decided to close the connection after an auth challenge. Retry with different
        // auth credentials.
        rawSocket?.closeQuietly()
    
        val nextAttempt = attempt + 1
        return when {
          nextAttempt < MAX_TUNNEL_ATTEMPTS -> {
            user.callConnectEnd(route, null)
            ConnectResult(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/security/oauth2-jwt.md

    You'll see the user interface like:
    
    <img src="/img/tutorial/security/image07.png">
    
    Authorize the application the same way as before.
    
    Using the credentials:
    
    Username: `johndoe`
    Password: `secret`
    
    !!! check
        Notice that nowhere in the code is the plaintext password "`secret`", we only have the hashed version.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/controllermanager.go

    	// Always start the SA token controller first using a full-power client, since it needs to mint tokens for the rest
    	// If this fails, just return here and fail since other controllers won't be able to get credentials.
    	if serviceAccountTokenControllerDescriptor, ok := controllerDescriptors[names.ServiceAccountTokenController]; ok {
    		check, err := StartController(ctx, controllerCtx, serviceAccountTokenControllerDescriptor, unsecuredMux)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/HttpHeaders.java

       */
      public static final String ACCESS_CONTROL_ALLOW_PRIVATE_NETWORK =
          "Access-Control-Allow-Private-Network";
      /** The HTTP {@code Access-Control-Allow-Credentials} header field name. */
      public static final String ACCESS_CONTROL_ALLOW_CREDENTIALS = "Access-Control-Allow-Credentials";
      /** The HTTP {@code Access-Control-Expose-Headers} header field name. */
      public static final String ACCESS_CONTROL_EXPOSE_HEADERS = "Access-Control-Expose-Headers";
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/net/HttpHeaders.java

       */
      public static final String ACCESS_CONTROL_ALLOW_PRIVATE_NETWORK =
          "Access-Control-Allow-Private-Network";
      /** The HTTP {@code Access-Control-Allow-Credentials} header field name. */
      public static final String ACCESS_CONTROL_ALLOW_CREDENTIALS = "Access-Control-Allow-Credentials";
      /** The HTTP {@code Access-Control-Expose-Headers} header field name. */
      public static final String ACCESS_CONTROL_EXPOSE_HEADERS = "Access-Control-Expose-Headers";
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/config.go

    	// ServiceAccount (k8s only) indicates that a service account should be created
    	// for the deployment.
    	ServiceAccount bool
    
    	// DisableAutomountSAToken indicates to opt out of auto mounting ServiceAccount's API credentials
    	DisableAutomountSAToken bool
    
    	// Ports for this application. Port numbers may or may not be used, depending
    	// on the implementation.
    	Ports Ports
    
    	// ServiceAnnotations is annotations on service object.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. cmd/bucket-replication-handlers.go

    		return
    	}
    
    	// Write success response.
    	writeSuccessResponseJSON(w, data)
    }
    
    // ValidateBucketReplicationCredsHandler - validate replication credentials for a bucket.
    // ----------
    func (api objectAPIHandlers) ValidateBucketReplicationCredsHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "ValidateBucketReplicationCreds")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. cmd/object-api-errors.go

    	Endpoint  string
    	AccessKey string
    }
    
    func (e RemoteTargetConnectionErr) Error() string {
    	if e.Bucket != "" {
    		return fmt.Sprintf("Remote service endpoint offline, target bucket: %s or remote service credentials: %s invalid \n\t%s", e.Bucket, e.AccessKey, e.Err.Error())
    	}
    	return fmt.Sprintf("Remote service endpoint %s not available\n\t%s", e.Endpoint, e.Err.Error())
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 22:19:00 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top