Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for beaten (0.24 sec)

  1. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    more simply--"Never imagine yourself not to be otherwise than
    what it might appear to others that what you were or might have
    been was not otherwise than what you had been would have appeared
    to them to be otherwise."'
    
      `I think I should understand that better,' Alice said very
    politely, `if I had it written down:  but I can't quite follow it
    as you say it.'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    more simply--"Never imagine yourself not to be otherwise than
    what it might appear to others that what you were or might have
    been was not otherwise than what you had been would have appeared
    to them to be otherwise."'
    
      `I think I should understand that better,' Alice said very
    politely, `if I had it written down:  but I can't quite follow it
    as you say it.'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          }
        },
        "node_modules/json-parse-better-errors": {
          "version": "1.0.2",
          "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
          "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
          "dev": true
        },
        "node_modules/json-parse-even-better-errors": {
          "version": "2.3.1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

    		"Authorization":    {"Bearer " + jwt.TokenIssuer1WithNestedClaims2},
    		"X-Jwt-Nested-Key": {"value_to_be_replaced"},
    	}
    	headersWithToken2WithAddedHeader := map[string][]string{
    		"Authorization":      {"Bearer " + jwt.TokenIssuer1WithNestedClaims2},
    		"x-jwt-wrong-header": {"header_to_be_deleted"},
    	}
    	headersWithToken3 := map[string][]string{
    		"Authorization": {"Bearer " + jwt.TokenIssuer1WithCollisionResistantName},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

      KONNECTIVITY_AGENT_CERT_DIR="${KUBE_TEMP}/easy-rsa-master/konnectivity-agent"
      if [ ! -x "${CERT_DIR}/easyrsa" ] || [ ! -x "${AGGREGATOR_CERT_DIR}/easyrsa" ]; then
        # TODO(roberthbailey,porridge): add better error handling here,
        # see https://github.com/kubernetes/kubernetes/issues/55229
        cat "${cert_create_debug_output}" >&2
        echo "=== Failed to setup easy-rsa: Aborting ===" >&2
        exit 2
      fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/link/internal/ld/data.go

    		if !rt.IsDirectCallOrJump() && !isPLTCall(rt) {
    			continue
    		}
    		rs := r.Sym()
    		if !ldr.AttrReachable(rs) || ldr.SymType(rs) == sym.Sxxx {
    			continue // something is wrong. skip it here and we'll emit a better error later
    		}
    
    		if ldr.SymValue(rs) == 0 && ldr.SymType(rs) != sym.SDYNIMPORT && ldr.SymType(rs) != sym.SUNDEFEXT {
    			// Symbols in the same package are laid out together (if we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    		// expect to not have some container info. The pod worker knows whether a pod has
    		// been evicted, so if this is about minimizing the time to react to an eviction we
    		// can do better. If it's about preserving pod status info we can also do better.
    		if eviction.PodIsEvicted(pod.Status) {
    			if podStatus, err := kl.podCache.Get(pod.UID); err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    				t.Errorf("no claims specified in response")
    			}
    			claim := r.URL.Path[1:] // "/groups" -> "groups"
    			expectedAuth := fmt.Sprintf("Bearer %v_token", claim)
    			auth := r.Header.Get("Authorization")
    			if auth != expectedAuth {
    				t.Errorf("bearer token expected: %q, was %q", expectedAuth, auth)
    			}
    			jws, err := signer.Sign([]byte(claimToResponseMap[claim]))
    			if err != 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)
Back to top