Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for _Decorated (0.8 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            try {
                newInstance(AbstractMethodBean.class);
                fail();
            } catch (ClassGenerationException e) {
                assertThat(e.getMessage(), equalTo("Could not generate a decorated class for type AsmBackedClassGeneratorTest.AbstractMethodBean."));
                assertThat(e.getCause().getMessage(), equalTo("Cannot have abstract method AbstractMethodBean.implementMe()."));
            }
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                    return visitor;
                } else {
                    return new Visitor() {
                        @Override
                        public void visit(Service service) {
                            // Ignore the decorated service
                            if (service != decorates) {
                                visitor.visit(service);
                            }
                        }
                    };
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

            } catch (ClassGenerationException e) {
                throw e;
            } catch (Throwable e) {
                TreeFormatter formatter = new TreeFormatter();
                formatter.node("Could not generate a decorated class for type ");
                formatter.appendType(type);
                formatter.append(".");
                throw new ClassGenerationException(formatter.toString(), e);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         * system defaults will be used.
         *
         * Most applications should not call this method, and instead use the system defaults. Those
         * classes include special optimizations that can be lost if the implementations are decorated.
         *
         * If necessary, you can create and configure the defaults yourself with the following code:
         *
         * ```java
         * TrustManagerFactory trustManagerFactory = TrustManagerFactory.getInstance(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
Back to top