Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for ancestors (0.15 sec)

  1. testing/architecture-test/src/changes/archunit-store/internal-api-symmetrical-accessors-nullability.txt

    Accessors for org.gradle.api.internal.artifacts.dependencies.AbstractModuleDependency.targetConfiguration don't use symmetrical @Nullable
    Accessors for org.gradle.api.internal.file.copy.CopySpecWrapper.dirMode don't use symmetrical @Nullable
    Accessors for org.gradle.api.internal.file.copy.CopySpecWrapper.fileMode don't use symmetrical @Nullable
    Accessors for org.gradle.api.internal.file.copy.DefaultCopySpec.dirMode don't use symmetrical @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-symmetrical-accessors-nullability.txt

    Accessors for org.gradle.StartParameter.currentDir don't use symmetrical @Nullable
    Accessors for org.gradle.StartParameter.gradleUserHomeDir don't use symmetrical @Nullable
    Accessors for org.gradle.StartParameter.taskNames don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.AbstractCopyTask.dirMode don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.AbstractCopyTask.fileMode don't use symmetrical @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/hoist_broadcast_read.cc

      void runOnOperation() override;
    };
    
    // Get the ancestor of `descendant` that is a direct child of `ancestor`.
    Operation* GetAncestorBelow(Operation* descendant, Operation* ancestor) {
      Operation* parent = descendant->getParentOp();
      if (!parent) return nullptr;
      if (parent == ancestor) return descendant;
      return GetAncestorBelow(parent, ancestor);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/typesafe/TypeSafeProjectAccessorsIntegrationTest.groovy

        def setup() {
            settingsFile << """
                rootProject.name = 'typesafe-project-accessors'
            """
        }
    
        def "generates type-safe project accessors for multi-project build"() {
            given:
            createDirs("one", "one/other", "two", "two/other")
            settingsFile << """
                include 'one'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:11:20 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/plugins/dependenciesBlock/common/buildSrc/src/main/java/com/example/ExampleExtension.java

        // tag::dependencies-accessors[]
        /**
         * Custom dependencies for this extension.
         */
        @Nested
        ExampleDependencies getDependencies();
    
        /**
         * Configurable block
         */
        default void dependencies(Action<? super ExampleDependencies> action) {
            action.execute(getDependencies());
        }
        // end::dependencies-accessors[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 20:29:08 UTC 2024
    - 553 bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/UpgradePropertiesRulePostProcess.java

                String formattedLeft = CollectionUtils.join("\n", keptAccessors.keySet());
                throw new RuntimeException("The following accessors were upgraded, but didn't match any removed/changed method:\n\n" + formattedLeft);
            }
    
            // Find accessors that were removed but shouldn't be
            Map<AccessorKey, ReplacedAccessor> removedAccessors = new HashMap<>(oldAccessorsOfUpgradedProperties);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  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/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r88/KotlinSettingsScriptModelCrossVersionSpec.groovy

    @TargetGradleVersion(">=8.8")
    @Flaky(because = "https://github.com/gradle/gradle-private/issues/3714")
    class KotlinSettingsScriptModelCrossVersionSpec extends AbstractKotlinScriptModelCrossVersionTest {
    
        def "settings script has type-safe accessors on the classpath"() {
            given:
            withDefaultSettingsIn("included")
            withBuildScriptIn("included", """
                plugins { `kotlin-dsl` }
                $repositoriesBlock
            """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 13:31:47 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top