Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 552 for reassignment (0.38 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/CodeAnalyzer.kt

    package org.gradle.internal.declarativedsl.analysis
    
    
    import org.gradle.declarative.dsl.evaluation.AnalysisStatementFilter
    import org.gradle.internal.declarativedsl.language.Assignment
    import org.gradle.internal.declarativedsl.language.DataStatement
    import org.gradle.internal.declarativedsl.language.Expr
    import org.gradle.internal.declarativedsl.language.LocalValue
    
    
    interface CodeAnalyzer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/expressionTypeProvider/Fe10IdeNormalAnalysisSourceModuleHLExpressionTypeTestGenerated.java

      @TestDataPath("$PROJECT_ROOT")
      public class Assignment {
        @Test
        public void testAllFilesPresentInAssignment() {
          KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/expressionTypeProvider/expressionType/assignment"), Pattern.compile("^(.+)\\.kt$"), null, true);
        }
    
        @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/expressionTypeProvider/FirIdeNormalAnalysisSourceModuleHLExpressionTypeTestGenerated.java

      @TestDataPath("$PROJECT_ROOT")
      public class Assignment {
        @Test
        public void testAllFilesPresentInAssignment() {
          KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/expressionTypeProvider/expressionType/assignment"), Pattern.compile("^(.+)\\.kt$"), null, true);
        }
    
        @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/expressionTypeProvider/FirStandaloneNormalAnalysisSourceModuleHLExpressionTypeTestGenerated.java

      @TestDataPath("$PROJECT_ROOT")
      public class Assignment {
        @Test
        public void testAllFilesPresentInAssignment() {
          KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/expressionTypeProvider/expressionType/assignment"), Pattern.compile("^(.+)\\.kt$"), null, true);
        }
    
        @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue59338a.go

    package p
    
    func g[P any](P)      {}
    func h[P, Q any](P) Q { panic(0) }
    
    var _ func(int) = g /* ERROR "implicitly instantiated function in assignment requires go1.21 or later" */
    var _ func(int) string = h[ /* ERROR "partially instantiated function in assignment requires go1.21 or later" */ int]
    
    func f1(func(int))      {}
    func f2(int, func(int)) {}
    
    func _() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 17:35:44 UTC 2023
    - 727 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/stmt.go

    	// Iteration variables declared with := need to go in this scope (was go.dev/issue/51437).
    	check.openScope(s, "range")
    	defer check.closeScope()
    
    	// check assignment to/declaration of iteration variables
    	// (irregular assignment, cannot easily map to existing assignment checks)
    
    	// lhs expressions and initialization value (rhs) types
    	lhs := [2]Expr{sKey, sValue} // sKey, sValue may be nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  7. test/fixedbugs/bug331.go

    	if x != "hello" || y != 3.14 || z != io.EOF {
    		println("wrong", x, len(x), y, z)
    	}
    }
    
    /*
    issue 1712
    
    bug331.go:12: cannot use "hello" (type string) as type float64 in assignment
    bug331.go:12: cannot use 0 (type float64) as type os.Error in assignment:
    	float64 does not implement os.Error (missing String method)
    bug331.go:12: error in shape across RETURN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 804 bytes
    - Viewed (0)
  8. test/fixedbugs/bug184.go

    type Reader interface {
    	Read()
    }
    
    func f() *Buffer { return nil }
    
    func g() Reader {
    	// implicit interface conversion in assignment during return
    	return f()
    }
    
    func h() (b *Buffer, ok bool) { return }
    
    func i() (r Reader, ok bool) {
    	// implicit interface conversion in multi-assignment during return
    	return h()
    }
    
    func fmter() (s string, i int, t string) { return "%#x %q", 100, "hello" }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 849 bytes
    - Viewed (0)
  9. src/go/types/stmt.go

    			return
    		}
    		check.assignVar(s.X, nil, &x, "assignment")
    
    	case *ast.AssignStmt:
    		switch s.Tok {
    		case token.ASSIGN, token.DEFINE:
    			if len(s.Lhs) == 0 {
    				check.error(s, InvalidSyntaxTree, "missing lhs in assignment")
    				return
    			}
    			if s.Tok == token.DEFINE {
    				check.shortVarDecl(inNode(s, s.TokPos), s.Lhs, s.Rhs)
    			} else {
    				// regular assignment
    				check.assignVars(s.Lhs, s.Rhs)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/expressionTypeProvider/FirIdeDependentAnalysisScriptSourceModuleHLExpressionTypeTestGenerated.java

      @TestDataPath("$PROJECT_ROOT")
      public class Assignment {
        @Test
        public void testAllFilesPresentInAssignment() {
          KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/expressionTypeProvider/expressionType/assignment"), Pattern.compile("^(.+)\\.kts$"), null, true);
        }
      }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 07:21:33 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top