Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 157 for ancestors (0.29 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelGraph.java

                addEverythingListener(listener);
                return;
            }
    
            ModelNodeInternal ancestor = flattened.get(listener.getAncestor());
            if (ancestor != null) {
                Deque<ModelNodeInternal> queue = new ArrayDeque<ModelNodeInternal>();
                queue.add(ancestor);
                while (!queue.isEmpty()) {
                    ModelNodeInternal parent = queue.removeFirst();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/kotlinDsl/accessors/kotlin/build.gradle.kts

    // tag::accessors[]
    plugins {
        `java-library`
    }
    
    dependencies {                              // <1>
        api("junit:junit:4.13")
        implementation("junit:junit:4.13")
        testImplementation("junit:junit:4.13")
    }
    
    configurations {                            // <1>
        implementation {
            resolutionStrategy.failOnVersionConflict()
        }
    }
    
    sourceSets {                                // <2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 833 bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/Emitter.kt

        makeAccessorOutputDirs(srcDir, binDir, outputPackage.path)
    
        // When building accessors for Settings, preserve semantics for existing custom accessors by
        // giving the generated accessors lower priority in Kotlin overload resolution.
        val useLowPriorityOverloadResolution = projectSchema.scriptTarget is Settings
        val moduleName = binDir?.name ?: "kotlin-dsl-accessors"
        val emittedClassNames =
            accessorsFor(projectSchema).map { accessor ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/cache/KotlinDslWorkspaceProvider.kt

                .createCacheBuilder("kotlin-dsl")
                .withDisplayName("kotlin-dsl"),
            fileAccessTimeJournal,
            2, // scripts and accessors caches sit below the root directory
            cacheConfigurations
        )
    
        val accessors = subWorkspace("accessors")
    
        val scripts = subWorkspace("scripts")
    
        override fun close() =
            kotlinDslWorkspace.close()
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 18:54:15 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineDelegatedPropertyAccessorsAnalyzer.kt

        // the index doesn't cover classfiles from compiler output,
        // so the lowering fails.
        //
        // To solve the problem, we need to find all delegated properties with inline accessors
        // reachable from files that will be compiled, and include files these inline accessors
        // to the set of files that will be compiled (and do the same for these files recursively).
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/architecture/PackageDependencyRulesTest.kt

        }
    
        @Test
        fun `support should not depend on codegen`() {
            "..support.." shouldNotDependOn "..kotlin.dsl.codegen.."
        }
    
        @Test
        fun `accessors should not depend on execution`() {
            "..accessors.." shouldNotDependOn "..kotlin.dsl.execution.."
        }
    
        private
        infix fun String.shouldNotDependOn(thatPackage: String) {
            noClasses()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/stored.rules

    #
    #Fri Jan 19 18:01:32 EST 2024
    classes\ that\ are\ Gradle\ public\ API\ should\ have\ accessors\ with\ symmetrical\ @Nullable\ annotations=public-api-symmetrical-accessors-nullability.txt
    classes\ that\ are\ Gradle\ public\ API\ should\ not\ have\ direct\ super-class\ or\ interface\ that\ are\ Gradle\ Internal\ API=public-api-not-extends-internal-types.txt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DependenciesAccessorsWorkspaceProvider.java

        ) {
            this.delegate = CacheBasedImmutableWorkspaceProvider.createWorkspaceProvider(
                cacheBuilderFactory
                    .createCacheBuilder("dependencies-accessors")
                    .withDisplayName("dependencies-accessors"),
                fileAccessTimeJournal,
                cacheConfigurations
            );
        }
    
        @Override
        public ImmutableWorkspace getWorkspace(String path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/typesafe/TypeSafeProjectAccessorsCompositeBuildsIntegrationTest.groovy

        // not necessarily planned to be implemented, but capturing the existing behavior
        @ToBeImplemented
        def "included builds participate in type-safe accessors generation"() {
            settingsFile << """
                rootProject.name = 'test'
    
                includeBuild 'other'
            """
            file('other/settings.gradle') << """
                rootProject.name = 'other'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 15:31:19 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ModuleVersionSelectorParsers.java

                    throw new InvalidUserDataException("Cannot convert a version catalog entry '" + notationAsString + "' to an object of type ModuleVersionSelector. " +
                        "Only dependency accessors are supported but not plugin, bundle or version accessors for '" + caller + "'.");
                }
                MinimalExternalModuleDependency dependency = (MinimalExternalModuleDependency) notation.get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top