Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 254 for paused (0.11 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/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)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/util/openapi/enablement_test.go

    							Default:     "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. build/pause/windows/pause.c

    		exit(0);
    
    	default:
    		return FALSE;
    	}
    }
    
    int main(int argc, char **argv)
    {
    	int i;
    	for (i = 1; i < argc; ++i)
    	{
    		if (!_stricmp(argv[i], "-v"))
    		{
    			fprintf(stdout, "pause.c %s\n", VERSION_STRING(VERSION));
    			return 0;
    		}
    	}
    
    	if (SetConsoleCtrlHandler(CtrlHandler, TRUE))
    	{
    		Sleep(INFINITE);
    	}
    	else
    	{
    		printf("\nERROR: Could not set control handler\n");
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 13:09:17 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.td

    A. Unique TensorFlower <******@****.***> 1714079059 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/passes.h

    /// When `tf2xla_fallback_device_type` is not `None`, also uses legalization
    /// patterns from TF2XLA fallback for provided device type (see
    /// legalize_tf_with_tf2xla.cc for details). By default, TF2XLA fallback is not
    /// used.
    /// Note: This is a module pass because when legalizing with TF2XLA fallback,
    /// functions are imported into the module. Importing functions into a
    /// module is not thread safe.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/passes.td

    Luke Boyer <******@****.***> 1715193404 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/Parser.kt

        val wrappedCode: String,
        val originalCodeOffset: Int,
        val suffixLength: Int,
    )
    
    
    fun parse(@Language("kts") code: String): ParsedLightTree {
        val (wrappedCode, codeOffset, suffixLength) = wrapScriptIntoClassInitializerBlock(code)
        return ParsedLightTree(
            KotlinLightParser.parse(psiBuilderFactory.createBuilder(parserDefinition, lexer, wrappedCode)),
            wrappedCode,
            codeOffset,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. src/internal/trace/parser.go

    	ProfileP // depicts recording of CPU profile samples
    )
    
    // Event types in the trace.
    // Verbatim copy from src/runtime/trace.go with the "trace" prefix removed.
    const (
    	EvNone              = 0  // unused
    	EvBatch             = 1  // start of per-P batch of events [pid, timestamp]
    	EvFrequency         = 2  // contains tracer timer frequency [frequency (ticks per second)]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:31:04 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top