Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for buildStarted (0.49 sec)

  1. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/BuildStarted.java

    /**
     * Returned when the daemon starts a build command, signifying that it has begun processing it.
     */
    public class BuildStarted extends Message {
    
        private final DaemonDiagnostics diagnostics;
    
        public BuildStarted(DaemonDiagnostics diagnostics) {
            this.diagnostics = diagnostics;
        }
    
        public DaemonDiagnostics getDiagnostics() {
            return diagnostics;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfile.java

        }
    
        /**
         * Should be set with a timestamp from a {@link org.gradle.BuildListener#beforeSettings(Settings)}
         * callback.
         */
        public void setBuildStarted(long buildStarted) {
            this.buildStarted = buildStarted;
        }
    
        /**
         * Should be set with a timestamp from a {@link org.gradle.BuildListener#settingsEvaluated}
         * callback.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonClientTest.groovy

    import org.gradle.launcher.daemon.context.DaemonConnectDetails
    import org.gradle.launcher.daemon.diagnostics.DaemonDiagnostics
    import org.gradle.launcher.daemon.protocol.Build
    import org.gradle.launcher.daemon.protocol.BuildStarted
    import org.gradle.launcher.daemon.protocol.Cancel
    import org.gradle.launcher.daemon.protocol.CloseInput
    import org.gradle.launcher.daemon.protocol.DaemonUnavailable
    import org.gradle.launcher.daemon.protocol.Failure
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. subprojects/core/src/testFixtures/groovy/org/gradle/api/RecordingAntBuildListener.groovy

        List<BuildEvent> buildStarted = []
        List<BuildEvent> buildFinished = []
        List<BuildEvent> targetStarted = []
        List<BuildEvent> targetFinished = []
        List<BuildEvent> taskStarted = []
        List<BuildEvent> taskFinished = []
        List<BuildEvent> messageLogged = []
    
        void buildStarted(BuildEvent event) {
            buildStarted << event
        }
    
        void buildFinished(BuildEvent event) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 26 10:58:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/DaemonMessageSerializer.java

            }
        }
    
        private static class BuildStartedSerializer implements Serializer<BuildStarted> {
            @Override
            public void write(Encoder encoder, BuildStarted buildStarted) throws Exception {
                FILE_SERIALIZER.write(encoder, buildStarted.getDiagnostics().getDaemonLog());
                if (buildStarted.getDiagnostics().getPid() == null) {
                    encoder.writeBoolean(false);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdaterTest.groovy

            def unsupportedFileSystemMountPoint = file("unsupported").createDir()
            def unwatchableContent = unsupportedFileSystemMountPoint.file("file.txt").createFile()
    
            when:
            buildStarted(WatchMode.DEFAULT, [unsupportedFileSystemMountPoint])
            registerWatchableHierarchies([unsupportedFileSystemMountPoint])
            addSnapshot(snapshotRegularFile(unwatchableContent))
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/StartBuildOrRespondWithBusy.java

                    public void run() {
                        LOGGER.info("Daemon is about to start building {}. Dispatching build started information...", build);
                        execution.getConnection().buildStarted(new BuildStarted(diagnostics));
                        execution.proceed();
                    }
                };
    
                stateCoordinator.runCommand(command, execution.toString());
            } catch (DaemonUnavailableException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonConnection.java

         */
        void daemonUnavailable(DaemonUnavailable unavailable);
    
        /**
         * Dispatches a build started message to the client.
         */
        void buildStarted(BuildStarted buildStarted);
    
        /**
         * Dispatches a log event message to the client.
         */
        void logEvent(OutputEvent logEvent);
    
        /**
         * Dispatches some build event to the client.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. .teamcity/pluginData/Check/plugin-settings.xml

          <states>
            <state type="buildAddedToQueue" enabled="false" />
            <state type="buildRemovedFromQueue" enabled="true" />
            <state type="buildStarted" enabled="true" />
            <state type="changesLoaded" enabled="true" />
            <state type="buildInterrupted" enabled="true" />
            <state type="beforeBuildFinish" enabled="false" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 18 02:15:16 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DefaultDaemonConnection.java

        @Override
        public void daemonUnavailable(DaemonUnavailable unavailable) {
            connection.dispatchAndFlush(unavailable);
        }
    
        @Override
        public void buildStarted(BuildStarted buildStarted) {
            connection.dispatchAndFlush(buildStarted);
        }
    
        @Override
        public void logEvent(OutputEvent logEvent) {
            connection.dispatchAndFlush(new OutputMessage(logEvent));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top