Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 150 for Colon (0.11 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. fastapi/security/oauth2.py

            return data
        ```
    
        Note that for OAuth2 the scope `items:read` is a single scope in an opaque string.
        You could have custom internal logic to separate it by colon caracters (`:`) or
        similar, and get the two parts `items` and `read`. Many applications do that to
        group and organize permissions, you could do it as well in your application, just
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/completion.go

    }
    
    __kubeadm_compopt() {
    	true # don't do anything. Not supported by bashcompinit in zsh
    }
    
    __kubeadm_ltrim_colon_completions()
    {
    	if [[ "$1" == *:* && "$COMP_WORDBREAKS" == *:* ]]; then
    		# Remove colon-word prefix from COMPREPLY items
    		local colon_word=${1%${1##*:}}
    		local i=${#COMPREPLY[*]}
    		while [[ $((--i)) -ge 0 ]]; do
    			COMPREPLY[$i]=${COMPREPLY[$i]#"$colon_word"}
    		done
    	fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_server_journal_test.go

    		{name: "dot service", services: []string{service3}},
    		{name: "underscore service", services: []string{service4}},
    		{name: "at service", services: []string{service5}},
    		{name: "colon service", services: []string{service6}},
    		{name: "invalid service new line", services: []string{invalid1}, wantErr: true},
    		{name: "invalid service with dot", services: []string{invalid2}, wantErr: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 22:27:44 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top