Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 215 for Sall (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

         * </p>
         *
         * <p>
         * This method is exposed to the command line interface. Example usage:
         * <pre>gradle dependencyInsight --all-variants</pre>
         *
         * @since 7.5
         */
        @Option(option = "all-variants", description = "Show all variants of each dependency")
        @Incubating
        @Internal
        public Property<Boolean> getShowingAllVariants() {
            return showingAllVariants;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/test/groovy/org/gradle/StartParameterTest.groovy

        }
    
        // Previously StartParameter's toString got wildly out of sync with the state inside of it
        // Ensure that all state is represented in the toString, so it's more useful for debugging
        // In the future StartParameter should be replaced with a `record` so this doesn't need to be checked
        void "all state is represented in toString"() {
            given:
            def parameter = new StartParameter()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. JavadocStyleGuide.md

    ```
    
    ## 1.3 Code blocks and snippets
    
    `<pre>` is the default HTML tag for preformatted text.
    All code blocks and multi-line snippets should be wrapped in `<pre>{@code ...... }</pre>` at minimum.
    
    Code blocks can be optionally formatted and highlighted using [`highlight.js`](https://highlightjs.org/) with the `<code>` tag.
    For this, all code blocks and multi-line snippets should be wrapped in `<code class="language-*****"></code>`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top