Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for TransportableActionExecutionSpecSerializer (0.53 sec)

  1. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/TransportableActionExecutionSpecSerializer.java

    import org.gradle.internal.serialize.Decoder;
    import org.gradle.internal.serialize.Encoder;
    import org.gradle.internal.serialize.Serializer;
    
    import java.io.File;
    
    public class TransportableActionExecutionSpecSerializer implements Serializer<TransportableActionExecutionSpec> {
        private static final byte FLAT = (byte) 0;
        private static final byte HIERARCHICAL = (byte) 1;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/TransportableActionExecutionSpecSerializerTest.groovy

    import org.gradle.internal.serialize.kryo.KryoBackedEncoder
    import spock.lang.Specification
    
    class TransportableActionExecutionSpecSerializerTest extends Specification {
        def serializer = new TransportableActionExecutionSpecSerializer()
        def outputStream = new ByteArrayOutputStream()
        def encoder = new KryoBackedEncoder(outputStream)
        def bytes = [ (byte) 1, (byte) 2, (byte) 3 ] as byte[]
        def usesInternalServices = true
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:50 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonStarter.java

            JavaExecHandleBuilder javaCommand = builder.getJavaCommand();
            forkOptions.getJavaForkOptions().copyTo(javaCommand);
            builder.registerArgumentSerializer(TransportableActionExecutionSpec.class, new TransportableActionExecutionSpecSerializer());
            MultiRequestClient<TransportableActionExecutionSpec, DefaultWorkResult> workerDaemonProcess = builder.build();
            WorkerProcess workerProcess = workerDaemonProcess.start();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonServer.java

            this.instantiatorFactory = internalServices.get(InstantiatorFactory.class);
            argumentSerializers.register(TransportableActionExecutionSpec.class, new TransportableActionExecutionSpecSerializer());
        }
    
        static ServiceRegistry createWorkerDaemonServices(ServiceRegistry parent) {
            return ServiceRegistryBuilder.builder()
                .displayName("worker daemon services")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.workers.internal.TransportableActionExecutionSpecSerializer> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (TransportableActionExecutionSpecSerializer.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top