Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 261 for Sall (0.14 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfo.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A means to expose Daemon information _specifically_ for the purpose of build scans. The associated plugin obtains this via the service registry and queries all values when it is applied.
     *
     * This API is a contract with the plugin. Any binary incompatible changes will require changes to the plugin.
     */
    @UsedByScanPlugin
    @ServiceScope(Scope.Global.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTransformNodeIdBuildOperationIntegrationTest.groovy

                [(color): Iterables.getOnlyElement(nodeIds)]
            }
        }
    
        private Map<String, List<Map<String, ?>>> getTransformStepIdentities() {
            def ops = buildOperations.all(CalculateTaskGraphBuildOperationType)
            def identities = ops.collect { op ->
                def plannedNodes = op.result.executionPlan as List<Map<String, ?>>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/NonNormalizedIdentityImmutableTransformExecution.java

            // We do this because external artifact transforms typically need to identify themselves redundantly many times during a build.
            // Once we migrate to all-scheduled transforms we should consider if we can avoid having this optimization and use only normalized inputs.
            //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/provider/MapProperty.java

         */
        void put(K key, Provider<? extends V> providerOfValue);
    
        /**
         * Adds all entries from another {@link Map} to the property value.
         *
         * @param entries a {@link Map} containing the entries to add
         */
        void putAll(Map<? extends K, ? extends V> entries);
    
        /**
         * Adds all entries from another {@link Map} to the property value.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:25:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/util/RerunFlakyTest.kt

        val testNameParameterName = "testName"
        val testTaskOptionsParameterName = "testTaskOptions"
        val daemon = true
        applyDefaultSettings(os, arch, buildJvm = BuildToolBuildJvm, timeout = 0)
    
        // Show all failed tests here, since that is what we are interested in
        failureConditions.supportTestRetry = false
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/SubtypingTest.kt

                """
                addSuperInterface(notASub())
                addSuperClass(notASub())
                """.trimIndent()
            )
    
            assertEquals(2, result.errors.size)
            assertTrue { result.errors.all { it.errorReason is ErrorReason.UnresolvedFunctionCallSignature } }
        }
    }
    
    
    private
    abstract class TopLevelForSubtyping {
        @get:Restricted
        abstract var superClassProp: SuperClass
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:02 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentControl.java

            try {
                return ClassLoader.getSystemClassLoader().loadClass(agentClassName);
            } catch (ClassNotFoundException e) {
                // This typically means that the agent is not loaded at all.
                // For now, this happens when running in a no-daemon mode, or when the Gradle distribution is not available.
                LoggerFactory.getLogger(AgentControl.class).debug("Agent {} is not loaded", agentClassName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/configuration/ScriptPluginFactorySelector.java

        }
    
        private ScriptPluginFactory scriptPluginFactoryFor(String fileName) {
            for (ScriptingLanguage scriptingLanguage : ScriptingLanguages.all()) {
                if (fileName.endsWith(scriptingLanguage.getExtension())) {
                    String provider = scriptingLanguage.getProvider();
                    if (provider != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 07:44:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerConsoleInputEndUserIntegrationTest.groovy

                    testImplementation gradleTestKit()
                }
    
                testing {
                    suites {
                        test {
                            targets {
                                all {
                                    testTask.configure {
                                        if (JavaVersion.current().isJava9Compatible()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/CaptureOutputsAfterExecutionStep.java

    import org.gradle.internal.time.Time;
    import org.gradle.internal.time.Timer;
    
    import java.time.Duration;
    import java.util.Optional;
    
    /**
     * Capture the outputs of the unit of work after its execution finished.
     *
     * All changes to the outputs must be done at this point, so this step needs to be around anything
     * which uses an {@link ChangingOutputsContext}.
     */
    // TODO Find better names for Result types
    @SuppressWarnings("SameNameButDifferent")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top