Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/services/ProjectLayoutSetupRegistryFactory.java

            ProjectLayoutSetupRegistry registry = new ProjectLayoutSetupRegistry(basicType, mavenBuildConverter, templateOperationBuilder);
            registry.add(of(new JvmApplicationProjectInitDescriptor(Description.JAVA, libraryVersionProvider, documentationRegistry), jvmProjectGenerators, libraryVersionProvider));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 18:02:40 UTC 2024
    - 8.4K 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. 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)
  6. 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)
  7. subprojects/core-api/src/main/java/org/gradle/tooling/provider/model/ToolingModelBuilderRegistry.java

     */
    
    package org.gradle.tooling.provider.model;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A registry of tooling model builders. Adding a builder to this registry makes a model (or models) available via the tooling API.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/BuildLifecycleAwareVirtualFileSystem.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.internal.vfs.VirtualFileSystem;
    import org.gradle.internal.watch.registry.WatchMode;
    
    import java.io.File;
    
    /**
     * Controls the lifecycle and bookkeeping for file system watching.
     */
    @ServiceScope(Scope.UserHome.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top