Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 113 for ancestors (0.92 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/KotlinScriptHost.kt

    import org.gradle.api.model.ObjectFactory
    import org.gradle.api.plugins.ObjectConfigurationAction
    
    import org.gradle.groovy.scripts.ScriptSource
    
    import org.gradle.internal.service.ServiceRegistry
    import org.gradle.kotlin.dsl.accessors.ProjectAccessorsClassPathGenerator
    
    import org.gradle.kotlin.dsl.invoke
    
    import org.gradle.util.internal.ConfigureUtil.configureByMap
    import java.io.File
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ArrayListMultimapTest.java

        assertTrue(multimap.replaceValues("bar", asList(2, 4)) instanceof RandomAccess);
      }
    
      /** Test throwing ConcurrentModificationException when a sublist's ancestor's delegate changes. */
      public void testSublistConcurrentModificationException() {
        ListMultimap<String, Integer> multimap = create();
        multimap.putAll("foo", asList(1, 2, 3, 4, 5));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/Cleanup.kt

                }
        }
    }
    
    
    private
    val scriptCacheDirNames =
        // TODO Remove gradle-kotlin-dsl* after a while
        listOf("scripts", "scripts-remapped", "gradle-kotlin-dsl", "gradle-kotlin-dsl-accessors", "kotlin-dsl")
    
    
    private
    fun scriptsCacheDirsUnder(cacheDir: File) =
        scriptCacheDirNames
            .map { File(cacheDir, it) }
            .filter { it.isDirectory }
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 12:45:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. build-logic/lifecycle/src/main/kotlin/gradlebuild.lifecycle.gradle.kts

    /**
     * Print all stacktraces of running JVMs on the machine upon timeout. Helps us diagnose deadlock issues.
     */
    fun setupTimeoutMonitorOnCI() {
        if (BuildEnvironment.isCiServer && project.name != "gradle-kotlin-dsl-accessors") {
            project.gradle.sharedServices.registerIfAbsent("printStackTracesOnTimeoutBuildService", PrintStackTracesOnTimeoutBuildService::class.java) {
                parameters.timeoutMillis = determineTimeoutMillis()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:39:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/jvm/component/internal/DefaultJvmSoftwareComponentIntegrationTest.groovy

                    assert sourceSets.main
                }
            """
    
            expect:
            succeeds "verify"
        }
    
        // TODO: Eventually we want accessors to be generated for the `java` component so that
        // we can use `java {}` instead of `named<JvmSoftwareComponentInternal>("java") {}`.
        def "can configure java component added by java-library plugin in Kotlin DSL"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:18:02 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-consistentResolution/tests/fixed-dependency-insight.out

        | org.gradle.jvm.version         |              | 11           |
       Selection reasons:
          - By constraint: version resolved in configuration ':compileClasspath' by consistent resolution
          - By ancestor
    
    org.codehaus.groovy:groovy:3.0.1
    \--- runtimeClasspath
    
    org.codehaus.groovy:groovy:{strictly 3.0.1} -> 3.0.1
    \--- runtimeClasspath
    
    org.codehaus.groovy:groovy:3.0.2 -> 3.0.1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/BaseGraph.java

     *
     * @author James Sexton
     * @param <N> Node parameter type
     */
    @ElementTypesAreNonnullByDefault
    interface BaseGraph<N> extends SuccessorsFunction<N>, PredecessorsFunction<N> {
      //
      // Graph-level accessors
      //
    
      /** Returns all nodes in this graph, in the order specified by {@link #nodeOrder()}. */
      Set<N> nodes();
    
      /** Returns all edges in this graph. */
      Set<EndpointPair<N>> edges();
    
      //
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/BaseGraph.java

     *
     * @author James Sexton
     * @param <N> Node parameter type
     */
    @ElementTypesAreNonnullByDefault
    interface BaseGraph<N> extends SuccessorsFunction<N>, PredecessorsFunction<N> {
      //
      // Graph-level accessors
      //
    
      /** Returns all nodes in this graph, in the order specified by {@link #nodeOrder()}. */
      Set<N> nodes();
    
      /** Returns all edges in this graph. */
      Set<EndpointPair<N>> edges();
    
      //
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/base/KtFe10PsiSymbolUtils.kt

        val className = mutableListOf<String>()
    
        while (current != null) {
            when (current) {
                is KtPropertyAccessor -> {
                    // Filter out property accessors
                }
                is KtCallableDeclaration, is KtEnumEntry -> {
                    if (!allowLocal) {
                        return null
                    }
                    localName += current.name ?: return null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/TestKitIntegrationTest.kt

                build("test").output
            )
        }
    
        @Test
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor::class)
        @LeaksFileHandles("Kotlin Compiler Daemon working directory")
        fun `generated accessors work in the debug mode`() {
    
            withDefaultSettings()
    
            withBuildScript(
                """
    
                plugins {
                    `java-gradle-plugin`
                    `kotlin-dsl`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 10:30:09 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top