Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for initializeOnClient (0.32 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/NativeServicesInitializingAction.java

            this.loggingManager = loggingManager;
            this.action = action;
        }
    
        @Override
        public void execute(ExecutionListener executionListener) {
            NativeServices.initializeOnClient(buildLayout.getGradleUserHomeDir(), NativeServicesMode.fromSystemProperties());
            loggingManager.attachProcessConsole(loggingConfiguration.getConsoleOutput());
            action.execute(executionListener);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

            } catch (IllegalArgumentException e) {
                LOGGER.warn(e.getMessage());
            }
        }
    
        private void initializeServices(File gradleUserHomeDir) {
            NativeServices.initializeOnClient(gradleUserHomeDir, NativeServicesMode.fromSystemProperties());
            LoggingServiceRegistry loggingServices = LoggingServiceRegistry.newEmbeddableLogging();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

         *
         * Initializes all the services needed for the CLI or the Tooling API.
         */
        public static void initializeOnClient(File userHomeDir, NativeServicesMode mode) {
            INSTANCE.initialize(userHomeDir, EnumSet.of(NativeFeatures.JANSI), mode);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top