Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for inro (0.12 sec)

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

            fun isRemoteScriptUpToDate(uri: URI): Boolean
        }
    
        suspend fun ReadContext.checkBuildScopedFingerprint(): CheckedFingerprint {
            // TODO: log some debug info
            while (true) {
                when (val input = read()) {
                    null -> break
                    is ConfigurationCacheFingerprint -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

        tasks.register("${performanceReport.name}ResultsZip", Zip::class) {
            from(performanceReport.get().reportDir.locationOnly) {
                into("report")
            }
            from(performanceReport.get().performanceResults) {
                into("perf-results")
            }
            destinationDirectory = layout.buildDirectory
            archiveFileName = "performance-test-results.zip"
        }
    
    
    abstract
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. doc/godebug.md

    layout: article
    ---
    
    <!--
    This document is kept in the Go repo, not x/website,
    because it documents the full list of known GODEBUG settings,
    which are tied to a specific release.
    -->
    
    ## Introduction {#intro}
    
    Go's emphasis on backwards compatibility is one of its key strengths.
    There are, however, times when we cannot maintain complete compatibility.
    If code depends on buggy (including insecure) behavior,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

        get() = systemProperty(TEST_DISTRIBUTION_ENABLED).orNull?.toBoolean() == true
    
    
    // Controls the test distribution partition size. The test classes smaller than this value will be merged into a "partition"
    val Project.maxTestDistributionPartitionSecond: Long?
        get() = systemProperty(TEST_DISTRIBUTION_PARTITION_SIZE).orNull?.toLong()
    
    
    val Project.maxParallelForks: Int
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        license or settlement) prior to the initiation of patent
        infringement litigation, then the reasonable value of the licenses
        granted by such Participant under Sections 2.1 or 2.2 shall be taken
        into account in determining the amount or value of any payment or
        license.
    
        6.4. In the event of termination under Sections 6.1 or 6.2 above,
        all end user licenses that have been validly granted by You or any
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/EncryptionService.kt

            if (shouldEncryptStreams(stateType))
                safeWrap(input, this::decryptingInputStream)
            else
                input.invoke()
    
        /**
         * Wraps an inner closeable into an outer closeable, while ensuring that
         * if the wrapper function fails, the inner closeable is closed before
         * the exception is thrown.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            analysisSession: KaFirSession,
            symbolBuilder: KaSymbolByFirBuilder,
        ): Collection<KaSymbol> {
            when (expression.operation) {
                // Only 'equals' calls should be resolved into 'equals' functions.
                // Identity equals are not supposed to be resolved the same way.
                FirOperation.EQ, FirOperation.NOT_EQ -> {}
                else -> return emptyList()
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  8. maven-core/src/site/apt/offline-mode.apt

      should result in similar modification. This object is not meant to be
      static within the build process, but rather to be setup as an aggregation of
      all settings-related information passed into the system.
    
    ** Control over downloads
    
      Find the control point for m2 using maven-wagon. At this point, inject
      a offline status parameter which is used when retrieving the specific Wagon.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        tasks = ['build']
    }
    
    performanceTest.registerTestProject("archivePerformanceProject", Copy) {
        into "build/$name"
        from "src/templates/$name"
    }
    
    performanceTest.registerTestProject("workerApiProject", Copy) {
        into "build/$name"
        from "src/templates/$name"
    }
    
    tasks.withType(JvmProjectGeneratorTask).configureEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildTreeModelControllerServices.kt

            val modelAsProjectDependency = isolatedProjects && options.getOption(modelProjectDependencies).get()
            val configurationCacheLogLevel = if (startParameter.isConfigurationCacheQuiet) LogLevel.INFO else LogLevel.LIFECYCLE
            val modelParameters = if (requirements.isCreatesModel) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top