Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 193 for unresolved3 (0.18 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/internal/IdeaDependenciesProvider.java

            }
    
            /*
             * Remembers the unresolved dependency for later logging and also adds a fake
             * file dependency, with the file path pointing to the attempted component selector.
             * This shows up in the IDE as a red flag in the dependencies view. That's not the best
             * usability and it also muddies the API contract, because we disguise an unresolved
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/nodes/RenderableDependency.java

        Set<? extends RenderableDependency> getChildren();
        List<Section> getExtraDetails();
    
        enum ResolutionState {
            FAILED,
            RESOLVED,
            RESOLVED_CONSTRAINT,
            UNRESOLVED
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 10 22:44:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/test/groovy/org/gradle/api/tasks/ScalaRuntimeTest.groovy

            assert classpath.sourceCollections.size() == 1
            with(classpath.sourceCollections[0]) {
                assert it instanceof Configuration
                assert it.state == Configuration.State.UNRESOLVED
                assert it.dependencies.size() == 3
                assert it.dependencies.any { d ->
                    d.group == "org.scala-lang" &&
                        d.name == "scala-compiler" &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolver.java

            @Override
            public void visitIdentifier(Expression value) {
                results.unresolved();
            }
    
            @Override
            public void visitTokens(Expression tokens) {
                results.unresolved();
            }
    
            @Override
            public void visitUnresolved() {
                results.unresolved();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/result/DefaultResolutionResultTest.groovy

    import static org.gradle.api.internal.artifacts.result.ResolutionResultDataBuilder.newVariant
    
    class DefaultResolutionResultTest extends Specification {
    
        def "provides all modules and dependencies including unresolved"() {
            given:
            def dep1 = newDependency('dep1')
            def dep2 = newDependency('dep2')
    
            def root = newModule('root').addDependency(dep1).addDependency(dep2)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/SimpleNodeRenderer.java

                    }
                    break;
                case RESOLVED_CONSTRAINT:
                    output.withStyle(Info).text(" (c)");
                    break;
                case UNRESOLVED:
                    output.withStyle(Info).text(" (n)");
                    break;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 04 15:34:38 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_nopkgs.txt

    # It doesn't make sense to 'go get' a path in the standard library,
    # since the standard library necessarily can't have unresolved imports.
    #
    # TODO(#30241): Maybe that won't always be the case?
    #
    # For that case, we emit a "malformed module path" error message,
    # which isn't ideal either.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/types/KtFe10TypeErrorType.kt

        override val fe10Type: ErrorType,
        override val analysisContext: Fe10AnalysisContext
    ) : KaErrorType, KaFe10Type {
        init {
            check(!fe10Type.kind.isUnresolved) {
                "Expected unresolved ErrorType but ${fe10Type.kind} found for $fe10Type"
            }
        }
    
        @KaAnalysisNonPublicApi
        override val presentableText: String?
            get() = withValidityAssertion {
                when (fe10Type.kind) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_lazy_indirect.txt

    # https://golang.org/issue/45979: after 'go get' on a package,
    # that package should be importable without error.
    
    
    # We start out with an unresolved dependency.
    # 'go list' suggests that we run 'go get' on that dependency.
    
    ! go list -deps .
    stderr '^m.go:3:8: no required module provides package rsc\.io/quote; to add it:\n\tgo get rsc.io/quote$'
    
    
    # When we run the suggested 'go get' command, the new dependency can be used
    # immediately.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 19:52:18 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  10. src/go/printer/testdata/parser.go

    			ident.Obj = obj
    			return
    		}
    	}
    	// all local scopes are known, so any unresolved identifier
    	// must be found either in the file scope, package scope
    	// (perhaps in another file), or universe scope --- collect
    	// them so that they can be resolved later
    	ident.Obj = unresolved
    	p.unresolved = append(p.unresolved, ident)
    }
    
    // ----------------------------------------------------------------------------
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
Back to top