Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for mtime (0.17 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/ResolverEventLogger.kt

                    else -> userHome().resolve(".gradle-kotlin-dsl/log")
                }
            }
    
        private
        fun now() = GregorianCalendar.getInstance().time
    
        private
        const val cleanupAfterDays = 1
    
        private
        const val logFilesExpireAfterDays = 7
    
        private
        fun cleanupLogDirectory(logDir: File) =
            readyForCleanup(logDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ScopedFingerprintWriter.kt

    ) : Closeable {
        override fun close() {
            // we synchronize access to all resources used by callbacks
            // in case there was still an event being dispatched at closing time.
            synchronized(writeContext) {
                unsafeWrite(null)
                writeContext.close()
            }
        }
    
        fun write(value: T, trace: PropertyTrace? = null) {
            synchronized(writeContext) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/ImplicitImports.kt

            listOf(
                "org.gradle.kotlin.dsl.*",
                // TODO: let this be contributed by :plugins
                "org.gradle.kotlin.dsl.plugins.dsl.*",
                // TODO: infer list of types below at build time by inspecting the Gradle API
                "java.util.concurrent.Callable",
                "java.util.concurrent.TimeUnit",
                "java.math.BigDecimal",
                "java.math.BigInteger",
                "java.io.File",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt

        get() = settingsRoot.id.toString().substringAfter("Gradle")
    
    data class VersionedSettingsBranch(val branchName: String) {
        /**
         * 0~23.
         * To avoid nightly promotion jobs running at the same time,
         * we run each branch on different hours.
         * master - 0:00
         * release - 1:00
         * release6x - 2:00
         * release7x - 3:00
         * ...
         * releaseNx - (N-4):00
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. build-logic/settings.gradle.kts

    include("integration-testing")
    include("jvm")
    include("kotlin-dsl")
    include("uber-plugins")
    include("packaging")
    include("performance-testing")
    include("profiling")
    include("publishing")
    
    // Components used both at build time and GBT runtime, shipped in the distribution
    include("kotlin-dsl-shared-runtime")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InputTrackingState.kt

     * directly affect the configuration.
     * For example, accessing environment variable inside the `ValueSource` being obtained at
     * the configuration time is not really an input, because the value of the value source itself
     * becomes part of the configuration cache fingerprint.
     */
    @ServiceScope(Scope.BuildTree::class)
    class InputTrackingState {
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

                // Restoration must consider properties that was overridden after store.
                // When property was loaded and stored then loaded value will be presented for execution time after restore.
                // This is a wrong behavior if property was overridden. Execution time must see overridden value instead of restored one.
                // Overridden properties keys are passed to be excluded from the restoration process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts

            (buildRcNumber.isPresent && buildMilestoneNumber.isPresent)
        ) {
            throw InvalidUserDataException("Cannot set any combination of milestoneNumber, rcNumber and finalRelease at the same time")
        }
    
        val versionQualifier = buildVersionQualifier
        val isFinalRelease = finalRelease.isPresent
    
        val buildTimestamp = buildTimestamp()
        val versionNumber = when {
            isFinalRelease -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgram.kt

     * against a given [target][ProgramTarget].
     *
     * @see PartialEvaluator.reduce
     */
    internal
    sealed class ResidualProgram {
    
        /**
         * A static residue, can be compiled ahead of time.
         */
        data class Static(val instructions: List<Instruction>) : ResidualProgram() {
    
            constructor(vararg instructions: Instruction) :
                this(instructions.toList())
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinBuildScriptModelBuilder.kt

    import org.gradle.internal.classpath.ClassPath
    import org.gradle.internal.classpath.DefaultClassPath
    import org.gradle.internal.resource.TextFileResourceLoader
    import org.gradle.internal.time.Time.startTimer
    import org.gradle.kotlin.dsl.*
    import org.gradle.kotlin.dsl.accessors.AccessorsClassPath
    import org.gradle.kotlin.dsl.accessors.ProjectAccessorsClassPathGenerator
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top