Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 709 for Sall (0.03 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/util/internal/MultithreadedTestRule.java

     * #run(groovy.lang.Closure)} methods to execute test code in other threads. You can use {@link #waitForAll()} to wait
     * for all test threads to complete. In addition, the test tear-down method blocks until all test threads have stopped
     * and ensures that no exceptions were thrown in any test threads.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTaskSpec.groovy

            1 * closure.call()
            0 * closure._
        }
    
        def "notifies closure after test"() {
            def closure = Mock(Closure)
    
            given:
            expectTestPasses()
    
            task.afterTest(closure)
    
            when:
            task.executeTests()
    
            then:
            _ * closure.maximumNumberOfParameters >> 0
            1 * closure.call()
            0 * closure._
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParser.java

            } else if (expression.getType() != IncludeType.OTHER) {
                // Body is a simple expression, including a macro function call with no arguments
                macros.add(new MacroWithSimpleExpression(macroName, expression.getType(), expression.getValue()));
            } else {
                // Discard the body when the expression is not resolvable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

             * All modifying operations call this method prior to {@link #onChange(Object, Object)}, {@link #onRemove(Object)} or {@link #onClear()}.
             * <p>
             * When this method is called because of the modifying operation, the state of the observed Properties object is undefined for the duration of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    // macro invocations for a particular test case and generators
    // obtained from INSTANTIATE_TEST_CASE_P macro invocations for that
    // test case. It registers tests with all values generated by all
    // generators when asked.
    template <class TestCase>
    class ParameterizedTestCaseInfo : public ParameterizedTestCaseInfoBase {
     public:
      // ParamType and GeneratorCreationFunc are private types but are required
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/taskgraph/DefaultTaskExecutionGraphSpec.groovy

            taskGraph.beforeTask(action)
            taskExecutionListeners.source.beforeExecute(a)
            taskExecutionListeners.source.beforeExecute(b)
    
            then:
            1 * closure.call(a)
            1 * closure.call(b)
            1 * action.execute(a)
            1 * action.execute(b)
        }
    
        def "notifies after task listeners"() {
            def closure = Mock(Closure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *  - CUE_NOMEMORY if a memory allocation failed.
     *
     *  @param strName Name for the new test suite (non-NULL).
     *  @param pInit   Initialization function to call before running suite.
     *  @param pClean  Cleanup function to call after running suite.
     *  @return A pointer to the newly-created suite (NULL if creation failed)
     */
    
    CU_EXPORT 
    CU_ErrorCode CU_set_suite_active(CU_pSuite pSuite, CU_BOOL fNewActive);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

            stableClasspath = objectFactory.fileCollection();
            stableClasspath.from(new Callable<Object>() {
                @Override
                public Object call() {
                    return getClasspath();
                }
            });
            forkOptions = getForkOptionsFactory().newDecoratedJavaForkOptions();
            forkOptions.setEnableAssertions(true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/plugin/use/internal/PluginUseScriptBlockMetadataCompiler.java

                                    if (!call.isImplicitThis()) {
                                        restrict(call, formatErrorMessage(BASE_MESSAGE));
                                    } else {
                                        ConstantExpression lineNumberExpression = new ConstantExpression(call.getLineNumber(), true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 28 01:30:32 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

         *
         * @param callable The callable to call
         * @param <T> Callable's return type
         * @return The value returned by {@link Callable#call()}
         */
        @Nullable
        public static <T> T uncheckedCall(Callable<T> callable) {
            try {
                return callable.call();
            } catch (Exception e) {
                throw UncheckedException.throwAsUncheckedException(e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top