Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 231 for tolen (1.05 sec)

  1. pkg/controller/serviceaccount/tokens_controller.go

    	if err != nil {
    		// don't retry on cache lookup errors
    		return false, err
    	}
    	retry := false
    	errs := []error{}
    	for _, token := range tokens {
    		r, err := e.deleteToken(token.Namespace, token.Name, token.UID)
    		if err != nil {
    			errs = append(errs, err)
    		}
    		if r {
    			retry = true
    		}
    	}
    	return retry, utilerrors.NewAggregate(errs)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  2. cmd/bucket-listobjects-handlers.go

    		return token, -1
    	}
    	i := strings.Index(token, getKeySeparator())
    	if i < 0 {
    		return token, -1
    	}
    	nodeIndex, err := strconv.Atoi(token[i+1:])
    	if err != nil {
    		return token, -1
    	}
    	subToken = token[:i]
    	return subToken, nodeIndex
    }
    
    func proxyRequestByToken(ctx context.Context, w http.ResponseWriter, r *http.Request, token string) (string, bool) {
    	subToken, nodeIndex := parseRequestToken(token)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. security/pkg/nodeagent/caclient/providers/citadel/client_test.go

    			expectedCert: fakeCert,
    			expectedErr:  "",
    			token:        validToken,
    		},
    		"Empty Token": {
    			server:       mockTokenCAServer{Certs: nil},
    			expectedCert: nil,
    			expectedErr:  "rpc error: code = Unknown desc = no HTTP authorization header exists",
    			token:        "",
    		},
    		"InValid Token": {
    			server:       mockTokenCAServer{Certs: []string{}},
    			expectedCert: nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 21:03:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

    ) : KaFunctionCall<KaFunctionLikeSymbol>(argumentMapping) {
        private val backingPartiallyAppliedSymbol: KaPartiallyAppliedFunctionSymbol<KaFunctionLikeSymbol> = partiallyAppliedSymbol
    
        override val token: KaLifetimeToken get() = backingPartiallyAppliedSymbol.token
    
        /**
         * The function and receivers for this call.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/start.go

    		StartTime: asof,
    	}); err != nil {
    		log.Printf("upload failed: %v", err)
    	}
    }
    
    // acquireUploadToken acquires a token permitting the caller to upload.
    // To limit the frequency of uploads, only one token is issue per
    // machine per time period.
    // The boolean indicates whether the token was acquired.
    func acquireUploadToken() bool {
    	if telemetry.Default.LocalDir() == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/prepare_tpu_computation_for_tf_export.cc

      for (Region* region : regions_with_token) {
        // Initialize the token with the special argument token. This gets mapped to
        // input token in the parent op or a new token for the entry computation.
        auto token = StringAttr::get(ctx, tensorflow::kXlaTokenArgNodeName);
        for (Operation& op : region->getOps()) {
          // Only communication related ops that needs to have token should have the
          // extra attribute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. src/go/types/scope.go

    // for Universe and package scopes.
    func (s *Scope) Pos() token.Pos { return s.pos }
    func (s *Scope) End() token.Pos { return s.end }
    
    // Contains reports whether pos is within the scope's extent.
    // The result is guaranteed to be valid only if the type-checked
    // AST has complete position information.
    func (s *Scope) Contains(pos token.Pos) bool {
    	return cmpPos(s.pos, pos) <= 0 && cmpPos(pos, s.end) < 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/go/types/stmt.go

    }
    
    func (check *Checker) closeScope() {
    	check.scope = check.scope.Parent()
    }
    
    func assignOp(op token.Token) token.Token {
    	// token_test.go verifies the token ordering this function relies on
    	if token.ADD_ASSIGN <= op && op <= token.AND_NOT_ASSIGN {
    		return op + (token.ADD - token.ADD_ASSIGN)
    	}
    	return token.ILLEGAL
    }
    
    func (check *Checker) suspendedCall(keyword string, call *ast.CallExpr) {
    	var x operand
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. src/go/printer/printer_test.go

    // valid syntax e.g "var ()" instead of just "var", which is invalid and cannot
    // be parsed.
    func TestEmptyDecl(t *testing.T) { // issue 63566
    	for _, tok := range []token.Token{token.IMPORT, token.CONST, token.TYPE, token.VAR} {
    		var buf bytes.Buffer
    		Fprint(&buf, token.NewFileSet(), &ast.GenDecl{Tok: tok})
    		got := buf.String()
    		want := tok.String() + " ()"
    		if got != want {
    			t.Errorf("got %q, want %q", got, want)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

                        index = null,
                        constructorSymbol = null,
                        token = token
                    ),
                    token
                )
            }
            else -> {
                KaConstantAnnotationValue(toKtConstantValue(), token)
            }
        }
    }
    
    private class ClassLiteralResolutionResult(val type: KaType, val classId: ClassId)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top