Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,789 for paused (0.14 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AbstractUserInputRenderer.java

        }
    
        private void handleUserInputRequestEvent() {
            startInput();
            paused = true;
        }
    
        private void handleUserInputResumeEvent(UserInputResumeEvent event) {
            if (!paused) {
                throw new IllegalStateException("Cannot resume user input if not paused yet");
            }
    
            paused = false;
            finishInput(event);
            replayEvents();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/UserInputStandardOutputRendererTest.groovy

        def "throws exception if user input resume event has been received but event handling hasn't been paused"() {
            given:
            def event = new UserInputResumeEvent(123)
    
            when:
            renderer.onOutput(event)
    
            then:
            def t = thrown(IllegalStateException)
            t.message == 'Cannot resume user input if not paused yet'
            0 * listener.onOutput(_)
            0 * userInput._
            renderer.eventQueue.empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/UserInputConsoleRendererTest.groovy

        def "throws exception if user input resume event has been received but event handling hasn't been paused"() {
            given:
            def event = new UserInputResumeEvent(123)
    
            when:
            renderer.onOutput(event)
    
            then:
            def t = thrown(IllegalStateException)
            t.message == 'Cannot resume user input if not paused yet'
            0 * console._
            0 * listener.onOutput(_)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. pkg/controller/deployment/sync.go

    	}
    
    	// Clean up the deployment when it's paused and no rollback is in flight.
    	if d.Spec.Paused && getRollbackTo(d) == nil {
    		if err := dc.cleanupDeployment(ctx, oldRSs, d); err != nil {
    			return err
    		}
    	}
    
    	allRSs := append(oldRSs, newRS)
    	return dc.syncDeploymentStatus(ctx, allRSs, newRS, d)
    }
    
    // checkPausedConditions checks if the given deployment is paused or not and adds an appropriate condition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  5. maven-jline/src/main/java/org/apache/maven/jline/FastTerminal.java

        }
    
        @Override
        public void pause() {
            getTerminal().pause();
        }
    
        @Override
        public void pause(boolean b) throws InterruptedException {
            getTerminal().pause(b);
        }
    
        @Override
        public void resume() {
            getTerminal().resume();
        }
    
        @Override
        public boolean paused() {
            return getTerminal().paused();
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// Defaults to 2.
    	// +optional
    	RevisionHistoryLimit *int32 `json:"revisionHistoryLimit,omitempty" protobuf:"varint,6,opt,name=revisionHistoryLimit"`
    
    	// paused indicates that the deployment is paused.
    	// +optional
    	Paused bool `json:"paused,omitempty" protobuf:"varint,7,opt,name=paused"`
    
    	// DEPRECATED.
    	// rollbackTo is the config this deployment is rolling back to. Will be cleared after rollback is done.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 2.
      // +optional
      optional int32 revisionHistoryLimit = 6;
    
      // paused indicates that the deployment is paused.
      // +optional
      optional bool paused = 7;
    
      // DEPRECATED.
      // rollbackTo is the config this deployment is rolling back to. Will be cleared after rollback is done.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

            }
    
            override fun pause(): WritingState {
                removeListener(fingerprintWriter)
                return Paused(fingerprintWriter, buildScopedSpoolFile, projectScopedSpoolFile)
            }
    
            override fun dispose() =
                pause().dispose()
        }
    
        private
        inner class Paused(
            private val fingerprintWriter: ConfigurationCacheFingerprintWriter,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta1/generated.proto

      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 2.
      // +optional
      optional int32 revisionHistoryLimit = 6;
    
      // paused indicates that the deployment is paused.
      // +optional
      optional bool paused = 7;
    
      // DEPRECATED.
      // rollbackTo is the config this deployment is rolling back to. Will be cleared after rollback is done.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  10. src/cmd/test2json/main.go

    //
    // The Action field is one of a fixed set of action descriptions:
    //
    //	start  - the test binary is about to be executed
    //	run    - the test has started running
    //	pause  - the test has been paused
    //	cont   - the test has continued running
    //	pass   - the test passed
    //	bench  - the benchmark printed log output but did not fail
    //	fail   - the test or benchmark failed
    //	output - the test printed output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top