Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for authenticating (0.28 sec)

  1. plugin/pkg/admission/noderestriction/admission_test.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/authentication/user"
    	corev1lister "k8s.io/client-go/listers/core/v1"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/component-base/featuregate"
    	kubeletapis "k8s.io/kubelet/pkg/apis"
    	authenticationapi "k8s.io/kubernetes/pkg/apis/authentication"
    	"k8s.io/kubernetes/pkg/apis/coordination"
    	api "k8s.io/kubernetes/pkg/apis/core"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMissingDateHeader: {
    		Code:           "AccessDenied",
    		Description:    "AWS authentication requires a valid Date or x-amz-date header",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidQuerySignatureAlgo: {
    		Code:           "AuthorizationQueryParametersError",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

         * address if the server. The hashing function uses the hashcode of the
         * server address, the canonical representation of the URL, and does not
         * compare authentication information. In essence, two
         * <code>SmbFile</code> objects that refer to
         * the same file should generate the same hashcode provided it is possible
         * to make such a determination.
         *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  4. cmd/kube-controller-manager/app/options/options_test.go

    			ServerCert: apiserveroptions.GeneratableKeyCert{
    				CertDirectory: "/a/b/c",
    				PairName:      "kube-controller-manager",
    			},
    			HTTP2MaxStreamsPerConnection: 47,
    		}).WithLoopback(),
    		Authentication: &apiserveroptions.DelegatingAuthenticationOptions{
    			CacheTTL:            10 * time.Second,
    			TokenRequestTimeout: 10 * time.Second,
    			WebhookRetryBackoff: apiserveroptions.DefaultAuthWebhookRetryBackoff(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_messages.go

    	var b cryptobyte.Builder
    	b.AddUint8(typeCertificateRequest)
    	b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    		// certificate_request_context (SHALL be zero length unless used for
    		// post-handshake authentication)
    		b.AddUint8(0)
    
    		b.AddUint16LengthPrefixed(func(b *cryptobyte.Builder) {
    			if m.ocspStapling {
    				b.AddUint16(extensionStatusRequest)
    				b.AddUint16(0) // empty extension_data
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	}
    
    	// verify changing the context fails storage
    	_, _, err = p.TransformFromStorage(ctx, out, value.DefaultContext("incorrect_context"))
    	if err != nil {
    		t.Fatalf("CBC mode does not support authentication: %v", err)
    	}
    
    	// reverse the order, use the second key
    	p = getTransformerFromEncryptionConfig(t, secondEncryptionConfig)
    	from, stale, err = p.TransformFromStorage(ctx, out, dataCtx)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

    // limitations under the License.
    
    package ambient
    
    import (
    	"context"
    	"fmt"
    	"net/http"
    	"path/filepath"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    
    	authenticationv1 "k8s.io/api/authentication/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/http/headers"
    	"istio.io/istio/pkg/kube/inject"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route_test.go

    		Http: []*networking.HTTPRoute{
    			{
    				Match: []*networking.HTTPMatchRequest{
    					{
    						Name: "auth",
    						Headers: map[string]*networking.StringMatch{
    							"Authentication": {
    								MatchType: &networking.StringMatch_Regex{
    									Regex: "Bearer .+?\\..+?\\..+?",
    								},
    							},
    						},
    					},
    				},
    				Redirect: &networking.HTTPRedirect{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
Back to top