Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for registry_ (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/MergeInstrumentationAnalysisTransform.java

            InstrumentationTypeRegistry registry = getInstrumentationTypeRegistry();
    
            InstrumentationDependencyAnalysis data = serializer.readDependencyAnalysis(input);
            Map<String, Set<String>> dependenciesSuperTypes = new TreeMap<>();
            for (String className : data.getDependencies().keySet()) {
                Set<String> superTypes = registry.getSuperTypes(className);
                if (!superTypes.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelNodeInternal.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.Optional;
    import org.gradle.model.RuleSource;
    import org.gradle.model.internal.core.ChainingModelProjection;
    import org.gradle.model.internal.core.EmptyModelProjection;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:51:08 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ScopedServiceRegistry.java

     * limitations under the License.
     */
    
    package org.gradle.internal.service;
    
    import org.gradle.api.NonNullApi;
    import org.gradle.internal.service.scopes.Scope;
    
    /**
     * A registry validating that all registered services are annotated with a corresponding {@link Scope}.
     */
    @NonNullApi
    public class ScopedServiceRegistry extends DefaultServiceRegistry {
    
        public ScopedServiceRegistry(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonServices.java

    import org.gradle.launcher.daemon.diagnostics.DaemonDiagnostics;
    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.server.api.DaemonCommandAction;
    import org.gradle.launcher.daemon.server.api.HandleInvalidateVirtualFileSystem;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/InstantiatorFactory.java

         * This method will be retired in the future. This is a convenience for {@link #decorateLenientScheme()}.
         *
         * @param services The registry of services to make available to instances.
         */
        InstanceGenerator decorateLenient(ServiceLookup services);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top