Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,304 for noOutput (0.19 sec)

  1. manifests/addons/dashboards/lib/output.json

    John Howard <******@****.***> 1717524306 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/DefaultUserInputHandlerTest.groovy

            then:
            1 * outputEventBroadcaster.onOutput(_ as UserInputRequestEvent)
            1 * outputEventBroadcaster.onOutput(_) >> { YesNoQuestionPromptEvent event ->
                assert event.question == 'question?'
            }
            1 * userInputReader.readInput() >> new UserInputReader.TextResponse(enteredUserInput)
            1 * outputEventBroadcaster.onOutput(_ as UserInputResumeEvent)
            0 * outputEventBroadcaster._
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/resources/org/gradle/kotlin/dsl/accessors/tasks/PrintAccessors-expected-output.txt

    Paul Merlin <******@****.***> 1690890212 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            this.doInput = doInput;
        }
    
        public boolean getDoInput() {
            return connection.getDoInput();
        }
    
        public void setDoOutput(boolean doOutput) {
            connection.setDoOutput(doOutput);
            this.doOutput = doOutput;
        }
    
        public boolean getDoOutput() {
            return connection.getDoOutput();
        }
    
        public void setAllowUserInteraction(boolean allowUserInteraction) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

            output.contains "Task 'b' file 'output.txt' with 'output-file'"
            output.contains "Task 'b2' file 'output.txt' with 'output-file'"
    
            when:
            succeeds "b", "b2"
    
            then:
            result.assertTasksSkipped(':a')
            result.assertTasksNotSkipped(':b', ':b2')
            output.contains "Task 'b' file 'output.txt' with 'output-file'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/OutputEventRendererTest.groovy

            renderer.addOutputEventListener(listener)
            renderer.onOutput(start)
            renderer.onOutput(progress)
            renderer.onOutput(complete)
    
            then:
            1 * listener.onOutput({it instanceof LogLevelChangeEvent && it.newLogLevel == logLevel})
            1 * listener.onOutput(start)
            1 * listener.onOutput(progress)
            1 * listener.onOutput(complete)
            0 * listener._
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGXmlResultAndHtmlReportIntegrationTest.groovy

            }
    
            def noOutputs = executionResult.testClass("org.NoOutputsTest")
                    .assertTestCount(1, 0, 0)
                    .assertTestsExecuted("passing").assertTestPassed("passing")
    
            if (executionResult instanceof HtmlTestExecutionResult || outputAssociation == WITH_SUITE) {
                noOutputs
                        .assertStdout(equalTo(""))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 21:27:42 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/GroupingProgressLogEventGenerator.java

            }
    
            void bufferOutput(RenderableOutputEvent output) {
                // Forward output immediately when the focus is on this operation group
                if (Objects.equal(buildOpIdentifier, lastRenderedBuildOpId)) {
                    listener.onOutput(output);
                    lastUpdateTime = currentTimePeriod;
                    needHeaderSeparator = true;
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_function.cc

      status->status = tensorflow::ProcessOutputs(fn_body, fn_name, noutputs,
                                                  outputs, &output_tensors);
      if (TF_GetCode(status) != TF_OK) return nullptr;
    
      // Process output names.
      std::vector<string> output_names_vec;
      if (output_names) {
        output_names_vec.reserve(noutputs);
        for (int i = 0; i < noutputs; ++i) {
          output_names_vec.push_back(string(output_names[i]));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top