Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,605 for onOutput (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildExceptionReporter.java

                output.println();
                output.withStyle(Failure).format("%s: ", i + 1);
                details.summary.writeTo(output.withStyle(Failure));
                output.println();
                output.text("-----------");
    
                writeFailureDetails(output, details);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/UndeclaredDependencyResolutionIntegrationTest.groovy

        def "task can query FileCollection containing the output of transform of project artifacts without declaring this access"() {
            setupBuildWithProjectArtifactTransforms()
            taskQueriesFilesWithoutDeclaringInput()
    
            when:
            run("broken")
    
            then:
            assertTransformed("a.jar", "b.jar")
            output.contains("result = [a.jar.green, b.jar.green]")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/BaseBuildScanPluginCheckInFixture.groovy

        void receivedBuildOperationNotifications(String output) {
            assert output.contains("${propertyPrefix}.buildOperationNotificationListener.received = true")
        }
    
        void issuedNoPluginWarning(String output) {
            assert output.contains(GradleEnterprisePluginManager.NO_SCAN_PLUGIN_MSG)
        }
    
        void didNotIssuedNoPluginWarning(String output) {
            assert !output.contains(GradleEnterprisePluginManager.NO_SCAN_PLUGIN_MSG)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. tests/integration/pilot/analyze_test.go

    func expectNoMessages(t test.Failer, g *GomegaWithT, output []string) {
    	t.Helper()
    	g.Expect(output).To(HaveLen(1))
    	g.Expect(output[0]).To(ContainSubstring("No validation issues found when analyzing"))
    }
    
    func expectJSONMessages(t test.Failer, g *GomegaWithT, output string, expected ...*diag.MessageType) {
    	t.Helper()
    
    	var j []map[string]any
    	if err := json.Unmarshal([]byte(output), &j); err != nil {
    		t.Fatal(err, output)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. src/strings/example_test.go

    	// Output: ÖRNEK İŞ
    }
    
    func ExampleToLower() {
    	fmt.Println(strings.ToLower("Gopher"))
    	// Output: gopher
    }
    
    func ExampleToLowerSpecial() {
    	fmt.Println(strings.ToLowerSpecial(unicode.TurkishCase, "Önnek İş"))
    	// Output: önnek iş
    }
    
    func ExampleTrim() {
    	fmt.Print(strings.Trim("¡¡¡Hello, Gophers!!!", "!¡"))
    	// Output: Hello, Gophers
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:05:38 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

            def output = file("output.txt")
    
            buildFile << """
                class CustomTask extends DefaultTask {
                    @InputDirectory File inputDirectoryWithBrokenLink
    
                    @OutputFile File output
    
                    @TaskAction execute() {
                        output.text = inputDirectoryWithBrokenLink.list()
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelGroovyScalarConfigurationIntegrationTest.groovy

            output.contains 'prop thefloat     : 1.1415926'
            output.contains 'prop theFloat     : 0.7182818'
            output.contains 'prop theint       : 3'
            output.contains 'prop theInteger   : 8'
            output.contains 'prop theLong      : 4294967294'
            output.contains 'prop thelong      : 6442450941'
            output.contains 'prop theshort     : 21'
            output.contains 'prop theShort     : 55'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  9. src/log/log.go

    // paths it will be 2.
    func (l *Logger) Output(calldepth int, s string) error {
    	calldepth++ // +1 for this frame.
    	return l.output(0, calldepth, func(b []byte) []byte {
    		return append(b, s...)
    	})
    }
    
    // output can take either a calldepth or a pc to get source line information.
    // It uses the pc if it is non-zero.
    func (l *Logger) output(pc uintptr, calldepth int, appendOutput func([]byte) []byte) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass_test.cc

      Output input = ops::Placeholder(root.WithOpName("input"), DT_FLOAT);
      Output begin = ops::Placeholder(root.WithOpName("begin"), DT_INT32);
      Output size_a = ops::Const(root.WithOpName("size_a"), {-1, 500});
      Output slice = ops::Slice(root.WithOpName("slice"), input, begin, size_a);
    
      Output size_b = ops::Const(root.WithOpName("size_a"), {-1, 200});
      Output slice_with_slice_input = ops::Slice(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top