Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 150 for Colon (0.04 sec)

  1. src/encoding/json/stream_test.go

    		}},
    		{CaseName: Name(""), json: `{ "` + strings.Repeat("a", 513) + `" 1 }`, expTokens: []any{
    			Delim('{'), strings.Repeat("a", 513),
    			decodeThis{&SyntaxError{"expected colon after object key", 518}},
    		}},
    		{CaseName: Name(""), json: `{ "\a" }`, expTokens: []any{
    			Delim('{'),
    			&SyntaxError{"invalid character 'a' in string escape code", 3},
    		}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/entity.go

    	"⊗":                     "\u2297",
    	"∲":        "\u2232",
    	"”":           "\u201d",
    	"’":                 "\u2019",
    	"∷":                           "\u2237",
    	"⩴":                          "\u2a74",
    	"≡":                       "\u2261",
    	"∯":                          "\u222f",
    	"∮":                 "\u222e",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  3. src/log/log.go

    // With the exception of the Lmsgprefix flag, there is no
    // control over the order they appear (the order listed here)
    // or the format they present (as described in the comments).
    // The prefix is followed by a colon only when Llongfile or Lshortfile
    // is specified.
    // For example, flags Ldate | Ltime (or LstdFlags) produce,
    //
    //	2009/01/23 01:23:23 message
    //
    // while flags Ldate | Ltime | Lmicroseconds | Llongfile produce,
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    	// Sensitive means that this header field should never be
    	// indexed.
    	Sensitive bool
    }
    
    // IsPseudo reports whether the header field is an http2 pseudo header.
    // That is, it reports whether it starts with a colon.
    // It is not otherwise guaranteed to be a valid pseudo header field,
    // though.
    func (hf HeaderField) IsPseudo() bool {
    	return len(hf.Name) != 0 && hf.Name[0] == ':'
    }
    
    func (hf HeaderField) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  5. src/html/entity.go

    		"CircleTimes;":                     '\U00002297',
    		"ClockwiseContourIntegral;":        '\U00002232',
    		"CloseCurlyDoubleQuote;":           '\U0000201D',
    		"CloseCurlyQuote;":                 '\U00002019',
    		"Colon;":                           '\U00002237',
    		"Colone;":                          '\U00002A74',
    		"Congruent;":                       '\U00002261',
    		"Conint;":                          '\U0000222F',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/mvs/mvs_test.go

    		line = strings.TrimSpace(line)
    		if strings.HasPrefix(line, "#") || line == "" {
    			continue
    		}
    		i := strings.Index(line, ":")
    		if i < 0 {
    			t.Fatalf("missing colon: %q", line)
    		}
    		key := strings.TrimSpace(line[:i])
    		val := strings.TrimSpace(line[i+1:])
    		if key == "" {
    			t.Fatalf("missing key: %q", line)
    		}
    		kf := strings.Fields(key)
    		switch kf[0] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. src/go/printer/testdata/declarations.input

    	testDir = flag.String("testdir", "", "Go root subdirectory - for testing only (faster startups)")
    	pkgPath = flag.String("path", "", "additional package directories (colon-separated)")
    	filter = flag.String("filter", "", "filter file containing permitted package directory paths")
    	filterMin = flag.Int("filter_minutes", 0, "filter file update interval in minutes; disabled if <= 0")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  8. src/go/printer/testdata/declarations.golden

    	testDir		= flag.String("testdir", "", "Go root subdirectory - for testing only (faster startups)")
    	pkgPath		= flag.String("path", "", "additional package directories (colon-separated)")
    	filter		= flag.String("filter", "", "filter file containing permitted package directory paths")
    	filterMin	= flag.Int("filter_minutes", 0, "filter file update interval in minutes; disabled if <= 0")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  9. src/net/url/url_test.go

    		{"http://[::1]/", false},
    		{"http://[::1]a", true},
    		{"http://[::1]%23", true},
    		{"http://[::1%25en0]", false},    // valid zone id
    		{"http://[::1]:", false},         // colon, but no port OK
    		{"http://x:", false},             // colon, but no port OK
    		{"http://[::1]:%38%30", true},    // not allowed: % encoding only for non-ASCII
    		{"http://[::1%25%41]", false},    // RFC 6874 allows over-escaping in zone
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. src/text/template/parse/lex.go

    	itemComplex                      // complex constant (1+2i); imaginary is just a number
    	itemAssign                       // equals ('=') introducing an assignment
    	itemDeclare                      // colon-equals (':=') introducing a declaration
    	itemEOF
    	itemField      // alphanumeric identifier starting with '.'
    	itemIdentifier // alphanumeric identifier not starting with '.'
    	itemLeftDelim  // left action delimiter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
Back to top