Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 275 for beraber (1.17 sec)

  1. pkg/controller/statefulset/stateful_set_utils.go

    	"k8s.io/kubernetes/pkg/features"
    )
    
    var patchCodec = scheme.Codecs.LegacyCodec(apps.SchemeGroupVersion)
    
    // overlappingStatefulSets sorts a list of StatefulSets by creation timestamp, using their names as a tie breaker.
    // Generally used to tie break between StatefulSets that have overlapping selectors.
    type overlappingStatefulSets []*apps.StatefulSet
    
    func (o overlappingStatefulSets) Len() int { return len(o) }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

            "format": "date-time",
            "type": "string"
          }
        },
        "securitySchemes": {
          "BearerToken": {
            "description": "Bearer Token authentication",
            "in": "header",
            "name": "authorization",
            "type": "apiKey"
          }
        }
      },
      "info": {
        "title": "Kubernetes",
        "version": "unversioned"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

            "format": "date-time",
            "type": "string"
          }
        },
        "securitySchemes": {
          "BearerToken": {
            "description": "Bearer Token authentication",
            "in": "header",
            "name": "authorization",
            "type": "apiKey"
          }
        }
      },
      "info": {
        "title": "Kubernetes",
        "version": "unversioned"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/options/authentication.go

    			"File with webhook configuration for token authentication in kubeconfig format. "+
    			"The API server will query the remote service to determine authentication for bearer tokens.")
    
    		fs.StringVar(&o.WebHook.Version, "authentication-token-webhook-version", o.WebHook.Version, ""+
    			"The API version of the authentication.k8s.io TokenReview to send to and expect from the webhook.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  5. hack/lib/util.sh

      local token=$2
      local prefix=${3:-}
      local wait=${4:-1}
      local times=${5:-30}
      local maxtime=${6:-1}
    
      kube::util::wait_for_url "${url}" "${prefix}" "${wait}" "${times}" "${maxtime}" -H "Authorization: Bearer ${token}"
    }
    
    # Example:  kube::util::wait_for_success 120 5 "kubectl get nodes|grep localhost"
    # arguments: wait time, sleep time, shell command
    # returns 0 if the shell command get output, 1 otherwise.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

          MockResponse(
            code = 401,
            headers = headersOf("WWW-Authenticate", "Bearer realm=\"oauthed\""),
            body = "Please authenticate.",
          ),
        )
        server.enqueue(
          MockResponse(body = "A"),
        )
        val authenticator = RecordingOkAuthenticator("oauthed abc123", "Bearer")
        client =
          client.newBuilder()
            .authenticator(authenticator)
            .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                }
            }
            final HttpServletResponse response = LaResponseUtil.getResponse();
            if (t instanceof final InvalidAccessTokenException e) {
                response.setHeader("WWW-Authenticate", "Bearer error=\"" + e.getType() + "\"");
                writeJsonResponse(HttpServletResponse.SC_UNAUTHORIZED, message);
            } else {
                writeJsonResponse(status, message);
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  8. pkg/config/validation/validation_test.go

    				JwtRules: []*security_beta.JWTRule{
    					{
    						Issuer:  "foo.com",
    						JwksUri: "https://foo.com",
    						FromHeaders: []*security_beta.JWTHeader{
    							{
    								Name:   "",
    								Prefix: "Bearer ",
    							},
    						},
    					},
    				},
    			},
    			valid: false,
    		},
    		{
    			name:       "bad param location",
    			configName: constants.DefaultAuthenticationPolicyName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route_test.go

    		xdstest.ValidateRoutes(t, routes)
    		g.Expect(err).NotTo(HaveOccurred())
    		g.Expect(len(routes)).To(Equal(1))
    		g.Expect(routes[0].GetMatch().GetHeaders()[0].GetStringMatch().GetSafeRegex().GetRegex()).To(Equal("Bearer .+?\\..+?\\..+?"))
    	})
    
    	t.Run("for virtual service with regex matching on without_header", func(t *testing.T) {
    		g := NewWithT(t)
    		cg := core.NewConfigGenTest(t, core.TestOptions{})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  10. pkg/controller/deployment/util/deployment_util.go

    	}
    
    	return deployments, nil
    }
    
    // ReplicaSetsByRevision sorts a list of ReplicaSet by revision, using their creation timestamp or name as a tie breaker.
    // By using the creation timestamp, this sorts from old to new replica sets.
    type ReplicaSetsByRevision []*apps.ReplicaSet
    
    func (o ReplicaSetsByRevision) Len() int      { return len(o) }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
Back to top