Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,109 for authenticating (0.64 sec)

  1. src/net/smtp/smtp.go

    		return err
    	}
    	if err := c.hello(); err != nil {
    		return err
    	}
    	_, _, err := c.cmd(250, "VRFY %s", addr)
    	return err
    }
    
    // Auth authenticates a client using the provided authentication mechanism.
    // A failed authentication closes the connection.
    // Only servers that advertise the AUTH extension support this function.
    func (c *Client) Auth(a Auth) error {
    	if err := c.hello(); err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. docs/recipes.md

                  if (response.request.header("Authorization") != null) {
                    return null // Give up, we've already attempted to authenticate.
                  }
    
                  println("Authenticating for response: $response")
                  println("Challenges: ${response.challenges()}")
                  val credential = Credentials.basic("jesse", "password1")
                  return response.request.newBuilder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Feb 18 08:52:22 UTC 2022
    - 40.2K bytes
    - Viewed (0)
  3. pkg/security/security.go

    	Pkcs8Keys bool
    
    	// OutputKeyCertToDir is the directory for output the key and certificate
    	OutputKeyCertToDir string
    
    	// ProvCert is the directory for client to provide the key and certificate to CA server when authenticating
    	// with mTLS. This is not used for workload mTLS communication, and is
    	ProvCert string
    
    	// ClusterID is the cluster where the agent resides.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    		if !expectErr {
    			t.Fatalf("authenticate token: %v", err)
    		}
    		if got := err.Error(); c.wantErr != got {
    			t.Fatalf("expected error %q when authenticating token but got %q", c.wantErr, got)
    		}
    		return
    	}
    
    	if expectErr {
    		t.Fatalf("expected error %q when authenticating token but got none", c.wantErr)
    	}
    	if !ok {
    		if !c.wantSkip {
    			// We don't have any cases where we return (nil, false, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/fetch.go

    may also be downloaded from the checksum database depending on the values of
    GOSUMDB, GOPRIVATE, and GONOSUMDB.
    
    For details, see https://golang.org/ref/mod#authenticating.
    `,
    }
    
    var HelpPrivate = &base.Command{
    	UsageLine: "private",
    	Short:     "configuration for downloading non-public code",
    	Long: `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    link:{javadocPath}/org/gradle/authentication/http/BasicAuthentication.html[BasicAuthentication]::
    Basic access authentication over HTTP. When using this scheme, credentials are sent preemptively.
    
    link:{javadocPath}/org/gradle/authentication/http/DigestAuthentication.html[DigestAuthentication]::
    Digest access authentication over HTTP.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/server.go

    	jwtRule := &v1beta1.JWTRule{}
    	err := json.Unmarshal([]byte(args.JwtRule), jwtRule)
    	if err != nil {
    		return nil, fmt.Errorf("failed to unmarshal JWT rule: %v", err)
    	}
    	log.Infof("Istiod authenticating using JWTRule: %v", jwtRule)
    	jwtAuthn, err := authenticate.NewJwtAuthenticator(jwtRule, meshWatcher)
    	if err != nil {
    		return nil, fmt.Errorf("failed to create the JWT authenticator: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/authentication.go

    )
    
    // MutualTLSMode is the mutual TLS mode specified by authentication policy.
    type MutualTLSMode int
    
    const (
    	// MTLSUnknown is used to indicate the variable hasn't been initialized correctly (with the authentication policy).
    	MTLSUnknown MutualTLSMode = iota
    
    	// MTLSDisable if authentication policy disable mTLS.
    	MTLSDisable
    
    	// MTLSPermissive if authentication policy enable mTLS in permissive mode.
    	MTLSPermissive
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/helpdoc.go

    		See https://golang.org/ref/mod#private-modules.
    	GOROOT
    		The root of the go tree.
    	GOSUMDB
    		The name of checksum database to use and optionally its public key and
    		URL. See https://golang.org/ref/mod#authenticating.
    	GOTOOLCHAIN
    		Controls which Go toolchain is used. See https://go.dev/doc/toolchain.
    	GOTMPDIR
    		The directory where the go command will write
    		temporary source files, packages, and binaries.
    	GOVCS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_3x.md

     *  **Proxy authenticators are now asked for preemptive authentication.** OkHttp will now request
        authentication credentials before creating TLS tunnels through HTTP proxies (HTTP `CONNECT`).
        Authenticators should identify preemptive authentications by the presence of a challenge whose
        scheme is "OkHttp-Preemptive".
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
Back to top