Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for Colon (0.04 sec)

  1. src/cmd/compile/internal/syntax/parser_test.go

    		{"//line\n", valid, filename, 2, 1},        // missing colon
    		{"//line foo\n", valid, filename, 2, 1},    // missing colon
    		{"  //line foo:\n", valid, filename, 2, 1}, // not a line start
    		{"//  line foo:\n", valid, filename, 2, 1}, // space between // and line
    
    		// invalid //line directives with one colon
    		{"//line :\n", "invalid line number: ", filename, 1, 9},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 16:30:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/go/ast/ast.go

    		return true
    	}
    
    	// "//[a-z0-9]+:[a-z0-9]"
    	// (The // has been removed.)
    	colon := strings.Index(c, ":")
    	if colon <= 0 || colon+1 >= len(c) {
    		return false
    	}
    	for i := 0; i <= colon+1; i++ {
    		if i == colon {
    			continue
    		}
    		b := c[i]
    		if !('a' <= b && b <= 'z' || '0' <= b && b <= '9') {
    			return false
    		}
    	}
    	return true
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/parse.go

    		}
    		if len(items) > 0 {
    			operands = append(operands, items)
    			if colon >= 0 && len(operands) == colon+2 {
    				// AX:DX becomes DX, AX.
    				operands[colon], operands[colon+1] = operands[colon+1], operands[colon]
    				colon = -1
    			}
    		} else if len(operands) > 0 || tok == ',' || colon >= 0 {
    			// Had a separator with nothing after.
    			p.errorf("missing operand")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. src/net/url/url.go

    func splitHostPort(hostPort string) (host, port string) {
    	host = hostPort
    
    	colon := strings.LastIndexByte(host, ':')
    	if colon != -1 && validOptionalPort(host[colon:]) {
    		host, port = host[:colon], host[colon+1:]
    	}
    
    	if strings.HasPrefix(host, "[") && strings.HasSuffix(host, "]") {
    		host = host[1 : len(host)-1]
    	}
    
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  5. src/net/textproto/reader.go

    	}
    
    	for {
    		kv, err := r.readContinuedLineSlice(maxMemory, mustHaveFieldNameColon)
    		if len(kv) == 0 {
    			return m, err
    		}
    
    		// Key ends at first colon.
    		k, v, ok := bytes.Cut(kv, colon)
    		if !ok {
    			return m, ProtocolError("malformed MIME header line: " + string(kv))
    		}
    		key, ok := canonicalMIMEHeaderKey(k)
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. src/net/textproto/reader_test.go

    func TestReadMIMEHeaderMalformed(t *testing.T) {
    	inputs := []string{
    		"No colon first line\r\nFoo: foo\r\n\r\n",
    		" No colon first line with leading space\r\nFoo: foo\r\n\r\n",
    		"\tNo colon first line with leading tab\r\nFoo: foo\r\n\r\n",
    		" First: line with leading space\r\nFoo: foo\r\n\r\n",
    		"\tFirst: line with leading tab\r\nFoo: foo\r\n\r\n",
    		"Foo: foo\r\nNo colon second line\r\n\r\n",
    		"Foo-\n\tBar: foo\r\n\r\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

        private enum State {
            CollectValue, TraverseChildren, Done
        }
    
        private enum Separator {
            NewLine(true, TextUtil.getPlatformLineSeparator()),
            Empty(false, " "),
            Colon(false, ": "),
            ColonNewLine(true, ":" + TextUtil.getPlatformLineSeparator());
    
            Separator(boolean newLine, String text) {
                this.newLine = newLine;
                this.text = text;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    [[sec:project_path]]
    == Multi-Project path
    
    A project path has the following pattern: it starts with an optional colon, which denotes the root project.
    
    The root project, `:`, is the only project in a path not specified by its name.
    
    The rest of a project path is a colon-separated sequence of project names, where the next project is a subproject of the previous project:
    
    [source]
    ----
    :sub-project-1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top