Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for Colon (0.06 sec)

  1. src/testing/testing.go

    	// under the management of go test.
    	if runtime.GOOS == "windows" && len(path) >= 2 {
    		letter, colon := path[0], path[1]
    		if ('a' <= letter && letter <= 'z' || 'A' <= letter && letter <= 'Z') && colon == ':' {
    			// If path starts with a drive letter we're stuck with it regardless.
    			return path
    		}
    	}
    	if os.IsPathSeparator(path[0]) {
    		return path
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. pkg/volume/util/util.go

    func MakeAbsolutePath(goos, path string) string {
    	if goos != "windows" {
    		return filepath.Clean("/" + path)
    	}
    	// These are all for windows
    	// If there is a colon, give up.
    	if strings.Contains(path, ":") {
    		return path
    	}
    	// If there is a slash, but no drive, add 'c:'
    	if strings.HasPrefix(path, "/") || strings.HasPrefix(path, "\\") {
    		return "c:" + path
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser.go

    		p.next()
    		c.Cases = p.exprList()
    
    	case _Default:
    		p.next()
    
    	default:
    		p.syntaxError("expected case or default or }")
    		p.advance(_Colon, _Case, _Default, _Rbrace)
    	}
    
    	c.Colon = p.pos()
    	p.want(_Colon)
    	c.Body = p.stmtList()
    
    	return c
    }
    
    func (p *parser) commClause() *CommClause {
    	if trace {
    		defer p.trace("commClause")()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/stmt.go

    			// has the type of the expression in the TypeSwitchGuard."
    			if len(cases) != 1 || T == nil {
    				T = x.typ
    			}
    			obj := NewVar(lhs.Pos(), check.pkg, lhs.Value, T)
    			// TODO(mdempsky): Just use clause.Colon? Why did I even suggest
    			// "at the end of the TypeSwitchCase" in go.dev/issue/16794 instead?
    			scopePos := clause.Pos() // for default clause (len(List) == 0)
    			if n := len(cases); n > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. hack/local-up-cluster.sh

        warning_log "etcd terminated unexpectedly"
        ETCD_PID=
      fi
    }
    
    function print_color {
      message=$1
      prefix=${2:+$2: } # add colon only if defined
      color=${3:-1}     # default is red
      echo -n "$(tput bold)$(tput setaf "${color}")"
      echo "${prefix}${message}"
      echo -n "$(tput sgr0)"
    }
    
    function warning_log {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/reflect/type.go

    // optionally space-separated key:"value" pairs.
    // Each key is a non-empty string consisting of non-control
    // characters other than space (U+0020 ' '), quote (U+0022 '"'),
    // and colon (U+003A ':').  Each value is quoted using U+0022 '"'
    // characters and Go string literal syntax.
    type StructTag string
    
    // Get returns the value associated with key in the tag string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    k(){let e=this.current.source.start;throw this.input.error("Unclosed block",e.line,e.column)}doubleColon(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}unnamedAtrule(e,t){throw this.input.error("At-rule without name",{offset:t[2]},{offset:t[2]+t[1].length})}precheckMissedSemicolon(){}checkMissedSemicolon(e){let t=this.colon(e);if(t===!1)return;let r=0,n;for(let a=t-1;a>=0&&(n=e[a],!(n[0]!=="space"&&(r+=1,r===2)));a--);throw this.input.error("Missed semicolon",n...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  8. src/net/http/request.go

    //
    // With HTTP Basic Authentication the provided username and password
    // are not encrypted. It should generally only be used in an HTTPS
    // request.
    //
    // The username may not contain a colon. Some protocols may impose
    // additional requirements on pre-escaping the username and
    // password. For instance, when used with OAuth2, both arguments must
    // be URL encoded first with [url.QueryEscape].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/go/build/build.go

    		}
    
    		// #cgo (nocallback|noescape) <function name>
    		if fields := strings.Fields(line); len(fields) == 3 && (fields[1] == "nocallback" || fields[1] == "noescape") {
    			continue
    		}
    
    		// Split at colon.
    		line, argstr, ok := strings.Cut(strings.TrimSpace(line[4:]), ":")
    		if !ok {
    			return fmt.Errorf("%s: invalid #cgo line: %s", filename, orig)
    		}
    
    		// Parse GOOS/GOARCH stuff.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //		Whether the linker should use external linking mode
    //		when using -linkmode=auto with code that uses cgo.
    //		Set to 0 to disable external linking mode, 1 to enable it.
    //	GIT_ALLOW_PROTOCOL
    //		Defined by Git. A colon-separated list of schemes that are allowed
    //		to be used with git fetch/clone. If set, any scheme not explicitly
    //		mentioned will be considered insecure by 'go get'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top