Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 660 for tolen (0.06 sec)

  1. pkg/serviceaccount/jwt_test.go

    	if err != nil {
    		t.Fatalf("error generating token: %v", err)
    	}
    	if len(rsaToken) == 0 {
    		t.Fatalf("no token generated")
    	}
    	rsaSecret.Data = map[string][]byte{
    		"token": []byte(rsaToken),
    	}
    
    	checkJSONWebSignatureHasKeyID(t, rsaToken, rsaKeyID)
    
    	// Generate RSA token with invalidAutoSecret
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

        return true;
      }
    
      if (*region_idx < region_if.getNumRegions()) {
        // For the region-blocks of If op, we create a dummy token argument. Later
        // we replace that block-argument's uses with the same (implicitly captured)
        // token 'token', used for If op, and erase the argument.
        // Note that 'RewriteControlFlowOpRegion' sets the token, used for the first
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authentication/v1/types.go

    }
    
    // TokenReviewSpec is a description of the token authentication request.
    type TokenReviewSpec struct {
    	// Token is the opaque bearer token.
    	// +optional
    	Token string `json:"token,omitempty" protobuf:"bytes,1,opt,name=token"`
    	// Audiences is a list of the identifiers that the resource server presented
    	// with the token identifies as. Audience-aware token authenticators will
    	// verify that the token was intended for at least one of the audiences in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PluginsBlockInterpreterTest.kt

            assertDynamicInterpretationOf(
                """garbage""",
                "Expecting token of type RBRACE, but got IDENTIFIER ('garbage') instead"
            )
        }
    
        @Test
        fun `syntax error - starts with unexpected token`() {
            assertDynamicInterpretationOf(
                """.""",
                "Expecting token of type RBRACE, but got DOT instead"
            )
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:15:27 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  5. pkg/controller/serviceaccount/tokens_controller_test.go

    					metav1.NamespaceDefault, "token-secret-1",
    					*metav1.NewPreconditionDeleteOptions("23456")),
    			},
    		},
    		"added secret with serviceaccount": {
    			ExistingServiceAccount: serviceAccount(tokenSecretReferences()),
    
    			AddedSecret:     serviceAccountTokenSecret(),
    			ExpectedActions: []core.Action{},
    		},
    		"added token secret without token data": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    		}
    	}
    	in.token.text = text
    	in.token.endPos = in.pos
    }
    
    // peek returns the kind of the next token returned by lex.
    func (in *input) peek() tokenKind {
    	return in.token.kind
    }
    
    // lex is called from the parser to obtain the next input token.
    func (in *input) lex() token {
    	tok := in.token
    	in.readToken()
    	return tok
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    			}
    			scan.gobble(e)
    		}
    		end = scan.scan()
    	}
    	if len(scan.token) == 4 && isAlpha(scan.token[0]) {
    		t.ScriptID, e = getScriptID(script, scan.token)
    		if t.ScriptID == 0 {
    			scan.gobble(e)
    		}
    		end = scan.scan()
    	}
    	if n := len(scan.token); n >= 2 && n <= 3 {
    		t.RegionID, e = getRegionID(scan.token)
    		if t.RegionID == 0 {
    			scan.gobble(e)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-communication.mlir

    // function. The original public function will be modified to create a token,
    // while the function is cloned and rewritten with an extra token argument and
    // an extra token result. All callers to the original function are updated to
    // point to the cloned function and the function the caller is in is updated to
    // pass a token or create a token.
    
    // CHECK: func @main([[MAIN_ARG0:%.*]]: tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 08 18:24:20 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

                                            builder.functionLikeBuilder.buildConstructorSymbol(resolvedSymbol)
                                        },
                                        token = token
                                    ),
                                    token
                                )
                            } else null
                        }
    
                        is FirNamedFunctionSymbol -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. internal/jwt/parser.go

    	tokenBuf := base64BufPool.Get().(*[]byte)
    	defer base64BufPool.Put(tokenBuf)
    
    	token := *tokenBuf
    	// Copy token to buffer, truncate to length.
    	token = token[:copy(token[:base64BufferSize], tokenStr)]
    
    	signer, err := ParseUnverifiedStandardClaims(token, claims, *bufp)
    	if err != nil {
    		return err
    	}
    
    	i := bytes.LastIndexByte(token, '.')
    	if i < 0 {
    		return jwtgo.ErrSignatureInvalid
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 09 07:53:08 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top