Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 74 for _Decorated (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/wrapper.go

    	"net/http"
    )
    
    // UserProvidedDecorator represensts a user (client that uses this package)
    // provided decorator that wraps an inner http.ResponseWriter object.
    // The user-provided decorator object must return the inner (decorated)
    // http.ResponseWriter object via the Unwrap function.
    type UserProvidedDecorator interface {
    	http.ResponseWriter
    
    	// Unwrap returns the inner http.ResponseWriter object associated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache(because = "build listener")
        def 'listeners that implement multiple interfaces are decorated correctly'() {
            given:
            def addGradleListeners = { String source ->
                """
                class ComboListener implements BuildListener, ProjectEvaluationListener, TaskExecutionGraphListener {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/ImmutableActionSet.java

     *
     * Actions are executed in order of insertion. Duplicates are ignored. Execution stops on the first failure.
     *
     * Implements {@link InternalListener} as components themselves should be decorated if appropriate.
     *
     * @param <T> the type of the subject of the action
     */
    public abstract class ImmutableActionSet<T> implements Action<T>, InternalListener {
        private static final int FEW_VALUES = 5;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentBinariesIntegrationTest.groovy

                    }
                }
             }
            apply plugin: MyComponentBinariesPlugin
    """
        }
    
        def "subject of @ComponentBinaries rule is Groovy decorated"() {
            buildFile << """
                class GroovyComponentBinariesRules extends RuleSource {
                    @ComponentBinaries
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ExecutionGlobalServices.java

                    "kotlin"
                ),
                ImmutableSet.of(
                    // Used by a nested bean with action in a task, example:
                    // `NestedInputIntegrationTest.implementation of nested closure in decorated bean is tracked`
                    ConfigureUtil.WrappedConfigureAction.class,
                    // DefaultTestTaskReports used by AbstractTestTask extends this class
                    DefaultNamedDomainObjectSet.class,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/DefaultVariantTransformRegistryTest.groovy

            e.cause.message == 'Cannot query parameters for artifact transform without parameters.'
        }
    
        def "delegates are DSL decorated but not extensible when registering with config object"() {
            def registration
    
            when:
            registry.registerTransform(TestTransform) {
                it.from.attribute(TEST_ATTRIBUTE, "FROM")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 11:18:50 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderUtils.java

         * which means, we can only use this API safely in the decorating scenario where the decorated class acts as the lookup object.
         *
         * Otherwise, we have to use {@link MethodHandle} to invoke {@link ClassLoader#defineClass}. Fortunately, this is the rare case.
         */
        private interface ClassDefiner {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/LinkedHashMultimap.java

      }
    
      /**
       * {@inheritDoc}
       *
       * <p>Creates a decorated insertion-ordered set that also keeps track of the order in which
       * key-value pairs are added to the multimap.
       *
       * @param key key to associate with values in the collection
       * @return a new decorated set containing a collection of values for one key
       */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/LinkedHashMultimap.java

      }
    
      /**
       * {@inheritDoc}
       *
       * <p>Creates a decorated insertion-ordered set that also keeps track of the order in which
       * key-value pairs are added to the multimap.
       *
       * @param key key to associate with values in the collection
       * @return a new decorated set containing a collection of values for one key
       */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top