Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 79 for registry_ (0.11 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/validation/ValidationServicesFixture.java

    import org.gradle.internal.service.scopes.ExecutionGlobalServices;
    
    public class ValidationServicesFixture {
    
        public static ServiceRegistry getServices() {
            DefaultServiceRegistry registry = new DefaultServiceRegistry();
            registry.addProvider(new ServiceRegistrationProvider() {
                @Provides
                ExecutionGlobalServices.AnnotationHandlerRegistration createAnnotationRegistration() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientServicesSupport.java

    import org.gradle.launcher.daemon.context.DaemonRequestContext;
    import org.gradle.launcher.daemon.protocol.DaemonMessageSerializer;
    import org.gradle.launcher.daemon.registry.DaemonDir;
    import org.gradle.launcher.daemon.registry.DaemonRegistry;
    import org.gradle.launcher.daemon.registry.DaemonRegistryServices;
    import org.gradle.launcher.daemon.toolchain.DaemonClientToolchainServices;
    import org.gradle.launcher.daemon.toolchain.DaemonJavaToolchainQueryService;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/CompatibleDaemonExpirationStrategy.java

    import org.gradle.api.specs.Spec;
    import org.gradle.launcher.daemon.context.DaemonCompatibilitySpec;
    import org.gradle.launcher.daemon.context.DaemonContext;
    import org.gradle.launcher.daemon.registry.DaemonInfo;
    import org.gradle.launcher.daemon.server.expiry.DaemonExpirationResult;
    import org.gradle.launcher.daemon.server.expiry.DaemonExpirationStatus;
    import org.gradle.launcher.daemon.server.expiry.DaemonExpirationStrategy;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 18:27:45 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/ModuleRegistry.java

    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    
    /**
     * A registry of dynamically loadable modules.
     */
    @ServiceScope(Scope.Global.class)
    public interface ModuleRegistry {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/bootstrap/ForegroundDaemonAction.java

    import org.gradle.internal.logging.LoggingManagerInternal;
    import org.gradle.internal.service.ServiceRegistry;
    import org.gradle.launcher.daemon.configuration.DaemonServerConfiguration;
    import org.gradle.launcher.daemon.registry.DaemonRegistry;
    import org.gradle.launcher.daemon.server.Daemon;
    import org.gradle.launcher.daemon.server.DaemonProcessState;
    import org.gradle.launcher.daemon.server.MasterExpirationStrategy;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfo.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A means to expose Daemon information _specifically_ for the purpose of build scans. The associated plugin obtains this via the service registry and queries all values when it is applied.
     *
     * This API is a contract with the plugin. Any binary incompatible changes will require changes to the plugin.
     */
    @UsedByScanPlugin
    @ServiceScope(Scope.Global.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/WindowsInstallationSupplier.java

        private final OperatingSystem os;
    
        public WindowsInstallationSupplier(WindowsRegistry registry, OperatingSystem os) {
            this.windowsRegistry = registry;
            this.os = os;
        }
    
        @Override
        public String getSourceName() {
            return "Windows Registry";
        }
    
        @Override
        public Set<InstallationLocation> get() {
            if (os.isWindows()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 22:14:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

            }
            throw new IllegalArgumentException(String.format("Service registry %s cannot be used as a parent for another service registry.", serviceRegistry));
        }
    
        /**
         * Creates a service registry that uses the given providers.
         */
        public static ServiceRegistry create(ServiceRegistrationProvider... providers) {
            DefaultServiceRegistry registry = new DefaultServiceRegistry();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/MasterExpirationStrategy.java

            // Expire recently unused Daemons when memory pressure is high
            addLowMemoryDaemonExpirationStrategyWhenSupported(daemon, strategies, listenerManager);
    
            // Expire when Daemon Registry becomes unreachable for some reason
            strategies.add(new DaemonRegistryUnavailableExpirationStrategy(daemon));
    
            this.strategy = new AnyDaemonExpirationStrategy(strategies.build());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonFixture.java

         */
        void kill();
    
        /**
         * Forcefully kills this daemon, but not child processes.
         */
        void killDaemonOnly();
    
        /**
         * Changes the authentication token for this daemon in the registry, so that client will see a different token to that expected by this daemon
         */
        void changeTokenVisibleToClient();
    
        void assertRegistryNotWorldReadable();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top