Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for Colon (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. mockwebserver/src/main/kotlin/mockwebserver3/MockResponse.kt

        fun clearHeaders() =
          apply {
            headers = Headers.Builder()
          }
    
        /**
         * Adds [header] as an HTTP header. For well-formed HTTP [header] should contain a name followed
         * by a colon and a value.
         */
        fun addHeader(header: String) =
          apply {
            headers.add(header)
          }
    
        /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/link.go

    )
    
    func parseLinkRefDef(p buildState, s string) (int, bool) {
    	// “A link reference definition consists of a link label,
    	// optionally preceded by up to three spaces of indentation,
    	// followed by a colon (:),
    	// optional spaces or tabs (including up to one line ending),
    	// a link destination,
    	// optional spaces or tabs (including up to one line ending),
    	// and an optional link title,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

                // TODO (donat) verify reported problem details
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/24169")
        def "notation without colon does not suggest using .module"() {
            tomlFile << """[libraries]
    my-lib = "org.gradle.test"
    """
    
            when:
            fails ':help'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. src/time/example_test.go

    	fmt.Println("Same, in UTC:", t.UTC().Format(time.UnixDate))
    
    	fmt.Println("in Shanghai with seconds:", t.In(tz).Format("2006-01-02T15:04:05 -070000"))
    
    	fmt.Println("in Shanghai with colon seconds:", t.In(tz).Format("2006-01-02T15:04:05 -07:00:00"))
    
    	// The rest of this function demonstrates the properties of the
    	// layout string used in the format.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/codehost.go

    	// that one checkout is never nested inside another. That nesting has
    	// led to security problems in the past.
    	if strings.Contains(typ, ":") {
    		return "", "", fmt.Errorf("codehost.WorkDir: type cannot contain colon")
    	}
    	key := typ + ":" + name
    	dir = filepath.Join(cfg.GOMODCACHE, "cache/vcs", fmt.Sprintf("%x", sha256.Sum256([]byte(key))))
    
    	xLog, buildX := cfg.BuildXWriter(ctx)
    	if buildX {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&CircleTimes;":                     "\u2297",
    	"&ClockwiseContourIntegral;":        "\u2232",
    	"&CloseCurlyDoubleQuote;":           "\u201d",
    	"&CloseCurlyQuote;":                 "\u2019",
    	"&Colon;":                           "\u2237",
    	"&Colone;":                          "\u2a74",
    	"&Congruent;":                       "\u2261",
    	"&Conint;":                          "\u222f",
    	"&ContourIntegral;":                 "\u222e",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  10. 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)
Back to top