Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for tuoksi (0.13 sec)

  1. src/encoding/xml/marshal_test.go

    	desc: "end element with no name",
    	toks: []Token{
    		EndElement{Name{"space", ""}},
    	},
    	err: "xml: end tag with no name",
    }, {
    	desc: "char data",
    	toks: []Token{
    		CharData("foo"),
    	},
    	want: `foo`,
    }, {
    	desc: "char data with escaped chars",
    	toks: []Token{
    		CharData(" \t\n"),
    	},
    	want: " 	\n",
    }, {
    	desc: "comment",
    	toks: []Token{
    		Comment("foo"),
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    	toks := *args
    	if len(toks) == 0 || toks[0] == "(" {
    		return VersionInterval{}, fmt.Errorf("expected '[' or version")
    	}
    	if toks[0] != "[" {
    		v, err := parseVersion(verb, path, &toks[0], fix)
    		if err != nil {
    			return VersionInterval{}, err
    		}
    		*args = toks[1:]
    		return VersionInterval{Low: v, High: v}, nil
    	}
    	toks = toks[1:]
    
    	if len(toks) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/BazelFileContentGenerator.groovy

    def _AsClassName(fname):
        fname = [x.path for x in fname.files.to_list()][0]
        toks = fname[:-5].split("/")
        findex = -1
        for s in _PREFIXES:
            findex = _SafeIndex(toks, s)
            if findex != -1:
                break
        if findex == -1:
            fail("%s does not contain any of %s" % (fname, _PREFIXES))
        return ".".join(toks[findex:]) + ".class"
    
    def _impl(ctx):
        classes = ",".join(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertTrue(tokL.isSupertypeOf(new TypeToken<List<?>>() {}));
    
        TypeToken<Second> tokS = new TypeToken<Second>() {};
        assertTrue(tokS.isSupertypeOf(new TypeToken<Second>() {}));
        assertTrue(tokS.isSupertypeOf(new TypeToken<Third>() {}));
        assertTrue(tokS.isSupertypeOf(new TypeToken<Third<String, Integer>>() {}));
    
        TypeToken<List[]> tokA = new TypeToken<List[]>() {};
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertTrue(tokL.isSupertypeOf(new TypeToken<List<?>>() {}));
    
        TypeToken<Second> tokS = new TypeToken<Second>() {};
        assertTrue(tokS.isSupertypeOf(new TypeToken<Second>() {}));
        assertTrue(tokS.isSupertypeOf(new TypeToken<Third>() {}));
        assertTrue(tokS.isSupertypeOf(new TypeToken<Third<String, Integer>>() {}));
    
        TypeToken<List[]> tokA = new TypeToken<List[]>() {};
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. src/encoding/xml/xml_test.go

    // license that can be found in the LICENSE file.
    
    package xml
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"reflect"
    	"strings"
    	"testing"
    	"unicode/utf8"
    )
    
    type toks struct {
    	earlyEOF bool
    	t        []Token
    }
    
    func (t *toks) Token() (Token, error) {
    	if len(t.t) == 0 {
    		return nil, io.EOF
    	}
    	var tok Token
    	tok, t.t = t.t[0], t.t[1:]
    	if t.earlyEOF && len(t.t) == 0 {
    		return tok, io.EOF
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. RELEASE.md

    Koock Yoon, kouml, ktaebum, Kyuwon Kim, Lakshay Tokas, Laurent Le Brun,
    leike666666, leonard951, Leslie-Fang, Letian Kang, Li, Guizi, Loo Rong Jie,
    Lucas Hendren, Lukas Folle, Lukas Geiger, Luke Han, luxupu, lvli, Ma, Guokai,
    Mahmoud Abuzaina, Maksym Kysylov, Mandar Deshpande, manhyuk, Manraj Singh
    Grover, Marco Gaido, Marek Drozdowski, Margaret Maynard-Reid, Mark Ryan, mars20,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top