Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for BuildCommandOnly (0.17 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/BuildCommandOnly.java

    /**
     * Superclass template for actions that only work for Build.
     *
     * If an action of this type receives a command that is not Build it will throw an exception.
     */
    public abstract class BuildCommandOnly implements DaemonCommandAction {
    
        @Override
        public void execute(DaemonCommandExecution execution) {
            Command command = execution.getCommand();
            if (!(command instanceof Build)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/StartBuildOrRespondWithBusy.java

    /**
     * Updates the daemon idle/busy status, sending a DaemonUnavailable result back to the client if the daemon is busy.
     */
    public class StartBuildOrRespondWithBusy extends BuildCommandOnly {
        
        private static final Logger LOGGER = Logging.getLogger(StartBuildOrRespondWithBusy.class);
        private final DaemonDiagnostics diagnostics;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/ExecuteBuild.java

    import org.gradle.launcher.exec.BuildActionResult;
    
    /**
     * Actually executes the build.
     *
     * Typically the last action in the pipeline.
     */
    public class ExecuteBuild extends BuildCommandOnly {
    
        private static final Logger LOGGER = Logging.getLogger(ExecuteBuild.class);
    
        final private BuildActionExecutor<BuildActionParameters, BuildRequestContext> actionExecuter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/EstablishBuildEnvironment.java

    import java.util.Locale;
    import java.util.Map;
    import java.util.Properties;
    
    /**
     * Aims to make the local environment the same as the client's environment.
     */
    public class EstablishBuildEnvironment extends BuildCommandOnly {
        private final static Logger LOGGER = Logging.getLogger(EstablishBuildEnvironment.class);
    
        private final ProcessEnvironment processEnvironment;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/CleanUpVirtualFileSystemAfterBuild.java

     * However, the next build is not allowed to start until the cleanup is finished.
     */
    @NonNullApi
    public class CleanUpVirtualFileSystemAfterBuild extends BuildCommandOnly implements Stoppable {
        private static final Logger LOGGER = LoggerFactory.getLogger(CleanUpVirtualFileSystemAfterBuild.class);
    
        private final GradleUserHomeScopeServiceRegistry userHomeServiceRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/LogToClient.java

    import org.gradle.launcher.daemon.server.api.DaemonConnection;
    
    import java.util.Queue;
    import java.util.concurrent.ConcurrentLinkedQueue;
    import java.util.concurrent.CountDownLatch;
    
    public class LogToClient extends BuildCommandOnly {
    
        public static final String DISABLE_OUTPUT = "org.gradle.daemon.disable-output";
        private static final Logger LOGGER = Logging.getLogger(LogToClient.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.launcher.daemon.server.exec.BuildCommandOnly> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (BuildCommandOnly.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top