Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for calling (1.04 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

    import org.gradle.api.provider.Provider
    import org.gradle.api.services.internal.BuildServiceProvider
    import org.gradle.api.services.internal.RegisteredBuildServiceProvider
    import org.gradle.caching.configuration.BuildCache
    import org.gradle.caching.configuration.internal.BuildCacheServiceRegistration
    import org.gradle.internal.cc.impl.serialize.Codecs
    import org.gradle.internal.cc.base.serialize.IsolateOwners
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. doc/godebug.md

    controlled by the [`x509sha1` setting](/pkg/crypto/x509#InsecureAlgorithmError).
    This setting will be removed in a future release, Go 1.22 at the earliest.
    
    ### Go 1.10
    
    Go 1.10 changed how build caching worked and added test caching, along
    with the [`gocacheverify`, `gocachehash`, and `gocachetest` settings](/cmd/go/#hdr-Build_and_test_caching).
    There is no plan to remove these settings.
    
    ### Go 1.6
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                                    "org.gradle.performance.regression.corefeature.FileSystemWatchingPerformanceTest",
                                    "assemble for non-abi change with file system watching and configuration caching"
                                ),
                                it
                            )
                        }
                    )
                )
            ),
            Stage(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

        fun buildLogicClassPath(gradle: Gradle): ClassPath {
            // Ideally we would pass already instrumented classpath to a task and then just export it to the classloader.
            // But since we do some artifact transform caching via BuildService,
            // that would add some complexity when wiring GeneratePrecompiledScriptPluginAccessors task.
            val dependencyManagementServices = gradle.serviceOf<DependencyManagementServices>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

    import org.gradle.internal.execution.ExecutionEngine
    import org.gradle.internal.execution.InputFingerprinter
    import org.gradle.internal.execution.UnitOfWork
    import org.gradle.internal.execution.caching.CachingDisabledReason
    import org.gradle.internal.execution.caching.CachingDisabledReasonCategory
    import org.gradle.internal.execution.history.OverlappingOutputs
    import org.gradle.internal.hash.HashCode
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

            polymorphicDomainObjectContainer().containerWithType(type)
    
        /**
         * Configures an object by name, without triggering its creation or configuration, failing if there is no such object.
         *
         * @see [NamedDomainObjectContainer.named]
         * @see [NamedDomainObjectProvider.configure]
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. CONTRIBUTING.md

    > **NOTE:** Do **NOT** run `gradle build` on the local development environment,
    > even if you have Gradle or Develocity build caching enabled for the project.
    > The Gradle Build Tool repository is massive, and it will take ages to build on
    > a local machine without necessary parallelization and caching.
    > The full test suites are executed on the CI instance for multiple configurations,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

                // In contrast to `sharedBinaryRoots`, which are shared between many different projects (e.g. the Kotlin stdlib), `binaryRoots`
                // come from binary libraries which are specific to the project. Caching them in `KotlinFakeClsStubsCache` won't have any
                // performance advantage.
                binaryRoots
                    .map { collectStubsFromBinaryRoot(it, binaryClassCache) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

         * Test if a method is a prime declaration or an overrides that change the signature.
         *
         * There's no way to tell from the byte code that a method overrides the signature
         * of a parent declaration other than crawling up the type hierarchy.
         */
        private
        fun isSignificantDeclaration(methodNode: MethodNode): Boolean {
    
            if (methodNode.access.isSynthetic) return false
    
            if (!hasSuperType) return true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 19:56:10 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top