Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for getDaemons (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientConnection.java

            this.connection = connection;
            this.daemon = daemon;
            this.staleAddressDetector = staleAddressDetector;
        }
    
        public DaemonConnectDetails getDaemon() {
            return daemon;
        }
    
        @Override
        public void dispatch(Message message) throws DaemonConnectionException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 06:43:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/LoggingFileSystemWatchingIntegrationTest.groovy

                assert daemon.log.count("Handling VFS change MODIFIED ${sourceFile.absolutePath}") == 1
            }
        }
    
        private DaemonFixture getDaemon() {
            new DaemonLogsAnalyzer(executer.daemonBaseDir).daemon
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top