Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 71 for Colon (0.04 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

     * of Android's private InetAddress#isNumeric API.
     *
     * This matches IPv6 addresses as a hex string containing at least one colon, and possibly
     * including dots after the first colon. It matches IPv4 addresses as strings containing only
     * decimal digits and dots. This pattern matches strings like "a:.23" and "54" that are neither IP
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. src/net/netip/fuzz_test.go

    	// IPv6 with invalid embedded IPv4.
    	"::ffff:192.168.140.bad",
    	// IPv6 with multiple ellipsis ::.
    	"fe80::1::1",
    	// IPv6 with invalid non hex/colon character.
    	"fe80:1?:1",
    	// IPv6 with truncated bytes after single colon.
    	"fe80:",
    	// AddrPort strings.
    	"1.2.3.4:51820",
    	"[fd7a:115c:a1e0:ab12:4843:cd96:626b:430b]:80",
    	"[::ffff:c000:0280]:65535",
    	"[::ffff:c000:0280%eth0]:1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 20 23:46:23 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Headers.kt

                // broken SPDY versions of the response cache).
                addLenient("", line.substring(1)) // Empty header name.
              }
              else -> {
                // No header name.
                addLenient("", line)
              }
            }
          }
    
        /** Add an header line containing a field name, a literal colon, and a value. */
        fun add(line: String) =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	colon := strings.Index(arg, ":")
    	if colon < 0 {
    		return "", arg
    	}
    	openparen := strings.Index(arg, "(")
    	if openparen < 0 {
    		log.Fatalf("splitNameExpr(%q): colon but no open parens", arg)
    	}
    	if colon > openparen {
    		// colon is inside the parens, such as in "(Foo x:(Bar))".
    		return "", arg
    	}
    	return arg[:colon], arg[colon+1:]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  6. src/fmt/scan_test.go

    	if n != 1 || err != nil {
    		t.Errorf("colon: got count, err = %d, %v; expected 1, nil", n, err)
    	}
    	check("colon", a)
    	a = nil
    
    	n, err = Sscanf("00010203:00010203", "%x:%x", &a, &b)
    	if n != 2 || err != nil {
    		t.Errorf("colon pair: got count, err = %d, %v; expected 2, nil", n, err)
    	}
    	check("colon pair a", a)
    	check("colon pair b", b)
    	a = nil
    	b = nil
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top