Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 64 for Rbrace (0.1 sec)

  1. src/go/printer/testdata/comments.input

    		i=0;// comment after semicolon
    		i<9;/* comment after semicolon */
    		i++{// comment after opening curly brace
    	}
    
    	// TODO(gri) the last comment in this example should be aligned */
    	for
    		i=0;// comment after semicolon
    		i<9/* comment before semicolon - ok to move after semicolon */;
    		i++ /* comment before opening curly brace */ {
    	}
    }
    
    // If there is no newline following punctuation, commas move before the punctuation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/scanner_test.go

    	{_Assign, "=", 0, 0},
    	{_Define, ":=", 0, 0},
    	{_Arrow, "<-", 0, 0},
    
    	// delimiters
    	{_Lparen, "(", 0, 0},
    	{_Lbrack, "[", 0, 0},
    	{_Lbrace, "{", 0, 0},
    	{_Rparen, ")", 0, 0},
    	{_Rbrack, "]", 0, 0},
    	{_Rbrace, "}", 0, 0},
    	{_Comma, ",", 0, 0},
    	{_Semi, ";", 0, 0},
    	{_Colon, ":", 0, 0},
    	{_Dot, ".", 0, 0},
    	{_DotDotDot, "...", 0, 0},
    
    	// keywords
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  3. src/go/types/generate_test.go

    	"slice.go":         nil,
    	"subst.go":         func(f *ast.File) { fixTokenPos(f); renameSelectors(f, "Trace->_Trace") },
    	"termlist.go":      nil,
    	"termlist_test.go": nil,
    	"tuple.go":         nil,
    	"typelists.go":     nil,
    	"typeset.go":       func(f *ast.File) { fixTokenPos(f); renameSelectors(f, "Trace->_Trace") },
    	"typeparam.go":     nil,
    	"typeterm_test.go": nil,
    	"typeterm.go":      nil,
    	"typestring.go":    nil,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. Makefile

    test-configfile: install-race
    	@env bash $(PWD)/docs/distributed/distributed-from-config-file.sh
    
    test-upgrade: install-race
    	@echo "Running minio upgrade tests"
    	@(env bash $(PWD)/buildscripts/minio-upgrade.sh)
    
    test-race: verifiers build ## builds minio, runs linters, tests (race)
    	@echo "Running unit tests under -race"
    	@(env bash $(PWD)/buildscripts/race.sh)
    
    test-iam: install-race ## verify IAM (external IDP, etcd backends)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/scanner.go

    		s.rawString()
    
    	case '\'':
    		s.rune()
    
    	case '(':
    		s.nextch()
    		s.tok = _Lparen
    
    	case '[':
    		s.nextch()
    		s.tok = _Lbrack
    
    	case '{':
    		s.nextch()
    		s.tok = _Lbrace
    
    	case ',':
    		s.nextch()
    		s.tok = _Comma
    
    	case ';':
    		s.nextch()
    		s.lit = "semicolon"
    		s.tok = _Semi
    
    	case ')':
    		s.nextch()
    		s.nlsemi = true
    		s.tok = _Rparen
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  6. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Pmd.java

        /**
         * The built-in rule sets to be used. See the <a href="https://docs.pmd-code.org/pmd-doc-6.55.0/pmd_rules_java.html">official list</a> of built-in rule sets.
         *
         * <pre>
         *     ruleSets = ["basic", "braces"]
         * </pre>
         */
        @Input
        public List<String> getRuleSets() {
            return ruleSets;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  7. src/html/template/transition.go

    		}
    	case '{':
    		// We only care about tracking brace depth if we are inside of a
    		// template literal.
    		if len(c.jsBraceDepth) == 0 {
    			return c, i + 1
    		}
    		c.jsBraceDepth[len(c.jsBraceDepth)-1]++
    	case '}':
    		if len(c.jsBraceDepth) == 0 {
    			return c, i + 1
    		}
    		// There are no cases where a brace can be escaped in the JS context
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Verify.java

       *     argument. These are matched by position - the first {@code %s} gets {@code
       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
       * @param errorMessageArgs the arguments to be substituted into the message template. Arguments
       *     are converted to strings using {@link String#valueOf(Object)}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
  9. src/go/types/api.go

    	// declarations within _cgo_gotypes.go.
    	//
    	// It is an error to set both FakeImportC and go115UsesCgo.
    	go115UsesCgo bool
    
    	// If _Trace is set, a debug trace is printed to stdout.
    	_Trace bool
    
    	// If Error != nil, it is called with each error found
    	// during type checking; err has dynamic type Error.
    	// Secondary errors (for instance, to enumerate all types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. src/regexp/regexp.go

    // If it is a number, extract returns num set to that number; otherwise num = -1.
    func extract(str string) (name string, num int, rest string, ok bool) {
    	if str == "" {
    		return
    	}
    	brace := false
    	if str[0] == '{' {
    		brace = true
    		str = str[1:]
    	}
    	i := 0
    	for i < len(str) {
    		rune, size := utf8.DecodeRuneInString(str[i:])
    		if !unicode.IsLetter(rune) && !unicode.IsDigit(rune) && rune != '_' {
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top