Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 150 for Colon (0.05 sec)

  1. 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)
  2. 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)
  3. src/cmd/internal/testdir/testdir_test.go

    	rxAsmComment = regexp.MustCompile(`^\s*(.*?)\s*(?://\s*(.+)\s*)?$`)
    
    	// Regexp to extract an architecture check: architecture name (or triplet),
    	// followed by semi-colon, followed by a comma-separated list of opcode checks.
    	// Extraneous spaces are ignored.
    	//
    	// An example: arm64/v8.1 : -`ADD` , `SUB`
    	//	"(\w+)" matches "arm64" (architecture name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K 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. src/cmd/go/internal/modfetch/codehost/git.go

    					os.RemoveAll(r.dir)
    					return nil, err
    				}
    			}
    		}
    		r.remoteURL = r.remote
    		r.remote = "origin"
    	} else {
    		// Local path.
    		// Disallow colon (not in ://) because sometimes
    		// that's rcp-style host:path syntax and sometimes it's not (c:\work).
    		// The go command has always insisted on URL syntax for ssh.
    		if strings.Contains(remote, ":") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. src/go/scanner/scanner_test.go

    	{token.COMMA, ",", operator},
    	{token.PERIOD, ".", operator},
    
    	{token.RPAREN, ")", operator},
    	{token.RBRACK, "]", operator},
    	{token.RBRACE, "}", operator},
    	{token.SEMICOLON, ";", operator},
    	{token.COLON, ":", operator},
    	{token.TILDE, "~", operator},
    
    	// Keywords
    	{token.BREAK, "break", keyword},
    	{token.CASE, "case", keyword},
    	{token.CHAN, "chan", keyword},
    	{token.CONST, "const", keyword},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  7. src/encoding/xml/xml_test.go

    		}
    		tokens = tokens[1:]
    	}
    	if len(tokens) > 0 {
    		t.Fatalf("lost tokens: %#v", tokens)
    	}
    }
    
    func TestRoundTrip(t *testing.T) {
    	tests := map[string]string{
    		"trailing colon":         `<foo abc:="x"></foo>`,
    		"comments in directives": `<!ENTITY x<!<!-- c1 [ " -->--x --> > <e></e> <!DOCTYPE xxx [ x<!-- c2 " -->--x ]>`,
    	}
    	for name, input := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // The full name of a test Bar in test case Foo is defined as
      // "Foo.Bar".  Only the tests that match the filter will run.
      //
      // A filter is a colon-separated list of glob (not regex) patterns,
      // optionally followed by a '-' and a colon-separated list of
      // negative patterns (tests to exclude).  A test is run if it
      // matches one of the positive patterns and does not match any of
      // the negative patterns.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  9. src/net/http/client.go

    		}
    	}()
    
    	return stopTimer, timedOut.Load
    }
    
    // See 2 (end of page 4) https://www.ietf.org/rfc/rfc2617.txt
    // "To receive authorization, the client sends the userid and password,
    // separated by a single colon (":") character, within a base64
    // encoded string in the credentials."
    // It is not meant to be urlencoded.
    func basicAuth(username, password string) string {
    	auth := username + ":" + password
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  10. 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)
Back to top