Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LOCAL_PROJECT_AS_OPAQUE_DEPENDENCY (0.35 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependencyFactoryInternal.java

        enum ClassPathNotation {
            GRADLE_API("Gradle API"),
            GRADLE_KOTLIN_DSL("Gradle Kotlin DSL"),
            GRADLE_TEST_KIT("Gradle TestKit"),
            LOCAL_GROOVY("Local Groovy"),
            LOCAL_PROJECT_AS_OPAQUE_DEPENDENCY("Local project as an opaque dependency");
    
            public final String displayName;
    
            ClassPathNotation(String displayName) {
                assert displayName != null : "display name cannot be null";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:26:09 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultScriptClassPathResolver.java

            if (componentId instanceof OpaqueComponentIdentifier) {
                return ((OpaqueComponentIdentifier) componentId).getClassPathNotation() == ClassPathNotation.LOCAL_PROJECT_AS_OPAQUE_DEPENDENCY;
            }
            return componentId instanceof ProjectComponentIdentifier;
        }
    
        private static boolean isExternalDependency(ComponentIdentifier componentId) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

                    )
                    is ProjectComponentIdentifier -> DefaultFileCollectionDependency(
                        OpaqueComponentIdentifier(ClassPathNotation.LOCAL_PROJECT_AS_OPAQUE_DEPENDENCY),
                        fileCollectionFactory.fixed(componentIdentifier.displayName, it.file)
                    )
                    else -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top