Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 205 for light (0.07 sec)

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

                        val unfinishedTasks = shutdownNow()
                        logger.warn(
                            "Configuration cache report is taking too long to write... "
                                + "The build might finish before the report has been completely written."
                        )
                        logger.info("Unfinished tasks: {}", unfinishedTasks)
                    }
                }
    
                private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

                connection.dispatch(build);
                result = connection.receive();
            } catch (StaleDaemonAddressException e) {
                LOGGER.debug("Connected to a stale daemon address.", e);
                // We might fail hard here on the assumption that something weird happened to the daemon.
                // However, since we haven't yet started running the build, we can recover by just trying again.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. subprojects/build-events/src/main/java/org/gradle/internal/build/event/DefaultBuildEventsListenerRegistry.java

            }
    
            @Override
            protected void handle(Pair<BuildOperationDescriptor, OperationFinishEvent> message) {
                listenerProvider.get().finished(message.left, message.right);
            }
    
            @Override
            public List<Object> getListeners() {
                return ImmutableList.of(this);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:34:01 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

                    "This behavior has been deprecated. This will fail with an error in Gradle 9.0. " +
                    "Resolving relative file paths might yield unexpected results, there is no single clear location it would make sense to resolve against. " +
                    "Configure an absolute path to a Java executable instead. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    * Your build and the plugins you depend on might require changes to fulfill the <<configuration_cache#config_cache:requirements, requirements>>. +
    * IDE imports and syncs do not use the configuration cache.
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

            this.calculationState = new CalculationState<>(displayName, supplier, projectLeaseRegistry, defaultContext);
        }
    
        /**
         * Creates a container for a value that has already been produced. For example, the value might have been restored from the configuration cache.
         *
         * Note: this is package protected. Use {@link CalculatedValueContainerFactory} instead.
         */
        CalculatedValueContainer(DisplayName displayName, T value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/LoggingDeprecatedFeatureHandler.java

            // Even when two deprecation messages are emitted from the same location,
            // the stack traces at very bottom might be different due to thread pool scheduling.
            appendLogTraceIfNecessary(message, callStack, 0, 10);
            if (loggedMessages.add(message.toString())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/SourceParseAndResolutionTest.groovy

            """
    
            expect:
            resolve() == [header]
        }
    
        def "resolves macro function with multiple args that concatenates empty right hand side to produce macro"() {
            given:
            sourceFile << """
                #define HEADER_NAME "hello.h"
                #define HEADER(X, Y) X ## Y
                #include HEADER(HEADER_NAME,)
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/jacoco_plugin.adoc

    [[sec:jacoco_specific_task_configuration]]
    == JaCoCo specific task configuration
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/DefaultProjectSchemaProvider.kt

    
    private
    fun NamedDomainObjectSchema.toFirstKotlinPublicOrSelf() =
        publicType.concreteClass.let { schemaType ->
            // Because a public Java class might not correspond necessarily to a
            // public Kotlin type due to Kotlin `internal` semantics, we check
            // whether the public Java class is also the first public Kotlin type,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top