Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 171 for ancestors (0.16 sec)

  1. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPathIntegrationTest.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.accessors
    
    import org.gradle.kotlin.dsl.fixtures.AbstractKotlinIntegrationTest
    
    import org.hamcrest.CoreMatchers.containsString
    import org.hamcrest.MatcherAssert.assertThat
    
    import org.junit.Test
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. build-logic/uber-plugins/src/main/kotlin/gradlebuild.kotlin-library.gradle.kts

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import gradlebuild.basics.accessors.kotlinMainSourceSet
    import gradlebuild.basics.kotlindsl.configureKotlinCompilerForGradleBuild
    import org.gradle.api.internal.initialization.DefaultClassLoaderScope
    import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 13:36:27 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/typesafe/TypeSafeRootProjectAccessorsIntegrationTest.groovy

     */
    
    package org.gradle.integtests.resolve.typesafe
    
    class TypeSafeRootProjectAccessorsIntegrationTest extends AbstractTypeSafeProjectAccessorsIntegrationTest {
        def "generates type-safe accessors for a root project with name = #root)"() {
            given:
            settingsFile << """
                rootProject.name = '$root'
            """
            buildFile << """
                def projectDependency = projects.${accessor}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/ScriptHandlerScopeInternal.kt

    
    internal
    class ScriptHandlerScopeInternal(
        private val scriptTarget: ExtensionAware,
        scriptHandler: ScriptHandler,
    ) : ScriptHandlerScope(scriptHandler) {
    
        /**
         * Used by version catalog accessors in project scripts plugins {} block.
         */
        @Suppress("UNUSED")
        fun versionCatalogExtension(name: String): ExternalModuleDependencyFactory =
            scriptTarget.extensions[name] as ExternalModuleDependencyFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GenerateExternalPluginSpecBuilders.kt

    import org.gradle.api.file.DirectoryProperty
    import org.gradle.api.tasks.CacheableTask
    import org.gradle.api.tasks.OutputDirectory
    import org.gradle.api.tasks.TaskAction
    
    import org.gradle.kotlin.dsl.accessors.writeSourceCodeForPluginSpecBuildersFor
    
    import java.io.File
    
    
    @CacheableTask
    abstract class GenerateExternalPluginSpecBuilders : ClassPathSensitiveCodeGenerationTask(), SharedAccessorsPackageAware {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/TypeAccessibilityProviderTest.kt

    package org.gradle.kotlin.dsl.accessors
    
    import org.junit.Assert.assertTrue
    import org.gradle.internal.classpath.ClassPath
    
    import org.hamcrest.CoreMatchers.*
    import org.hamcrest.MatcherAssert.assertThat
    
    import org.junit.Test
    
    
    internal
    interface InternalType
    
    
    class TypeAccessibilityProviderTest : TestWithClassPath() {
    
        @Test
        fun `public generic type with primitive component type is accessible`() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/KotlinTypeStringTest.kt

    package org.gradle.kotlin.dsl.accessors
    
    import org.gradle.api.reflect.TypeOf.typeOf
    
    import org.gradle.kotlin.dsl.typeOf
    
    import org.hamcrest.CoreMatchers.equalTo
    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Test
    
    
    class KotlinTypeStringTest {
    
        @Test
        fun `#kotlinTypeStringFor array type`() {
            assertThat(
                kotlinTypeStringFor(typeOf<Array<String>>()),
                equalTo("Array<String>")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/graph/StandardValueGraph.java

     *
     * <p>This class maintains a map of nodes to {@link GraphConnections}.
     *
     * <p>Collection-returning accessors return unmodifiable views: the view returned will reflect
     * changes to the graph (if the graph is mutable) but may not be modified by the user.
     *
     * <p>The time complexity of all collection-returning accessors is O(1), since views are returned.
     *
     * @author James Sexton
     * @author Joshua O'Madadhain
     * @author Omar Darwish
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    This error indicates that your version catalog contains (at least) two aliases which are mapped to the same accessor.
    Given an alias like `some.alias`, Gradle implements a mapping strategy to a _getter_ for type-checked accessors.
    In this case, it means that two aliases are in conflict because they result in the same getter being created.
    
    To fix this problem, you must choose different aliases.
    
    [[too_many_entries]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/BuildScopeServices.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.accessors
    
    import org.gradle.api.internal.file.FileCollectionFactory
    import org.gradle.internal.execution.ExecutionEngine
    import org.gradle.internal.execution.InputFingerprinter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top