Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,556 for Sall (0.04 sec)

  1. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/RootOfNestedBuildTree.java

            ServiceRegistry services = gradle.getServices();
            BuildOperationRunner buildOperationRunner = services.get(BuildOperationRunner.class);
            return buildOperationRunner.call(new CallableBuildOperation<T>() {
                @Override
                public T call(BuildOperationContext context) {
                    T result = action.apply(buildTreeLifecycleController);
                    context.setResult(new RunNestedBuildBuildOperationType.Result() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:17:50 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. .github/PULL_REQUEST_TEMPLATE.md

    - [ ] [Review Contribution Guidelines](https://github.com/gradle/gradle/blob/master/CONTRIBUTING.md).
    - [ ] Make sure that all commits are [signed off](https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---signoff) to indicate that you agree to the terms of [Developer Certificate of Origin](https://developercertificate.org/).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 22:36:19 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/NamedDomainObjectContainerDelegate.kt

            delegate.removeAll(elements)
    
        override fun add(element: T): Boolean =
            delegate.add(element)
    
        override fun all(action: Action<in T>) =
            delegate.all(action)
    
        override fun all(action: Closure<Any>) =
            delegate.all(action)
    
        override fun register(name: String, configurationAction: Action<in T>): NamedDomainObjectProvider<T> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionFailureIntegrationTest.groovy

        def "unfriendly behavior of command line parsing"() {
            when:
            run '-all'
    
            then:
            "should fail with a decent error, not internal error (applies to all CommandLineArgumentExceptions)"
            "should complain that there's no '-all' option"
    
            when:
            run 'tasks', '-refresh-dependencies'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SignOperation.java

            }
        }
    
        /**
         * All of the files that will be signed by this operation.
         */
        public FileCollection getFilesToSign() {
            return newSignatureFileCollection(input -> input.getToSign());
        }
    
        /**
         * All of the signature files that will be generated by this operation.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_signing.adoc

    // limitations under the License.
    
    [[publishing_maven:signing]]
    = Signing artifacts
    
    The <<signing_plugin.adoc#signing_plugin, Signing Plugin>> can be used to sign all artifacts and metadata files that make up a publication, including Maven POM files and Ivy module descriptors. In order to use it:
    
    1. Apply the Signing Plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestResultsProvider.java

    public interface TestResultsProvider extends Closeable {
        /**
         * Writes the output of the given test to the given writer. This method must be called only after {@link #visitClasses(org.gradle.api.Action)}.
         *
         * Writes all output for the test class.
         */
        void writeAllOutput(long classId, TestOutputEvent.Destination destination, Writer writer);
    
        void writeNonTestOutput(long classId, TestOutputEvent.Destination destination, Writer writer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/annotations/AllFeaturesShouldBeAnnotated.groovy

    import spock.lang.Ignore
    
    import java.lang.annotation.ElementType
    import java.lang.annotation.Retention
    import java.lang.annotation.RetentionPolicy
    import java.lang.annotation.Target
    
    /**
     * Make sure all feature methods are annotated by {@link @RunFor}
     *
     * @see {@link @RunFor}
     */
    @Target([ElementType.TYPE])
    @Retention(RetentionPolicy.RUNTIME)
    @ExtensionAnnotation(AllFeaturesShouldBeAnnotatedByRunForExtension.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGDryRunFilteringIntegrationTest.groovy

                testing {
                    suites {
                        dryRunTest(JvmTestSuite) {
                            ${configureTestFramework}
    
                            targets {
                                all {
                                    testTask.configure {
                                        dryRun.set(true)
                                    }
                                }
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleBuildResultFunctionalTest.groovy

                }
                task all { dependsOn noActions, notUpToDate, upToDate }
            """
    
            when:
            succeeds('all')
    
            then:
            result.formattedOutput.contains(buildSuccessful.output)
            result.plainTextOutput.matches """(?s).*
    BUILD SUCCESSFUL in [ \\dms]+
    2 actionable tasks: 2 executed
    .*"""
    
            when:
            succeeds('all')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top