Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 110 for registry_ (0.09 sec)

  1. 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)
  2. 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)
  3. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherRegistry.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.internal.watch.registry;
    
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    import org.gradle.internal.snapshot.SnapshotHierarchy;
    import org.gradle.internal.watch.WatchingNotSupportedException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectStateRegistry.java

    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.util.Path;
    
    import javax.annotation.Nullable;
    import javax.annotation.concurrent.ThreadSafe;
    import java.util.Collection;
    
    /**
     * A registry of all projects present in a build tree.
     */
    @ThreadSafe
    @ServiceScope(Scope.BuildTree.class)
    public interface ProjectStateRegistry {
        /**
         * Returns all projects in the build tree.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdater.java

    import org.gradle.internal.snapshot.SnapshotHierarchy;
    import org.gradle.internal.watch.registry.FileWatcherProbeRegistry;
    import org.gradle.internal.watch.registry.FileWatcherUpdater;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.io.File;
    import java.util.Collection;
    import java.util.List;
    
    /**
     * Updater for hierarchical file watchers.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/ToPlannedNodeConverterRegistry.java

    import java.util.List;
    import java.util.Set;
    import java.util.concurrent.ConcurrentHashMap;
    import java.util.concurrent.ConcurrentMap;
    import java.util.stream.Collectors;
    
    /**
     * A Gradle user home level registry of {@link ToPlannedNodeConverter} instances.
     * <p>
     * All the available converters are expected to support disjoint set of {@link Node node types}.
     */
    @NonNullApi
    @ThreadSafe
    @ServiceScope(Scope.UserHome.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/service/scopes/VirtualFileSystemServices.java

    import org.gradle.internal.vfs.impl.DefaultSnapshotHierarchy;
    import org.gradle.internal.watch.registry.FileWatcherRegistryFactory;
    import org.gradle.internal.watch.registry.impl.DarwinFileWatcherRegistryFactory;
    import org.gradle.internal.watch.registry.impl.LinuxFileWatcherRegistryFactory;
    import org.gradle.internal.watch.registry.impl.WindowsFileWatcherRegistryFactory;
    import org.gradle.internal.watch.vfs.BuildLifecycleAwareVirtualFileSystem;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractValueProcessor.java

            }
    
            // Pluggable serialization
            for (ValueSnapshotterSerializerRegistry registry : valueSnapshotterSerializerRegistryList) {
                if (registry.canSerialize(valueClass)) {
                    return gradleSerialization(value, registry.build(valueClass), visitor);
                }
            }
    
            // Fall back to Java serialization
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:08:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. 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)
Back to top