Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for tuoksi (0.15 sec)

  1. 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)
  2. src/time/zoneinfo_abbrs_windows.go

    	"Central Brazilian Standard Time": {"-04", "-04"},     // America/Cuiaba
    	"Mountain Standard Time":          {"MST", "MDT"},     // America/Denver
    	"Greenland Standard Time":         {"-03", "-02"},     // America/Godthab
    	"Turks And Caicos Standard Time":  {"EST", "EDT"},     // America/Grand_Turk
    	"Central America Standard Time":   {"CST", "CST"},     // America/Guatemala
    	"Atlantic Standard Time":          {"AST", "ADT"},     // America/Halifax
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 20:01:59 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. 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)
  4. src/go/scanner/scanner.go

    		s.next()
    	}
    }
    
    // Helper functions for scanning multi-byte tokens such as >> += >>= .
    // Different routines recognize different length tok_i based on matches
    // of ch_i. If a token ends in '=', the result is tok1 or tok3
    // respectively. Otherwise, the result is tok0 if there was no other
    // matching character, or tok2 if the matching character was ch2.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  5. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    tochio.niigata.jp toda.saitama.jp today toei.aichi.jp toga.toyama.jp togakushi.nagano.jp togane.chiba.jp togitsu.nagasaki.jp togliatti.su togo.aichi.jp togura.nagano.jp tohma.hokkaido.jp tohnosho.chiba.jp toho.fukuoka.jp tokai.aichi.jp tokai.ibaraki.jp tokamachi.niigata.jp tokashiki.okinawa.jp toki.gifu.jp tokigawa.saitama.jp tokke.no tokoname.aichi.jp tokorozawa.saitama.jp tokushima.jp tokushima.tokushima.jp tokuyama.yamaguchi.jp tokyo tokyo.jp tolga.no tomakomai.hokkaido.jp tomari.hokkaido.jp tome.miyagi.jp...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top