Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for _Colon (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top