Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 74 for _Decorated (0.18 sec)

  1. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    These methods are then decorated and modified in a way that our generated dynamic Groovy interceptors are then correctly called for appropriate methods/properties at runtime.
    Interceptor that are called at runtime then check for the correct type and based on that invoke decorated method or fallback to original.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformValuesInjectionIntegrationTest.groovy

            failure.assertHasDescription('A problem occurred evaluating root project')
            failure.assertHasCause('Could not create an instance of type MakeGreen$Parameters.')
            failure.assertHasCause('Could not generate a decorated class for type MakeGreen.Parameters.')
            failure.assertHasCause("Cannot use @${annotation.simpleName} annotation on method Parameters.getBad().")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 37.7K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/events.md

    And the part after the `yield` will be executed **after** the application has finished.
    
    ### Async Context Manager
    
    If you check, the function is decorated with an `@asynccontextmanager`.
    
    That converts the function into something called an "**async context manager**".
    
    ```Python hl_lines="1  13"
    {!../../../docs_src/events/tutorial003.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. docs/en/docs/features.md

        * You can have deeply **nested JSON** objects and have them all validated and annotated.
    * **Extensible**:
        * Pydantic allows custom data types to be defined or you can extend validation with methods on a model decorated with the validator decorator.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentModelIntegrationTest.groovy

        }
    
        def "componentSpecContainer is groovy decorated when used in rules"() {
            given:
            withMainSourceSet()
            buildFile << '''
                class ComponentSpecContainerRules extends RuleSource {
                    @Mutate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// updated and before it is decorated, optional.
    	AfterUpdate AfterUpdateFunc
    
    	// DeleteStrategy implements resource-specific behavior during deletion.
    	DeleteStrategy rest.RESTDeleteStrategy
    	// AfterDelete implements a further operation to run after a resource is
    	// deleted and before it is decorated, optional.
    	AfterDelete AfterDeleteFunc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter.go

    // decorateTable takes a table and attempts to add label columns and the
    // namespace column. It will fill empty columns with nil (if the object
    // does not expose metadata). It returns an error if the table cannot
    // be decorated.
    func decorateTable(table *metav1.Table, options PrintOptions) error {
    	width := len(table.ColumnDefinitions) + len(options.ColumnLabels)
    	if options.WithNamespace {
    		width++
    	}
    	if options.ShowLabels {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 16.7K bytes
    - Viewed (0)
  8. tests/test_application.py

                                "description": "Successful Response",
                                "content": {"application/json": {"schema": {}}},
                            }
                        },
                        "summary": "Non Decorated Route",
                        "operationId": "non_decorated_route_non_decorated_route_get",
                    }
                },
                "/text": {
                    "get": {
                        "responses": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 52.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

     *
     * <p>Uses some deep hacks to avoid some expensive reflections and the use of exceptions when a particular property or method cannot be found,
     * for example, when a decorated object is used as the delegate of a configuration closure. Also uses some hacks to insert some customised type
     * coercion and error reporting. Enjoy.
     */
    public class BeanDynamicObject extends AbstractDynamicObject {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensibleDynamicObjectTest.java

            // This doesn't work.
            // It used to because at the bottom of the hierarchy chain the object implemented methodMissing().
            // However, our normal “decorated” classes do not do this so it is not realistic.
    
            // Groovy does something very strange here.
            // For some reason (probably because the class is Java), it won't employ any dynamism.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 33.7K bytes
    - Viewed (0)
Back to top