Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,972 for tolen (0.04 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/KotlinGrammar.kt

        val annotationMarker = token(AT) * notWhiteSpace()
    
        val simpleIdentifier by debug {
            symbol()
        }
    
        val label by debug {
            simpleIdentifier * token(AT)
        }
    
        val comparisonOperator by debug {
            token(LT) + token(GT) + token(LTEQ) + token(GTEQ)
        }
    
        val equalityOperator by debug {
            token(EXCLEQ) + token(EXCLEQEQEQ) + token(EQEQ) + token(EQEQEQ)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. src/go/scanner/scanner.go

    			}
    		case '>':
    			tok = s.switch4(token.GTR, token.GEQ, '>', token.SHR, token.SHR_ASSIGN)
    		case '=':
    			tok = s.switch2(token.ASSIGN, token.EQL)
    		case '!':
    			tok = s.switch2(token.NOT, token.NEQ)
    		case '&':
    			if s.ch == '^' {
    				s.next()
    				tok = s.switch2(token.AND_NOT, token.AND_NOT_ASSIGN)
    			} else {
    				tok = s.switch3(token.AND, token.AND_ASSIGN, '&', token.LAND)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  3. pkg/ctrlz/assets/static/css/dark_syntax-1.14.0.css

    }
    
    .token.property,
    .token.class-name,
    .token.constant,
    .token.symbol {
        color: #f8c555;
    }
    
    .token.selector,
    .token.important,
    .token.atrule,
    .token.keyword,
    .token.builtin {
        color: #cc99cd;
    }
    
    .token.string,
    .token.char,
    .token.attr-value,
    .token.regex,
    .token.variable {
        color: #7ec699;
    }
    
    .token.operator,
    .token.entity,
    .token.url {
        color: #67cdcc;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javaapplication/multi/utilities/SplitUtils.java.template

                String token = source.substring(lastFind);
                if (currentFind != -1) {
                    token = token.substring(0, currentFind - lastFind);
                }
    
                addIfValid(token, result);
                lastFind = currentFind + 1;
            }
    
            String token = source.substring(lastFind);
            addIfValid(token, result);
    
            return result;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 980 bytes
    - Viewed (0)
  5. tests/test_tutorial/test_bigger_applications/test_main.py

        response = client.put(
            "/items/bar?token=jessica", headers={"X-Token": "fake-super-secret-token"}
        )
        assert response.status_code == 403, response.text
        assert response.json() == {"detail": "You can only update the item: plumbus"}
    
    
    def test_admin(client: TestClient):
        response = client.post(
            "/admin/?token=jessica", headers={"X-Token": "fake-super-secret-token"}
        )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/scalaapplication/multi/utilities/SplitUtils.scala.template

            while (currentFind != -1) {
                var token = source.substring(lastFind)
                if (currentFind != -1) {
                    token = token.substring(0, currentFind - lastFind)
                }
    
                addIfValid(token, result)
                lastFind = currentFind + 1
                currentFind = source.indexOf(" ", lastFind)
            }
    
            val token = source.substring(lastFind)
            addIfValid(token, result)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 982 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/templates/java-utilities-library/src/main/java/org/gradle/sample/utilities/SplitUtils.java

                String token = source.substring(lastFind);
                if (currentFind != -1) {
                    token = token.substring(0, currentFind - lastFind);
                }
    
                addIfValid(token, result);
                lastFind = currentFind + 1;
            }
    
            String token = source.substring(lastFind);
            addIfValid(token, result);
    
            return result;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 952 bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/token_test.go

    			outputFormat: "jsonpath={.token} {.groups}",
    			expected:     "abcdef.1234567890123456 [\"system:bootstrappers:kubeadm:default-node-token\"]",
    		},
    	}
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			token := outputapiv1alpha3.BootstrapToken{
    				BootstrapToken: bootstraptokenv1.BootstrapToken{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authenticator/token/bootstrap/bootstrap_test.go

    					},
    					Type: "bootstrap.kubernetes.io/token",
    				},
    			},
    			// Token ID must be 6 characters.
    			token:        "foo" + "." + tokenSecret,
    			wantNotFound: true,
    		},
    	}
    
    	for _, test := range tests {
    		func() {
    			a := NewTokenAuthenticator(&lister{test.secrets})
    			resp, found, err := a.AuthenticateToken(context.Background(), test.token)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 04 18:36:05 UTC 2020
    - 8.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/bootstraptoken/v1/utils_test.go

    				"token-secret": []byte("abcdef0123456789"),
    			},
    			nil,
    			true,
    		},
    		{
    			"invalid secret naming",
    			"foo",
    			map[string][]byte{
    				"token-id":     []byte("abcdef"),
    				"token-secret": []byte("abcdef0123456789"),
    			},
    			nil,
    			true,
    		},
    		{
    			"invalid token secret",
    			"bootstrap-token-abcdef",
    			map[string][]byte{
    				"token-id":     []byte("abcdef"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 21.2K bytes
    - Viewed (0)
Back to top