Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for irides (0.1 sec)

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

        private val stateFile: ConfigurationCacheStateFile,
        private val eventEmitter: BuildOperationProgressEventEmitter,
        private val host: DefaultConfigurationCache.Host
    ) {
        /**
         * Writes the state for the whole build starting from the given root [build] and returns the set
         * of stored included build directories.
         */
        suspend fun DefaultWriteContext.writeRootBuildState(build: VintageGradleBuild) {
    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. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

            buildLayout: BuildLayoutParameters,
            offline: Boolean,
        ) : StartParameterInternal(buildLayout) {
    
            init {
                // Dry run in case a callback tries to access the task graph.
                isDryRun = true
                isOffline = offline
                doNotSearchUpwards()
                useEmptySettings()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

        }
    
        private
        sealed class State {
    
            open fun onDiagnostic(kind: DiagnosticKind, problem: PropertyProblem): State =
                illegalState()
    
            /**
             * Writes the report file to the given [outputDirectory] if and only if
             * there are diagnostics to report.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GeneratePluginSpecBuilderAccessors.kt

    import org.gradle.plugin.use.PluginDependencySpec
    import org.jetbrains.org.objectweb.asm.ClassWriter
    import org.jetbrains.org.objectweb.asm.MethodVisitor
    import java.io.BufferedWriter
    import java.io.File
    
    
    /**
     * Writes the source code of accessors to plugin spec builders.
     *
     * This is public in order to be usable by precompiled script plugins support.
     */
    fun writeSourceCodeForPluginSpecBuildersFor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

                hasTooManyProblems -> {
                    TooManyConfigurationCacheProblemsException(summary.causes, summaryText)
                }
    
                else -> null
            }
        }
    
        /**
         * Writes the report to the given [reportDir] if any [diagnostics][DiagnosticKind] have
         * been reported in which case a warning is also logged with the location of the report.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

            when:
            withBuildCache().run "jar"
            then:
            skipped ":compileJava"
        }
    
        /**
         * This scenario represents a potentially misconfigured server trying to redirect writes, but using the wrong status to do so.
         * This is still potentially valid usage though, and is valid HTTP.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top