Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 630 for registerKey (0.42 sec)

  1. subprojects/core/src/main/java/org/gradle/configuration/internal/ListenerBuildOperationDecorator.java

         * @param registrationPoint the place that the listener was registered - used in the operation description / details
         * @param listener the listener
         */
        <T> T decorate(String registrationPoint, Class<T> cls, T listener);
    
        /**
         * Decorates a listener of unknown type.
         * <p>
         * @param registrationPoint the place that the listener was registered - used in the operation description / details
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/component/DefaultComponentTypeRegistry.java

            ComponentTypeRegistration registration = componentRegistrations.get(componentType);
            if (registration == null) {
                throw new IllegalArgumentException(String.format("Not a registered component type: %s.", componentType.getName()));
            }
            return registration;
        }
    
        private static class DefaultComponentTypeRegistration implements ComponentTypeRegistration {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensionContainerTest.groovy

            e.message == "Cannot add extension with name 'foo', as there is an extension already registered with that name."
    
            when:
            container.foo = 'other'
    
            then:
            IllegalArgumentException e2 = thrown()
            e2.message == "There's an extension registered with name 'foo'. You should not reassign it via a property setter."
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceRegistryBuilder.java

            this.strict = false;
            return this;
        }
    
        /**
         * Providing a scope makes the resulting {@link ServiceRegistry}
         * validate all registered services for being annotated with the given scope.
         * <p>
         * All registered services require the {@link org.gradle.internal.service.scopes.ServiceScope @ServiceScope}
         * annotation to be present and contain the given scope.
         *
         * @see #scope(Class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/SettingsSchemaAccessorsIntegrationTest.kt

            )
        }
    
        private
        fun withPluginSourceFile(fileName: String, text: String) {
            withFile("plugins/src/main/kotlin/$fileName", text)
        }
    
        @Test
        fun `can access extension registered by included build plugin`() {
            // when:
            val result = build("ok")
    
            // then:
            result.assertOutputContains("It's 42!")
    
            // when: plugin changes in an incompatible way
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SignOperation.java

            return this;
        }
    
        /**
         * The registered signatures.
         */
        public List<Signature> getSignatures() {
            return new ArrayList<Signature>(signatures);
        }
    
        /**
         * Returns the single registered signature.
         *
         * @return The signature.
         * @throws IllegalStateException if there is not exactly one registered signature.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceScopeValidator.java

            return String.format(
                "The service implementation '%s' is registered in the '%s' scope but does not declare it explicitly.\n" +
                    "The implementation appears to serve %s.\n" +
                    "Try the following:\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. pkg/kubelet/configmap/configmap_manager.go

    	}
    }
    
    // NewWatchingConfigMapManager creates a manager that keeps a cache of all configmaps
    // necessary for registered pods.
    // It implements the following logic:
    //   - whenever a pod is created or updated, we start individual watches for all
    //     referenced objects that aren't referenced from other registered pods
    //   - every GetObject() returns a value from local cache propagated via watches
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. pkg/kubelet/secret/secret_manager.go

    	}
    }
    
    // NewWatchingSecretManager creates a manager that keeps a cache of all secrets
    // necessary for registered pods.
    // It implements the following logic:
    //   - whenever a pod is created or updated, we start individual watches for all
    //     referenced objects that aren't referenced from other registered pods
    //   - every GetObject() returns a value from local cache propagated via watches
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/AttributesSchemaInternal.java

        /**
         * Returns the list of custom {@link ResolutionFailureDescriber}s registered on this schema for the given failure type.
         *
         * @param failureType The type of failure to describe
         * @param <FAILURE> The type of failure to describe
         * @return The list of custom describers registered on this schema for the given failure type
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top