Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 267 for light (0.13 sec)

  1. 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)
  2. platforms/documentation/docs/src/docs/userguide/img/cpp-application-configurations.dot

        cppCompileVariant[label=<cppCompile<i>Variant</i> (R)>]
        nativeLinkVariant[label=<nativeLink<i>Variant</i> (R)>]
        nativeRuntimeVariant[label=<nativeRuntime<i>Variant</i> (R)>]
      }
    
      subgraph right {
        node[style=filled, fillcolor="#ea9999"]
        variantRuntimeElements [weight=1000]
    
        variantRuntimeElements[label=<<i>variant</i>RuntimeElements (C)>]
      }
    
      // Ensure the order is preserved
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/software/publish/src/main/java/org/gradle/api/publish/plugins/PublishingPluginRules.java

    import org.gradle.model.Model;
    import org.gradle.model.ModelMap;
    import org.gradle.model.Mutate;
    import org.gradle.model.RuleSource;
    
    /**
     * These bindings are only here for backwards compatibility, as some users might depend on the extensions being available in the model.
     */
    class PublishingPluginRules extends RuleSource {
        @Model
        PublishingExtension publishing(ExtensionContainer extensions) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. 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)
  5. platforms/software/testing-base-infrastructure/src/integTest/groovy/org/gradle/api/internal/tasks/testing/JULRedirectorIntegrationTest.groovy

    class JULRedirectorIntegrationTest extends AbstractSampleIntegrationTest {
        def static final LYRICS = [
            "I'm a lumberjack, and I'm okay.",
            "I sleep all night and I work all day.",
            "He's a lumberjack, and He's okay.",
            "He sleeps all night and he works all day."
        ]
        @Rule TestResources testResources = new TestResources(temporaryFolder)
    
        /* Relies on the resources directory:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. architecture/platforms.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: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformFilteringIntegrationTest.groovy

                .assertTestPassed('superTest')
        }
    
        /**
         * This test documents the status quo behavior of the test runner, where tests based on fields
         * are not filtered by exclude patterns.  It might be desirable to change this behavior in the
         * future to filter on field names directly; if this is done, this test should be replaced.
         */
        @Issue("https://github.com/gradle/gradle/issues/19352")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/configuration/internal/DefaultDynamicCallContextTrackerTest.groovy

    import java.util.concurrent.CountDownLatch
    
    class DefaultDynamicCallContextTrackerTest extends Specification {
        def tracker = new DefaultDynamicCallContextTracker()
    
        def "invokes callbacks in the right order with the right arguments"() {
            given:
            def log = []
            tracker.onEnter { log += ["enter", it] }
            tracker.onLeave { log += ["leave", it] }
    
            when:
            def entryPoint1 = new Object()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 14 11:11:17 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/AttributeSelectionUtils.java

            for (int i = 0; i < extraAttributesArray.length; i++) {
                Attribute<?> extraAttribute = extraAttributesArray[i];
                // Some of these attributes might be weakly typed, e.g. coming as Strings from an
                // artifact repository. We always check whether the schema has a more strongly typed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/tasks/AbstractPublishToMaven.java

                .withPathSensitivity(PathSensitivity.NAME_ONLY);
    
            // Should repositories be able to participate in incremental?
            // At the least, they may be able to express themselves as output files
            // They *might* have input files and other dependencies as well though
            // Inputs: The credentials they need may be expressed in a file
            // Dependencies: Can't think of a case here
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top