Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 575 for toTokens (6.56 sec)

  1. platforms/software/antlr/src/integTest/groovy/org/gradle/api/plugins/antlr/Antlr4PluginIntegrationTest.groovy

            assert file("grammar-builder/build/generated-src/antlr/main/${grammarName}BaseListener.java").exists()
            assert file("grammar-builder/build/generated-src/antlr/main/${grammarName}Lexer.java").exists()
            assert file("grammar-builder/build/generated-src/antlr/main/${grammarName}Lexer.tokens").exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolver.java

             */
            void visitIdentifier(Expression value);
    
            /**
             * Called when an expression resolves to zero or more tokens.
             */
            void visitTokens(Expression tokens);
    
            /**
             * Called when an expression could not be resolved to a value.
             */
            void visitUnresolved();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  3. src/compress/flate/huffman_bit_writer_test.go

    			t.Error(err)
    		}
    		return
    	}
    	t.Log("Reset ok")
    	testWriterEOF(t, "huff", huffTest{input: in}, true)
    }
    
    type huffTest struct {
    	tokens      []token
    	input       string // File name of input data matching the tokens.
    	want        string // File name of data with the expected output with input available.
    	wantNoInput string // File name of the expected output when no input is available.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 40.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    	}
    	for _, v := range testcases {
    		var tokens []Token
    		l := &Lexer{s: v.s, pos: 0}
    		for {
    			token, _ := l.Lex()
    			if token == EndOfStringToken {
    				break
    			}
    			tokens = append(tokens, token)
    		}
    		if len(tokens) != len(v.t) {
    			t.Errorf("Bad number of tokens for '%s %d, %d", v.s, len(tokens), len(v.t))
    		}
    		for i := 0; i < min(len(tokens), len(v.t)); i++ {
    			if tokens[i] != v.t[i] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/ErrorParsingTest.kt

                    )
                )
                ErroneousStatement (
                    ParsingError(
                        message = Unexpected tokens (use ';' to separate expressions on the same line),
                        potentialElementSource = indexes: 26..27, line/column: 3/7..3/8, file: test,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 09:41:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. internal/s3select/csv/args.go

    	args.QuoteCharacter = defaultQuoteCharacter
    	args.QuoteEscapeCharacter = defaultQuoteEscapeCharacter
    	args.CommentCharacter = defaultCommentCharacter
    	args.AllowQuotedRecordDelimiter = false
    
    	for {
    		// Read tokens from the XML document in a stream.
    		t, err := d.Token()
    		if err != nil {
    			if err == io.EOF {
    				break
    			}
    			return err
    		}
    
    		if se, ok := t.(xml.StartElement); ok {
    			tagName := se.Name.Local
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. security/pkg/util/jwtutil.go

    	if err = json.Unmarshal(data, &listAud); err == nil {
    		return listAud, nil
    	}
    
    	return nil, err
    }
    
    type jwtPayload struct {
    	// Aud is JWT token audience - used to identify 3p tokens.
    	// It is empty for the default K8S tokens.
    	Aud []string `json:"aud"`
    }
    
    // ExtractJwtAud extracts the audiences from a JWT token. If aud cannot be parse, the bool will be set
    // to false. This distinguishes aud=[] from not parsed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. cmd/sts-datatypes.go

    	// which means the policy exceeded the allowed space.
    	PackedPolicySize int `xml:",omitempty"`
    
    	// The issuing authority of the web identity token presented. For OpenID Connect
    	// ID tokens, this contains the value of the iss field. For OAuth 2.0 id_tokens,
    	// this contains the value of the ProviderId parameter that was passed in the
    	// AssumeRoleWithWebIdentity request.
    	Provider string `xml:",omitempty"`
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocLexer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package gradlebuild.docs.dsl.docbook;
    
    public interface JavadocLexer {
        /**
         * Visits the tokens in the input stream for this lexer. Reads to the end of the input.
         */
        void visit(TokenVisitor visitor);
    
        class TokenVisitor {
            void onStartHtmlElement(String name) {
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

    // there is only one token in `tokens`, the only token is returned. If `tokens`
    // is empty, `original_token` is returned instead.
    Value CreateSinkToken(OpBuilder& builder, Location loc, ArrayRef<Value> tokens,
                          Value original_token) {
      if (tokens.empty()) {
        return original_token;
      } else if (llvm::hasSingleElement(tokens)) {
        return tokens[0];
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
Back to top