Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for registry_ (0.09 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonRegistryServices.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.launcher.daemon.registry;
    
    import org.gradle.cache.Cache;
    import org.gradle.cache.FileLockManager;
    import org.gradle.cache.internal.CacheAccessSerializer;
    import org.gradle.cache.internal.MapBackedCache;
    import org.gradle.internal.file.Chmod;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/PayloadSerializer.java

    import java.util.Map;
    
    @ThreadSafe
    public class PayloadSerializer {
        private final PayloadClassLoaderRegistry classLoaderRegistry;
    
        public PayloadSerializer(PayloadClassLoaderRegistry registry) {
            classLoaderRegistry = registry;
        }
    
        public SerializedPayload serialize(@Nullable Object payload) {
            if (payload == null) {
                return new SerializedPayload(null, Collections.<byte[]>emptyList());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationListenerRegistrar.java

     * One instance of this exists per build tree.
     * Only one listener may register.
     * Subsequent attempts yield exceptions.
     *
     * @since 4.0
     */
    @UsedByScanPlugin("obtained from the root build's root project's service registry")
    @ServiceScope(Scope.CrossBuildSession.class)
    public interface BuildOperationNotificationListenerRegistrar {
    
        /**
         * The registered listener will receive notification for all build operations for the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/WorkerJvmMemoryInfoSerializer.java

    public class WorkerJvmMemoryInfoSerializer {
        public static SerializerRegistry create() {
            DefaultSerializerRegistry registry = new DefaultSerializerRegistry(false);
    
            registry.register(JvmMemoryStatus.class, new JvmMemoryStatusSerializer());
            return registry;
        }
    
        private static class JvmMemoryStatusSerializer implements Serializer<JvmMemoryStatus> {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

                classpath = classpath.plus(registry.getModule("gradle-daemon-main").getImplementationClasspath());
                searchClassPath = registry.getAdditionalClassPath().getAsFiles();
            } else {
                // When running from a Gradle distro, only need the daemon main jar. The daemon can find everything from there.
                classpath = registry.getModule("gradle-daemon-main").getImplementationClasspath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/ServeDocs.java

        @TaskAction
        public void startApplication() {
            System.out.println("serving docs at http://localhost:" + getPort().get());
            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: Thu Apr 18 12:38:47 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/plugins/RuleBasedPluginTarget.java

    import org.gradle.model.internal.inspect.ExtractedRuleSource;
    import org.gradle.model.internal.inspect.ModelRuleExtractor;
    import org.gradle.model.internal.inspect.ModelRuleSourceDetector;
    import org.gradle.model.internal.registry.ModelRegistry;
    
    import javax.annotation.Nullable;
    
    public class RuleBasedPluginTarget implements PluginTarget {
    
        private final ProjectInternal target;
        private final PluginTarget imperativeTarget;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:21 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonDir.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.launcher.daemon.registry;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.util.internal.GFileUtils;
    import org.gradle.util.GradleVersion;
    
    import java.io.File;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientFactory.java

        }
    
        private DefaultServiceRegistry createLoggingServices(ServiceLookup clientLoggingServices) {
            // Need to use some specific logging services from the client-specific registry, rather than the global registry
            DefaultServiceRegistry loggingServices = new DefaultServiceRegistry(sharedServices);
            loggingServices.add(OutputEventListener.class, clientLoggingServices.get(OutputEventListener.class));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServices.java

        }
    
        @Provides
        ClassLoaderHierarchyHasher createClassLoaderHierarchyHasher(ClassLoaderRegistry registry, HashingClassLoaderFactory classLoaderFactory) {
            return new RegistryAwareClassLoaderHierarchyHasher(registry, classLoaderFactory);
        }
    
        @Provides
        HashingClassLoaderFactory createClassLoaderFactory(ClasspathHasher classpathHasher) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top