Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 709 for Sall (0.05 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskCreationBuildOperationIntegrationTest.groovy

        }
    
        private void verifyTaskIds() {
            // all register ops have unique task id
            def allRegisterOps = buildOperations.all(RegisterTaskBuildOperationType)
            def allRegisterIds = allRegisterOps*.details*.taskId
            allRegisterIds == allRegisterIds as Set
    
            // all realize ops have unique task id
            def allRealizeOps = buildOperations.all(RealizeTaskBuildOperationType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

                // https://github.com/gradle/gradle-private/issues/3991
                System.out.println("Gradle runner not finished correctly (the build may be canceled). Fall back to KILL_ALL_GRADLE_PROCESSES.");
                executionMode = ExecutionMode.KILL_ALL_GRADLE_PROCESSES;
            }
        }
    
        private static void writePsOutputToFile(File rootProjectDir, List<String> psOutput) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutionsSpec.groovy

        }
    
        def "provides dependency substitution rule that orderly aggregates user specified rules"() {
            given:
            substitutions.all({ it.useTarget("1.0") } as Action)
            substitutions.all({ it.useTarget("2.0") } as Action)
            substitutions.all({ it.useTarget("3.0") } as Action)
            def details = Mock(DependencySubstitutionInternal)
    
            when:
            substitutions.ruleAction.execute(details)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsReportIntegrationTest.groovy

            option            | _
            '--all'           | _
            '--non-buildable' | _
        }
    
        def "consider components with no buildable binaries as non-buildables"() {
            given:
            buildScript simpleCppBuild()
            buildFile << '''
                model {
                    components {
                        main {
                            binaries.all {
                                buildable = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    By default, `outgoingVariants` prints information about all variants.
    It offers the optional parameter `--variant <variantName>` to select a single variant to display.
    It also accepts the `--all` flag to include information about legacy and deprecated configurations, or `--no-all` to exclude this information.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    For example, an organisation wants to resolve the `google-collections` -&gt; `guava` conflict resolution problem in all projects.
    It is possible to declare that certain module was replaced by other.
    This enables organisations to include the information about module replacement in the corporate plugin suite and resolve the problem holistically for all Gradle-powered projects in the enterprise.
    
    .Declaring a module replacement
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

            buildFile << """
    apply plugin: "cpp"
    
    model {
        components {
            hello(NativeLibrarySpec) {
                binaries.all {
                    cppCompiler.define 'ENABLE_GREETING'
                }
            }
            main(NativeExecutableSpec) {
                binaries.all {
                    lib \$('components.hello').static
                }
            }
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorTest.groovy

            1 * processor.completed(1, { it.resultType == null })
            0 * processor._
        }
    
        def "stopNow should fail on call"() {
            when:
            classProcessor.stopNow()
    
            then:
            UnsupportedOperationException uoe = thrown()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/plan/FinalizerGroup.java

                return state;
            }
    
            // All relevant finalized nodes have completed but none have executed
            // Can run the finalized node is reachable from an entry point
            if (delegate.isReachableFromEntryPoint()) {
                return Node.DependenciesState.COMPLETE_AND_SUCCESSFUL;
            }
    
            // All finalized nodes are complete but none executed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jul 01 16:25:48 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    `buildNeeded`::
    _Depends on_: `build`, and `buildNeeded` tasks in all projects that are dependencies in the `testRuntimeClasspath` configuration.
    +
    Performs a full build of the project and all projects it depends on.
    
    `buildDependents`::
    _Depends on_: `build`, and `buildDependents` tasks in all projects that have this project as a dependency in their `testRuntimeClasspath` configurations
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
Back to top