Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 382 for registered_ (0.24 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeDeclarationIntegrationTest.groovy

            failure.assertHasCause("Type 'org.gradle.test.SoftwareTypeImplPlugin' is registered as a software type plugin but does not expose a software type.")
        }
    
        def 'sensible error when a software type plugin is registered that exposes multiple software types'() {
            given:
            withSoftwareTypePluginThatExposesMultipleSoftwareTypes().prepareToExecute()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 19 16:59:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    When a task is registered, it is known to the build.
    It can be configured, and references to it can be passed around, but the task object itself has not been created, and its actions have not been executed.
    The registered task will remain in this state until something in the build needs the instantiated task object.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerTest.groovy

            def otherObj = container.register("otherObj") {
                prop = 'value'
            }
            then:
            someObj.present
            otherObj.get().prop == 'value'
        }
    
        def "can find registered objects"() {
            when:
            container.register("someObj")
            container.register("otherObj") {
                prop = 'value'
            }
            def someObj = container.named("someObj")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerInServiceRegistryTest.groovy

            then:
            0 * _
    
            when:
            broadcast.something("12")
    
            then:
            1 * listener.something("12")
            0 * _
        }
    
        def "creates stateful listener registered after broadcaster is created"() {
            def created = Mock(Runnable)
            def listener = Mock(TestListener)
    
            when:
            def broadcast = listenerManager.getBroadcaster(TestListener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            "${MapProperty.name}<String, Number>" | "objects.mapProperty(String, Number); v.set([a: 12])" | "objects.mapProperty(String, Number); v.set([a: 10])"        | null
        }
    
        def "null input properties registered via TaskInputs.property are not allowed"() {
            expectReindentedValidationMessage()
            buildFile << """
                task test {
                    inputs.property("input", { null })
                    doLast {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker_test.go

    				if forget != nil {
    					t.Errorf("unexpected watch registered: %#v", watchTracker.watchCount)
    				}
    				return
    			}
    
    			if forget == nil {
    				t.Errorf("watch should be registered, got: %v", forget)
    				return
    			}
    			if count := watchTracker.watchCount[*testCase.expected]; count != 1 {
    				t.Errorf("unexpected watch registered: %#v", watchTracker.watchCount)
    			}
    			forget()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 03 14:02:51 UTC 2021
    - 10.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

    /*-------------------------------------------------------------------- 
     * Functions for running registered tests and suites.
     *--------------------------------------------------------------------*/
    CU_EXPORT CU_ErrorCode CU_run_all_tests(void);
    /**< 
     *  Runs all tests in all suites registered in the test registry.
     *  The suites are run in the order registered in the test registry.
     *  For each suite, it is first checked to make sure it is active.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

       private: \
        typedef CaseName<gtest_TypeParam_> TestFixture; \
        typedef gtest_TypeParam_ TypeParam; \
        virtual void TestBody(); \
      }; \
      bool gtest_##CaseName##_##TestName##_registered_ GTEST_ATTRIBUTE_UNUSED_ = \
          ::testing::internal::TypeParameterizedTest< \
              CaseName, \
              ::testing::internal::TemplateSel< \
                  GTEST_TEST_CLASS_NAME_(CaseName, TestName)>, \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  9. schema/schema_test.go

    		{Name: "Name", DBName: "name", BindNames: []string{"Name"}, DataType: schema.String},
    		{Name: "Birthday", DBName: "birthday", BindNames: []string{"Birthday"}, DataType: schema.Time},
    		{Name: "RegisteredAt", DBName: "registered_at", BindNames: []string{"RegisteredAt"}, DataType: schema.Time},
    		{Name: "DeletedAt", DBName: "deleted_at", BindNames: []string{"DeletedAt"}, DataType: schema.Time},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:31:23 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

       private: \
        typedef CaseName<gtest_TypeParam_> TestFixture; \
        typedef gtest_TypeParam_ TypeParam; \
        virtual void TestBody(); \
      }; \
      bool gtest_##CaseName##_##TestName##_registered_ GTEST_ATTRIBUTE_UNUSED_ = \
          ::testing::internal::TypeParameterizedTest< \
              CaseName, \
              ::testing::internal::TemplateSel< \
                  GTEST_TEST_CLASS_NAME_(CaseName, TestName)>, \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top