Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 193 for unresolved3 (0.21 sec)

  1. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/typeCreator/Fe10IdeNormalAnalysisSourceModuleBuildClassTypeTestGenerated.java

      }
    
      @Test
      @TestMetadata("unresolved.kt")
      public void testUnresolved() {
        runTest("analysis/analysis-api/testData/components/typeCreator/classType/unresolved.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginVersionCatalogIntegrationTest.kt

                    assertHasErrorOutput("buildSrc/src/main/kotlin/plugin-without-plugins.gradle.kts:1:9 Unresolved reference: libs")
                    assertHasErrorOutput("buildSrc/src/main/kotlin/plugin-with-plugins.gradle.kts:3:21 Unresolved reference: libs")
                }
            }
        }
    
        private
        fun withSimpleVersionCatalog() {
            withFile(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 08:15:18 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/ResolutionTracerTest.kt

        @Test
        fun `collects successful resolution of function`() {
            val resolver = tracingCodeResolver()
            val result = schema.resolve(
                """
                f(0) // must be an unresolved property x
                """.trimIndent(),
                resolver
            )
    
            val call = result.additions.single().dataObject.originElement as FunctionCall
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/IncludeDirectivesSerializer.java

        }
    
        private static class MacroSerializer implements Serializer<Macro> {
            private static final byte SIMPLE = (byte) 1;
            private static final byte COMPLEX = (byte) 2;
            private static final byte UNRESOLVED = (byte) 3;
            private final Serializer<IncludeType> enumSerializer;
            private final Serializer<List<Expression>> expressionSerializer;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/typeCreator/FirIdeNormalAnalysisSourceModuleBuildClassTypeTestGenerated.java

      }
    
      @Test
      @TestMetadata("unresolved.kt")
      public void testUnresolved() {
        runTest("analysis/analysis-api/testData/components/typeCreator/classType/unresolved.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/ScalaBasePluginIntegrationTest.groovy

                }
    
                task verify {
                    doLast {
                        assert configurations.customCompileClasspath.state.toString() == "UNRESOLVED"
                        assert configurations.customRuntimeClasspath.state.toString() == "UNRESOLVED"
                    }
                }
            """
    
            expect:
            succeeds("verify")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolutionResult.java

        /**
         * Retrieves all dependencies, including unresolved dependencies.
         * Resolved dependencies are represented by instances of {@link ResolvedDependencyResult},
         * unresolved dependencies by {@link UnresolvedDependencyResult}.
         *
         * In dependency graph terminology, this method returns the edges of the graph.
         *
         * @return all dependencies, including unresolved dependencies.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 24 19:03:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaDependencyLockingIntegrationTest.groovy

    }
    """
            def content = getFile([print : true], 'root.iml').text
    
            //then
            assert content.count("artifactTwo-2.0.jar") == 1
            assert content.count("unresolved dependency - groupOne artifactTwo") >= 1
        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void "does not break when extra dependency not in lockfile is defined"() {
            //given
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/dsl/DependencyResultSpecTest.groovy

        }
    
        def "matches unresolved dependencies"() {
            expect:
            new DependencyResultSpec(notation).isSatisfiedBy(newUnresolvedDependency("org.foo", "foo-core", "5.0"))
    
            where:
            notation << ['core', 'foo-core', 'foo-core:5.0', 'org.foo:foo-core:5.0', '5.0']
        }
    
        def "does not match unresolved dependencies"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 04 04:36:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/resolver_test.go

    				if x, ok := s.X.(*syntax.Name); ok {
    					obj := uses[x]
    					if obj == nil {
    						t.Errorf("%s: unresolved qualified identifier %s", x.Pos(), x.Value)
    						return false
    					}
    					if _, ok := obj.(*PkgName); ok && uses[s.Sel] == nil {
    						t.Errorf("%s: unresolved selector %s", s.Sel.Pos(), s.Sel.Value)
    						return false
    					}
    					return false
    				}
    				return true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top