Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getServerAddress (0.35 sec)

  1. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/messaging/WorkerConfig.java

        /**
         * @return The absolute path to the Gradle user home directory.
         */
        public String getGradleUserHomeDirPath() {
            return gradleUserHomeDirPath;
        }
    
        public MultiChoiceAddress getServerAddress() {
            return serverAddress;
        }
    
        public long getWorkerId() {
            return workerId;
        }
    
        public String getDisplayName() {
            return displayName;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/messaging/WorkerConfigSerializer.java

            encoder.writeSmallInt(config.getNativeServicesMode().ordinal());
            encoder.writeString(config.getGradleUserHomeDirPath());
            new MultiChoiceAddressSerializer().write(encoder, config.getServerAddress());
            encoder.writeSmallLong(config.getWorkerId());
            encoder.writeString(config.getDisplayName());
            encoder.writeBinary(serializeWorker(config.getWorkerAction()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/SystemApplicationClassLoaderWorker.java

            ObjectConnection connection = null;
            try {
                // Read server address and start connecting
                connection = basicWorkerServices.get(MessagingClient.class).getConnection(config.getServerAddress());
                connection.addUnrecoverableErrorHandler(unrecoverableErrorHandler);
                configureLogging(loggingManager, connection, workerLogEventListener);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top