Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for getDaemons (0.2 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonStopClient.java

            while (connection != null && !timer.hasExpired()) {
                try {
                    seen.add(connection.getDaemon().getUid());
                    LOGGER.debug("Requesting daemon {} stop now", connection.getDaemon());
                    boolean stopped = stopDispatcher.dispatch(connection, new Stop(idGenerator.generateId(), connection.getDaemon().getToken()));
                    if (stopped) {
                        numStopped++;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionPerformanceTestHistory.java

                        return mostRecent.getGradleOpts();
                    }
    
                    @Nullable
                    @Override
                    public Boolean getDaemon() {
                        return mostRecent.getDaemon();
                    }
                })
                .collect(Collectors.toList());
        }
    
        @Override
        public int getScenarioCount() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

                throw new NoUsableDaemonFoundException("A new daemon was started but could not be connected to: " +
                    "pid=" + connection.getDaemon() + ", address= " + connection.getDaemon().getAddress() + ".",
                    accumulatedExceptions);
            } finally {
                connection.stop();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossBuildPerformanceTestHistory.java

                        return input.getGradleOpts();
                    }
    
                    @Nullable
                    @Override
                    public Boolean getDaemon() {
                        return input.getDaemon();
                    }
                })
                .collect(Collectors.toList());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/ScenarioDefinition.java

        /**
         * The Gradle JVM args. Null if not known
         */
        @Nullable
        List<String> getGradleOpts();
    
        /**
         * Was the daemon used. Null if not known
         */
        @Nullable
        Boolean getDaemon();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestExecution.java

         */
        @Nullable
        List<String> getGradleOpts();
    
        /**
         * Was the daemon used. Null if not known or not constant for all experiments
         */
        @Nullable
        Boolean getDaemon();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/NotifyDaemonAboutChangedPathsClient.java

                    if (connection == null) {
                        continue;
                    }
                    dispatch(connection, new InvalidateVirtualFileSystemAfterChange(changedPaths, idGenerator.generateId(), connection.getDaemon().getToken()));
                }
            }
        }
    
        private static void dispatch(Connection<Message> connection, Command command) {
            Throwable failure = null;
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/SingleUseDaemonClient.java

            DaemonClientConnection daemonConnection = getConnector().startSingleUseDaemon();
            Build build = new Build(getIdGenerator().generateId(), daemonConnection.getDaemon().getToken(), action, buildRequestContext.getClient(), buildRequestContext.getStartTime(), buildRequestContext.isInteractive(), parameters);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

                        textCell(scenario.getCleanTasks());
                        textCell(scenario.getArgs());
                        textCell(scenario.getGradleOpts());
                        textCell(scenario.getDaemon());
                    end();
                }
                end();
    
                h3().text("Test history").end();
                table().classAttr("history");
                tr().classAttr("control-groups");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/ReportDaemonStatusClient.java

                        if (status != null) {
                            statuses.add(status);
                        } else { // Handle failure
                            statuses.add(new Status(connection.getDaemon().getPid(), "UNKNOWN", "UNKNOWN"));
                        }
                    } finally {
                        connection.stop();
                    }
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top