Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 74 for _Colon (0.24 sec)

  1. src/cmd/go/internal/vcs/vcs_test.go

    var govcsErrors = []struct {
    	s   string
    	err string
    }{
    	{`,`, `empty entry in GOVCS`},
    	{`,x`, `empty entry in GOVCS`},
    	{`x,`, `malformed entry in GOVCS (missing colon): "x"`},
    	{`x:y,`, `empty entry in GOVCS`},
    	{`x`, `malformed entry in GOVCS (missing colon): "x"`},
    	{`x:`, `empty VCS list in GOVCS: "x:"`},
    	{`x:|`, `empty VCS name in GOVCS: "x:|"`},
    	{`x:y|`, `empty VCS name in GOVCS: "x:y|"`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 17K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

    import org.jetbrains.kotlin.lexer.KtSingleValueToken
    import org.jetbrains.kotlin.lexer.KtTokens.ARROW
    import org.jetbrains.kotlin.lexer.KtTokens.CLOSING_QUOTE
    import org.jetbrains.kotlin.lexer.KtTokens.COLON
    import org.jetbrains.kotlin.lexer.KtTokens.COMMA
    import org.jetbrains.kotlin.lexer.KtTokens.DOT
    import org.jetbrains.kotlin.lexer.KtTokens.EQ
    import org.jetbrains.kotlin.lexer.KtTokens.IDENTIFIER
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  3. src/cmd/cover/cover.go

    				for _, n := range n.List {
    					clause := n.(*ast.CaseClause)
    					f.addCounters(clause.Colon+1, clause.Colon+1, clause.End(), clause.Body, false)
    				}
    				return f
    			case *ast.CommClause: // select
    				for _, n := range n.List {
    					clause := n.(*ast.CommClause)
    					f.addCounters(clause.Colon+1, clause.Colon+1, clause.End(), clause.Body, false)
    				}
    				return f
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. src/net/netip/netip.go

    		s = s[off:]
    		if len(s) == 0 {
    			break
    		}
    
    		// Otherwise must be followed by colon and more.
    		if s[0] != ':' {
    			return Addr{}, parseAddrError{in: in, msg: "unexpected character, want colon", at: s}
    		} else if len(s) == 1 {
    			return Addr{}, parseAddrError{in: in, msg: "colon must be followed by more characters", at: s}
    		}
    		s = s[1:]
    
    		// Look for ellipsis.
    		if s[0] == ':' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  5. src/net/dial.go

    		return 300 * time.Millisecond
    	}
    }
    
    func parseNetwork(ctx context.Context, network string, needsProto bool) (afnet string, proto int, err error) {
    	i := bytealg.LastIndexByteString(network, ':')
    	if i < 0 { // no colon
    		switch network {
    		case "tcp", "tcp4", "tcp6":
    		case "udp", "udp4", "udp6":
    		case "ip", "ip4", "ip6":
    			if needsProto {
    				return "", 0, UnknownNetworkError(network)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. src/encoding/json/scanner.go

    // being scanned. If the parser is inside a nested value
    // the parseState describes the nested state, outermost at entry 0.
    const (
    	parseObjectKey   = iota // parsing object key (before colon)
    	parseObjectValue        // parsing object value (after colon)
    	parseArrayValue         // parsing array value
    )
    
    // This limits the max nesting depth to prevent stack overflow.
    // This is permitted by https://tools.ietf.org/html/rfc7159#section-9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. pkg/credentialprovider/config_test.go

    		{
    			input:    encodeDockerConfigFieldAuth("foo", "bar"),
    			username: "foo",
    			password: "bar",
    		},
    
    		// good base64 data, but no colon separating username & password
    		{
    			input: "cGFudHM=",
    			fail:  true,
    		},
    
    		// only new line characters are ignored
    		{
    			input: "Zm9vOmJhcg== ",
    			fail:  true,
    		},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. docs/en/docs/python-types.md

    #### List
    
    For example, let's define a variable to be a `list` of `str`.
    
    === "Python 3.9+"
    
        Declare the variable, with the same colon (`:`) syntax.
    
        As the type, put `list`.
    
        As the list is a type that contains some internal types, you put them in square brackets:
    
        ```Python hl_lines="1"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. hack/make-rules/test.sh

    # coverage mode.
    KUBE_COVERPROCS=${KUBE_COVERPROCS:-4}
    # use KUBE_RACE="" to disable the race detector
    # this is defaulted to "-race" in make test as well
    # NOTE: DO NOT ADD A COLON HERE. KUBE_RACE="" is meaningful!
    KUBE_RACE=${KUBE_RACE-"-race"}
    # Set to the goveralls binary path to report coverage results to Coveralls.io.
    KUBE_GOVERALLS_BIN=${KUBE_GOVERALLS_BIN:-}
    # once we have multiple group supports
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/common/schemas.go

    // with the provided minimum serialized size that can fit into a single request.
    func estimateMaxAdditionalPropertiesFromMinSize(minSize int64) int64 {
    	// 2 bytes for key + "" + colon + comma + smallest possible value, realistically the actual keys
    	// will all vary in length
    	keyValuePairSize := minSize + 6
    	// subtract 2 to account for { and }
    	return (maxRequestSizeBytes - 2) / keyValuePairSize
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 18:00:45 UTC 2023
    - 10.5K bytes
    - Viewed (0)
Back to top