Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,750 for tokEnd (0.13 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/tf_xla_passes.td

          }
        ```
    
        This might be legalized like this:
    
        ```mlir
          func @send_to_host(%arg0: tensor<i32>) {
            %0 = "mhlo.create_token"() : () -> !mhlo.token
            %1 = "mhlo.send"(%arg0, %0) {...}} : (tensor<i32>, !mhlo.token) -> !mhlo.token
            return
          }
        '''
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 05:56:39 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/request/websocket/protocol.go

    var errInvalidToken = errors.New("invalid bearer token")
    
    // ProtocolAuthenticator allows a websocket connection to provide a bearer token as a subprotocol
    // in the format "base64url.bearer.authorization.<base64url-without-padding(bearer-token)>"
    type ProtocolAuthenticator struct {
    	// auth is the token authenticator to use to validate the token
    	auth authenticator.Token
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authentication/authenticatorfactory/loopback.go

    	"k8s.io/apiserver/pkg/authentication/token/tokenfile"
    	"k8s.io/apiserver/pkg/authentication/user"
    )
    
    // NewFromTokens returns an authenticator.Request or an error
    func NewFromTokens(tokens map[string]*user.DefaultInfo, audiences authenticator.Audiences) authenticator.Request {
    	return bearertoken.New(authenticator.WrapAudienceAgnosticToken(audiences, tokenfile.New(tokens)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 19 16:54:11 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  4. security/pkg/server/ca/authenticate/oidc.go

    	// still override
    	Aud []string `json:"aud"`
    
    	// Exp is not currently used - we don't use the token for authn, just to determine k8s settings
    	Exp int `json:"exp"`
    
    	// Issuer - configured by K8S admin for projected tokens. Will be used to verify all tokens.
    	Iss string `json:"iss"`
    
    	Sub string `json:"sub"`
    }
    
    func (j JwtAuthenticator) AuthenticatorType() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. releasenotes/notes/24905.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 24905
    
    releaseNotes:
    - |
      **Added** `istioctl experimental version` and `proxy-status` now use token security.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 31 17:27:25 UTC 2020
    - 257 bytes
    - Viewed (0)
  6. security/pkg/credentialfetcher/fetcher_test.go

    				}
    				if tc.fetcherType == security.Mock {
    					token, err := cf.GetPlatformCredential()
    					if err != nil {
    						t.Errorf("%s: unexpected error calling GetPlatformCredential: %v", id, err)
    					}
    					if token != tc.expectedToken {
    						t.Errorf("%s: GetPlatformCredential returned %s, expected %s", id, token, tc.expectedToken)
    					}
    				}
    			}
    		})
    	}
    	// Restore token refresh for other tests.
    	plugin.SetTokenRotation(true)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 03 20:21:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    // tokenNode is a dummy implementation of ast.Node for a single token.
    // They are used transiently by PathEnclosingInterval but never escape
    // this package.
    type tokenNode struct {
    	pos token.Pos
    	end token.Pos
    }
    
    func (n tokenNode) Pos() token.Pos {
    	return n.pos
    }
    
    func (n tokenNode) End() token.Pos {
    	return n.end
    }
    
    func tok(pos token.Pos, len int) ast.Node {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator.go

    	remove(key string)
    }
    
    // New returns a token authenticator that caches the results of the specified authenticator. A ttl of 0 bypasses the cache.
    func New(authenticator authenticator.Token, cacheErrs bool, successTTL, failureTTL time.Duration) authenticator.Token {
    	return newWithClock(authenticator, cacheErrs, successTTL, failureTTL, clock.RealClock{})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. pkg/controller/serviceaccount/config/types.go

    	// used to sign service account tokens.
    	ServiceAccountKeyFile string
    	// concurrentSATokenSyncs is the number of service account token syncing operations
    	// that will be done concurrently.
    	ConcurrentSATokenSyncs int32
    	// rootCAFile is the root certificate authority will be included in service
    	// account's token secret. This must be a valid PEM-encoded CA bundle.
    	RootCAFile string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 23:20:17 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/benchmark_main.template

    // generated by tfcompile.  All tokens of the form `{{TFCOMPILE_*}}` must be
    // rewritten to real values before this file can be compiled.
    //
    //    TFCOMPILE_HEADER    : Path to the header file generated by tfcompile.
    //    TFCOMPILE_CPP_CLASS : Name of the C++ class generated by tfcompile.
    //
    // The tf_library bazel macro in tfcompile.bzl performs the token rewriting, and
    // generates a cc_binary rule for you.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 20:05:05 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top