Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 120 for Credential (0.33 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    ==== Specifying access credentials
    
    https://en.wikipedia.org/wiki/Basic_access_authentication[HTTP Basic Authentication] is supported, with credentials being sent preemptively.
    
    .Specifying access credentials
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. src/net/smtp/smtp_test.go

    	err = c.Auth(PlainAuth("", "user", "pass", "smtp.google.com"))
    
    	if err == nil {
    		t.Error("Auth: expected error; got none")
    	} else if err.Error() != "535 Invalid credentials\nplease see www.example.com" {
    		t.Errorf("Auth: got error: %v, want: %s", err, "535 Invalid credentials\nplease see www.example.com")
    	}
    
    	bcmdbuf.Flush()
    	actualcmds := cmdbuf.String()
    	if client != actualcmds {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/common/extensions.kt

                failOnText {
                    conditionType = BuildFailureOnText.ConditionType.CONTAINS
                    pattern = "%unmaskedFakeCredentials%"
                    failureMessage = "This build might be leaking credentials"
                    reverse = false
                    stopBuildOnFailure = true
                }
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. tests/integration/telemetry/api/dashboard_test.go

    		"pilot-dashboard.json",
    		[]string{
    			"pilot_xds_push_errors",
    			"pilot_total_xds_internal_errors",
    			"pilot_xds_push_context_errors",
    			`pilot_xds_pushes{type!~"lds|cds|rds|eds"}`,
    			// We do not push credentials in this test
    			`pilot_xds_pushes{type="sds"}`,
    			"_timeout",
    			"_rejects",
    			// We do not simulate injection errors
    			"sidecar_injection_failure_total",
    			// In default install, we have no proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. internal/event/target/kafka.go

    	yes, err := target.isActive()
    	if err != nil {
    		return err
    	}
    	if !yes {
    		return store.ErrNotConnected
    	}
    
    	return nil
    }
    
    // NewKafkaTarget - creates new Kafka target with auth credentials.
    func NewKafkaTarget(id string, args KafkaArgs, loggerOnce logger.LogOnce) (*KafkaTarget, error) {
    	var queueStore store.Store[event.Event]
    	if args.QueueDir != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 15:02:59 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. pkg/kube/client.go

    	"errors"
    	"fmt"
    	"io"
    	"net/http"
    	"os"
    	"strconv"
    	"strings"
    	"time"
    
    	"github.com/hashicorp/go-multierror"
    	"go.uber.org/atomic"
    	"golang.org/x/sync/errgroup"
    	"google.golang.org/grpc/credentials"
    	v1 "k8s.io/api/core/v1"
    	apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
    	kubeExtClient "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. internal/config/identity/ldap/ldap.go

    	lookupResult, err := l.LDAP.LookupUsername(conn, username)
    	if err != nil {
    		errRet := fmt.Errorf("Unable to find user DN: %w", err)
    		return nil, nil, errRet
    	}
    
    	// Authenticate the user credentials.
    	err = conn.Bind(lookupResult.ActualDN, password)
    	if err != nil {
    		errRet := fmt.Errorf("LDAP auth failed for DN %s: %w", lookupResult.ActualDN, err)
    		return nil, nil, errRet
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 25 13:43:06 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  8. cmd/bucket-object-lock.go

    func enforceRetentionBypassForPut(ctx context.Context, r *http.Request, oi ObjectInfo, objRetention *objectlock.ObjectRetention, cred auth.Credentials, owner bool) error {
    	byPassSet := objectlock.IsObjectLockGovernanceBypassSet(r.Header)
    
    	t, err := objectlock.UTCNowNTP()
    	if err != nil {
    		internalLogIf(ctx, err, logger.WarningKind)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/security/simple-oauth2.md

    Open the interactive docs: <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>.
    
    ### Authenticate
    
    Click the "Authorize" button.
    
    Use the credentials:
    
    User: `johndoe`
    
    Password: `secret`
    
    <img src="/img/tutorial/security/image04.png">
    
    After authenticating in the system, you will see it like:
    
    <img src="/img/tutorial/security/image05.png">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    <<init_scripts.adoc#init_scripts,Initialization scripts>> make it extremely easy to apply build logic across all projects on a single machine.
    For example, to declare a in-house repository and its credentials.
    
    There are some drawbacks to the approach.
    First of all, you will have to communicate the setup process across all developers in the company.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top