Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 190 for registry_ (0.09 sec)

  1. 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)
  2. subprojects/core/src/test/groovy/org/gradle/initialization/DefaultProjectDescriptorRegistryTest.java

            DefaultProjectDescriptor project = new DefaultProjectDescriptor(null, "name", TEST_DIR, registry, FILE_RESOLVER);
    
            registry.changeDescriptorPath(Path.path(":"), Path.path(":newPath"));
            assertThat(registry.getRootProject(), nullValue());
            assertThat(registry.getProject(":"), nullValue());
            assertThat(registry.getProject(":newPath"), sameInstance(project));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 08 03:33:31 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/RuleExtractorUtils.java

            ModelAction action = context.contextualize(ruleAction);
            ModelRegistry registry = context.getRegistry();
            switch (ruleApplicationScope) {
                case SELF:
                    registry.configure(role, action);
                    break;
                case DESCENDANTS:
                    registry.configureMatching(new NonReferenceDescendantsSpec(context.getScope()), role, action);
                    break;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/AbstractFileWatcherRegistryFactory.java

     */
    
    package org.gradle.internal.watch.registry.impl;
    
    import net.rubygrapefruit.platform.file.FileWatchEvent;
    import net.rubygrapefruit.platform.file.FileWatcher;
    import net.rubygrapefruit.platform.internal.jni.AbstractNativeFileEventFunctions;
    import org.gradle.internal.watch.registry.FileWatcherProbeRegistry;
    import org.gradle.internal.watch.registry.FileWatcherRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WindowsFileWatcherRegistryFactory.java

    import org.gradle.internal.watch.registry.FileWatcherProbeRegistry;
    import org.gradle.internal.watch.registry.FileWatcherUpdater;
    
    import java.util.concurrent.BlockingQueue;
    import java.util.function.Predicate;
    
    import static org.gradle.internal.watch.registry.impl.HierarchicalFileWatcherUpdater.FileSystemLocationToWatchValidator.NO_VALIDATION;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServiceRegistry.java

    @ServiceScope(Scope.Global.class)
    public interface GradleUserHomeScopeServiceRegistry {
        /**
         * Locates the shared services to use for the given Gradle user home dir. The returned registry also includes global services.
         *
         * <p>The caller is responsible for releasing the registry when it is finished using it by calling {@link #release(ServiceRegistry)}.</p>
         */
        ServiceRegistry getServicesFor(File gradleUserHomeDir);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/java/org/gradle/internal/deployment/RunApplication.java

            this.mainClassName = mainClassName;
        }
    
        @TaskAction
        public void startApplication() {
            DeploymentRegistry registry = getDeploymentRegistry();
            JavaApplicationHandle handle = registry.get(getPath(), JavaApplicationHandle.class);
            if (handle == null) {
                JavaExecHandleBuilder builder = getExecActionFactory().newJavaExec();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top