Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 104 for Semicolons (0.27 sec)

  1. test/syntax/semi6.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    type T1	// ERROR "newline in type declaration"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 02 02:56:41 UTC 2020
    - 299 bytes
    - Viewed (0)
  2. test/syntax/semi7.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	if x { }	// GCCGO_ERROR "undefined"
    	else { }	// ERROR "unexpected semicolon or newline before .?else.?|unexpected else"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 329 bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h

      // Note: do *not* include a trailing semicolon in the statement text.
      Renderer &Statement(const string &text);
      template <typename... Args>
      Renderer Statement(absl::string_view text, const Args &...args) {
        return Statement(absl::Substitute(text, args...));
      }
    
      // Indent and append a call to a TF method returning a Status to check.
      // Note: do *not* include a trailing semicolon in the statement text.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/LightTreeUtil.kt

    import org.jetbrains.kotlin.com.intellij.util.diff.FlyweightCapableTreeStructure
    import org.jetbrains.kotlin.diagnostics.isExpression
    import org.jetbrains.kotlin.lexer.KtTokens.COMMENTS
    import org.jetbrains.kotlin.lexer.KtTokens.SEMICOLON
    
    
    typealias LightTree = FlyweightCapableTreeStructure<LighterASTNode>
    
    
    fun FlyweightCapableTreeStructure<LighterASTNode>.sourceData(
        sourceIdentifier: SourceIdentifier,
        sourceCode: String,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. common/config/sass-lint.yml

      space-after-bang: 2
      space-after-colon: 2
      space-after-comma: 2
      space-around-operator: 2
      space-before-bang: 2
      space-before-brace: 2
      space-before-colon: 2
      space-between-parens: 2
      trailing-semicolon: 2
      url-quotes: 2
      variable-for-property:
        - 0
        -
          properties:
            - color
            - background-color
            - fill
      variable-name-format: 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 11 23:32:21 UTC 2019
    - 2K bytes
    - Viewed (0)
  6. src/go/printer/testdata/parser.go

    	var s1, s2, s3 ast.Stmt
    	if p.tok != token.LBRACE {
    		prevLev := p.exprLev
    		p.exprLev = -1
    		if p.tok != token.SEMICOLON {
    			s2 = p.parseSimpleStmt(false)
    		}
    		if p.tok == token.SEMICOLON {
    			p.next()
    			s1 = s2
    			s2 = nil
    			if p.tok != token.SEMICOLON {
    				s2 = p.parseSimpleStmt(false)
    			}
    			p.expectSemi()
    			if p.tok != token.LBRACE {
    				s3 = p.parseSimpleStmt(false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/KotlinGrammar.kt

    import org.jetbrains.kotlin.lexer.KtTokens.QUEST
    import org.jetbrains.kotlin.lexer.KtTokens.RBRACKET
    import org.jetbrains.kotlin.lexer.KtTokens.SAFE_ACCESS
    import org.jetbrains.kotlin.lexer.KtTokens.SEMICOLON
    
    
    internal
    val kotlinGrammar: KotlinGrammar by lazy(LazyThreadSafetyMode.PUBLICATION) {
        KotlinGrammar()
    }
    
    
    @Suppress("MemberVisibilityCanBePrivate")
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. src/go/token/token.go

    	LEQ      // <=
    	GEQ      // >=
    	DEFINE   // :=
    	ELLIPSIS // ...
    
    	LPAREN // (
    	LBRACK // [
    	LBRACE // {
    	COMMA  // ,
    	PERIOD // .
    
    	RPAREN    // )
    	RBRACK    // ]
    	RBRACE    // }
    	SEMICOLON // ;
    	COLON     // :
    	operator_end
    
    	keyword_beg
    	// Keywords
    	BREAK
    	CASE
    	CHAN
    	CONST
    	CONTINUE
    
    	DEFAULT
    	DEFER
    	ELSE
    	FALLTHROUGH
    	FOR
    
    	FUNC
    	GO
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIgnoringIntegrationTest.groovy

            outputContains("exists = false")
            problems.assertResultHasProblems(result) {
                withNoInputs()
            }
        }
    
        def 'can ignore file system checks in multiple paths if separated by semicolon'() {
            given:
            buildFile("""
                println("exists = " + new File(projectDir, "file1.txt").exists())
                println("exists = " + new File(projectDir, "file2.txt").exists())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/ir/.clang-tidy

            bugprone-macro-repeated-side-effects,
            bugprone-misplaced-widening-cast,
            bugprone-move-forwarding-reference,
            bugprone-multiple-statement-macro,
            bugprone-suspicious-semicolon,
            bugprone-swapped-arguments,
            bugprone-terminating-continue,
            bugprone-unused-raii,
            bugprone-unused-return-value,
            misc-redundant-expression,
            misc-static-assert,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 29 18:55:28 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top