Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 223 for Sall (0.04 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

            configurationCacheRun(":a:thing")
    
            then:
            with(fixture.all(LoadBuildBuildOperationType)) {
                size() == 2
                with(get(0)) {
                    details.buildPath == ':'
                }
                with(get(1)) {
                    details.buildPath == ':buildSrc'
                }
            }
            with(fixture.all(LoadProjectsBuildOperationType)) {
                size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

            assertSuggestsViewingDocs("Use the dependencyInsight report with the --all-variants option to view all variants of the ambiguous dependency.  This report is described at https://docs.gradle.org/${GradleVersion.current().version}/userguide/viewing_debugging_dependencies.html#sec:identifying_reason_dependency_selection.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            when:
            inDirectory("impl")
            run("build")
    
            then:
            fixture.assertProjectsConfigured(':', ':impl', ':api')
        }
    
        def "name matching execution from root evaluates all projects"() {
            createDirs("api", "impl")
            settingsFile << "include 'api', 'impl'"
            buildFile << "task foo"
    
            when:
            run("foo")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    Init Plugin :: An init plugin is a plugin that is applied in the `init.gradle` or `init.gradle.kts` file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

            try {
                module.maybeUpdateSelection(resolveState.getConflictTracker());
            } catch (ModuleVersionResolveException e) {
                // Ignore: All selectors failed, and will have failures recorded
                return;
            }
    
            // If no current selection for module, just use the candidate.
            if (currentSelection == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

                }
            }
            apply type: Rules
            tasks.withType(OverruleTask) { it.text = "actionWoman I'm the real commander" }
            tasks.withType(ClimbTask).all { it.steps = 14 }
            tasks.matching { it.name.contains('jump') }.all { it.height = 7 }
    
    
            //It should be possible to reference the tasks without having to do tasks.realize()
            assert overruleTask.text == "actionWoman I'm the real commander"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    [[sub:viewing_toolchains]]
    === Viewing and debugging toolchains
    
    Gradle can display the list of all detected toolchains including their metadata.
    
    For example, to show all toolchains of a project, run:
    
    ```
    gradle -q javaToolchains
    ```
    
    .Output of **`gradle -q javaToolchains`**
    ----
    > gradle -q javaToolchains
    
     + Options
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

                                )
                            )
                        )
                    ]
                )""".trimIndent()
            results.assert(expected)
        }
    
        @Test
        fun `parses call chain`() {
            val results = parse("f(1).g(2).h(3)")
    
            val expected = """
                FunctionCall [indexes: 10..14, line/column: 1/11..1/15, file: test] (
                    name = h
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailure.java

                } else {
                    unmatched.add(problem.description);
                }
            }
            if (!unmatched.isEmpty()) {
                failureOnUnexpectedOutput(String.format("Not all failure descriptions match\nExpected: All failure descriptions are %s\n     but: unmatched failure descriptions %s", matcher, unmatched));
            }
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/model/NamedObjectInstantiator.java

                //
                // Add constructor
                //
                publicMethod(CONSTRUCTOR_NAME, RETURN_VOID_FROM_STRING, methodVisitor -> new MethodVisitorScope(methodVisitor) {{
                    // Call this.super()
                    _ALOAD(0);
                    _INVOKESPECIAL(superClass, CONSTRUCTOR_NAME, RETURN_VOID);
                    // Set this.name = param1
                    _ALOAD(0);
                    _ALOAD(1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top