Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 234 for registry_ (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/StartParameterBuildOptions.java

    import org.gradle.internal.buildoption.ListBuildOption;
    import org.gradle.internal.buildoption.Origin;
    import org.gradle.internal.buildoption.StringBuildOption;
    import org.gradle.internal.watch.registry.WatchMode;
    
    import java.io.File;
    import java.time.Duration;
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    import java.util.stream.Collectors;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 22:47:53 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

            ProjectInternal projectInternal = (ProjectInternal) project;
            ProjectPublicationRegistry registry = projectInternal.getServices().get(ProjectPublicationRegistry.class);
            extension.getPlugins().all(pluginDeclaration -> registry.registerPublication(projectInternal, new LocalPluginPublication(pluginDeclaration)));
        }
    
        private static void applyDependencies(Project project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultFlatDirArtifactRepository.java

                // No-op
            }
    
            @Override
            public RepositoryResourceAccessor withImplicitInputRecorder(ImplicitInputRecorder registrar) {
                // Service calls have no effect, no need to register them
                return this;
            }
    
            @Override
            public boolean isUpToDate(String s, @Nullable Long oldValue) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. subprojects/build-events/src/main/java/org/gradle/internal/build/event/DefaultBuildEventsListenerRegistry.java

        }
    
        private class ListenerCleanup extends BuildAdapter {
            @SuppressWarnings("deprecation")
            @Override
            public void buildFinished(BuildResult result) {
                // TODO - maybe make the registry a build scoped service
                if (!((GradleInternal) result.getGradle()).isRootBuild()) {
                    // Stop only when the root build completes
                    return;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:34:01 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/internal/DependentComponentsUtils.java

            return registry.find(path, clazz);
        }
    
        @Nullable
        private static <T> T modelElement(ModelRegistry registry, String path, ModelType<T> modelType) {
            return registry.find(path, modelType);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/DaemonMessageSerializer.java

            DefaultSerializerRegistry registry = new DefaultSerializerRegistry();
    
            // Lifecycle messages
            registry.register(Build.class, new BuildSerializer(buildActionSerializer));
            registry.register(Cancel.class, new CancelSerializer());
            registry.register(DaemonUnavailable.class, new DaemonUnavailableSerializer());
            registry.register(BuildStarted.class, new BuildStartedSerializer());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs-asciidoctor-extensions-base/src/main/java/org/gradle/docs/asciidoctor/GradleDocsAsciidoctorExtensionRegistry.java

            JavaExtensionRegistry registry = asciidoctor.javaExtensionRegistry();
    
            registry.docinfoProcessor(MetadataDocinfoProcessor.class);
            registry.docinfoProcessor(new MultiLanguageSamplesDocinfoProcessor());
    
            registry.includeProcessor(GuidesContributeIncludeProcessor.class);
            registry.includeProcessor(SampleIncludeProcessor.class);
    
            registry.treeprocessor(ExampleSelfLinkProcessor.class);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/rules/DefaultRuleAwarePolymorphicNamedEntityInstantiator.java

        public DefaultRuleAwarePolymorphicNamedEntityInstantiator(PolymorphicNamedEntityInstantiator<T> instantiator, RuleAwareNamedDomainObjectFactoryRegistry<T> registry) {
            this.instantiator = instantiator;
            this.registry = registry;
        }
    
        @Override
        public <S extends T> S create(String name, Class<S> type) {
            return instantiator.create(name, type);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.registry;
    
    import com.google.common.base.Joiner;
    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.ImmutableMultimap;
    import com.google.common.collect.Iterables;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  10. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientHelper.java

        @FunctionalInterface
        @ServiceScope(Scope.Global.class)
        public interface Factory {
            HttpClientHelper create(HttpSettings settings);
    
            /**
             * Method should only be used for DI registry and testing.
             * For other uses of {@link HttpClientHelper}, inject an instance of {@link Factory} to create one.
             */
            static Factory createFactory(DocumentationRegistry documentationRegistry) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top