Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 187 for ancestors (0.16 sec)

  1. 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)
  2. guava/src/com/google/common/net/InternetDomainName.java

        checkState(isUnderRegistrySuffix(), "Not under a registry suffix: %s", name);
        return ancestor(registrySuffixIndex() - 1);
      }
    
      /** Indicates whether this domain is composed of two or more parts. */
      public boolean hasParent() {
        return parts.size() > 1;
      }
    
      /**
       * Returns an {@code InternetDomainName} that is the immediate ancestor of this one; that is, the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/KotlinMetadata.kt

    import kotlinx.metadata.jvm.moduleName
    import kotlinx.metadata.jvm.signature
    import kotlinx.metadata.jvm.syntheticMethodForAnnotations
    import org.gradle.kotlin.dsl.accessors.ExtensionSpec
    import org.gradle.kotlin.dsl.accessors.accessorDescriptorFor
    import org.gradle.kotlin.dsl.accessors.nonInlineGetterFlags
    import org.gradle.kotlin.dsl.support.uppercaseFirstChar
    import org.jetbrains.org.objectweb.asm.ClassVisitor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/InternetDomainName.java

        checkState(isUnderRegistrySuffix(), "Not under a registry suffix: %s", name);
        return ancestor(registrySuffixIndex() - 1);
      }
    
      /** Indicates whether this domain is composed of two or more parts. */
      public boolean hasParent() {
        return parts.size() > 1;
      }
    
      /**
       * Returns an {@code InternetDomainName} that is the immediate ancestor of this one; that is, the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

     * of the many `apply` method overloads or, in the case of [Project] scripts, via the `plugins` block.
     *
     * And just as regular [Project] scripts can take advantage of
     * [type-safe model accessors](https://docs.gradle.org/current/userguide/kotlin_dsl.html#type-safe-accessors)
     * to model elements contributed by plugins applied via the `plugins` block, so can precompiled [Project] script plugins:
     * ```kotlin
     * // java7-project.gradle.kts
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/TypeSafeProjectAccessorsSchemaBuildingComponent.kt

    import kotlin.reflect.KClass
    import kotlin.reflect.KType
    import kotlin.reflect.full.createType
    import kotlin.reflect.full.isSubclassOf
    
    
    /**
     * Brings the typesafe project accessors into the schema if the feature is enabled by doing the following:
     * * in the [ProjectTopLevelReceiver] type, introduces a `projects` property of type `RootProjectAccessor`;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/ReplacesEagerProperty.java

         */
        BinaryCompatibility binaryCompatibility() default ACCESSORS_REMOVED;
    
        /**
         * Accessors that are replaced by the property
         */
        ReplacedAccessor[] replacedAccessors() default {};
    
        /**
         * Deprecation configuration for the replaced accessors
         */
        ReplacedDeprecation deprecation() default @ReplacedDeprecation();
    
        interface DefaultValue {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/initialization/layout/BuildLayoutFactoryTest.groovy

            layout.settingsFile == settingsFile
            !layout.buildDefinitionMissing
    
            where:
            settingsFilename << TEST_CASES
        }
    
        def "returns current directory when no ancestor directory contains a settings file or build file"() {
            given:
            def locator = buildLayoutFactoryFor()
    
            and: "temporary tree created out of the Gradle build tree"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/StructSchemaExtractionStrategySupport.java

            ImmutableMap.Builder<PropertyAccessorType, WeaklyTypeReferencingMethod<?, ?>> accessors = ImmutableMap.builder();
            for (PropertyAccessorExtractionContext accessor : propertyContext.getAccessors()) {
                WeaklyTypeReferencingMethod<?, ?> accessorMethod = WeaklyTypeReferencingMethod.of(accessor.getMostSpecificDeclaration());
                accessors.put(accessor.getAccessorType(), accessorMethod);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. build-logic/integration-testing/src/main/kotlin/gradlebuild.test-fixtures.gradle.kts

    testFixturesRuntimeElements.extendsFrom(testFixturesRuntimeOnly)
    
    // do not attempt to find projects when the plugin is applied just to generate accessors
    if (project.name != "gradle-kotlin-dsl-accessors" && project.name != "test" /* remove once wrapper is updated */) {
        dependencies {
            testFixturesApi(project(":internal-testing"))
            // platform
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 13:19:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top