Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 260 for light (1.09 sec)

  1. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/install/internal/SecureFileDownloaderTest.groovy

    import java.nio.file.Files
    
    class SecureFileDownloaderTest extends Specification {
    
        @TempDir
        public File temporaryFolder
    
        def "successful download creates destination file with the right content"() {
            RepositoryTransportFactory transportFactory = newTransportFactory()
    
            given:
            def downloader = new SecureFileDownloader(transportFactory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/JavaExecutableUtils.java

            if (!executableFile.isAbsolute()) {
                DeprecationLogger.deprecateBehaviour("Configuring a Java executable via a relative path.")
                        .withContext("Resolving relative file paths might yield unexpected results, there is no single clear location it would make sense to resolve against.")
                        .withAdvice("Configure an absolute path to a Java executable instead.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. architecture/standards/0004-use-a-platform-architecture.md

    #### Core automation platform
    
    This is a general-purpose automation platform which takes care of the efficient definition and execution of work, such as tasks.
    This platform is agnostic to what exactly the purpose of the work is.
    It might be creating an application, setting up development environments, orchestrating deployments, running simulations, etc.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/objectGraph/AssignmentResolver.kt

                node -> node
                else -> get(value).also { dsu[node] = it }
            }
    
            fun union(left: ResolutionNode, right: ResolutionNode) {
                dsu[get(left)] = right
            }
    
            assignmentByNode.forEach { (key, value) ->
                union(key, value.node)
            }
    
            return buildMap {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-plugins/src/test/kotlin/org/gradle/kotlin/dsl/plugins/embedded/EmbeddedKotlinPluginTest.kt

            val logger = mock<Logger>()
            val template = """
                WARNING: Unsupported Kotlin plugin version.
                The `embedded-kotlin` and `kotlin-dsl` plugins rely on features of Kotlin `{}` that might work differently than in the requested version `{}`.
            """.trimIndent()
    
    
            logger.warnOnDifferentKotlinVersion(embeddedKotlinVersion)
    
            inOrder(logger) {
                verifyNoMoreInteractions()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/FailsafePhasedActionResultListener.java

    import org.gradle.tooling.internal.protocol.PhasedActionResultListener;
    
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Listener that will collect failures from the delegate listener and rethrow them in the right moment of the build.
     */
    public class FailsafePhasedActionResultListener implements PhasedActionResultListener {
        private final PhasedActionResultListener delegate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 23:23:59 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/DevelocityBuildLifecycleService.java

        /**
         * Adds an action to be called immediately before a project is evaluated.
         * <p>
         * The action will be applied to all projects configured in the current build. Due to `Isolated Projects`, a particular build might only configure a subset of all projects.
         *
         * @param action The action to execute.
         */
        void beforeProject(Action<? super Project> action);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsResourceCompilerTest.groovy

             '/I' + includeDir.absoluteFile.toString(), '/I' + systemIncludeDir.absoluteFile.toString()]
        }
    
        def "check that position sensitive arguments are in the right order"() {
            given:
            def genericArgs = [ '/nologo' ]
            def sourceArgs = [ 'path/to/source.rc' ]
            def outputArgs = [ 'path/to/output.res' ]
            def compiler = getCompiler()
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/ClassLoaderHierarchy.kt

    import org.gradle.internal.classloader.ClassLoaderVisitor
    
    import org.gradle.kotlin.dsl.support.foldHierarchy
    
    import java.net.URL
    
    import java.util.*
    
    
    /**
     * A formatter for strings that might contain file system paths.
     */
    internal
    typealias PathStringFormatter = (String) -> String
    
    
    internal
    fun classLoaderHierarchyJsonFor(
        klass: Class<*>,
        targetScope: ClassLoaderScope,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheException.kt

    import org.gradle.internal.exceptions.DefaultMultiCauseException
    
    
    /**
     * Marker interface for exception handling.
     */
    internal
    interface ConfigurationCacheThrowable
    
    
    /**
     * State might be corrupted and should be discarded.
     */
    @Contextual
    class ConfigurationCacheError internal constructor(
        error: String,
        cause: Throwable? = null
    ) : ConfigurationCacheThrowable, Exception(error, cause)
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top