Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,605 for onOutput (0.25 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskCreationIntegrationTest.groovy

                        }
                    }
                }
            """
    
            when:
            succeeds "tasks", "--all"
    
            then:
            output.contains "a - task a"
            output.contains "b - task b"
            output.contains "c - task c"
        }
    
        def "can use rule DSL to configure task using another task as input"() {
            given:
            buildFile << '''
                model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 18 22:50:47 UTC 2020
    - 16.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

        }
    
        SearchResult<GccMetadata> output(String outputStr, GccCompilerType compilerType = GCC) {
            output(outputStr, "", compilerType)
        }
    
        SearchResult<GccMetadata> output(String output, String error, GccCompilerType compilerType = GCC, List<File> path = []) {
            runsCompiler(output, error)
            def provider = new GccMetadataProvider(execActionFactory, compilerType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsReportIntegrationTest.groovy

            given:
            buildScript simpleBuildWithTestSuites()
    
            when:
            run 'dependentComponents'
    
            then:
            !output.contains('utilTest')
            !output.contains('libTest')
            !output.contains('(t) - Test suite binary')
            output.contains 'Some test suites were not shown, use --test-suites or --all to show them.'
        }
    
        def "displays dependent test suites when using #option"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

            """
    
            then:
            succeeds("myTask")
            output.contains "value: original"
            output.contains "reuse: false"
    
            when:
            waitBeforeModification(markerFile)
            markerFile.text = "changed"
    
            then:
            buildTriggeredAndSucceeded()
            output.contains "value: changed"
            output.contains "reuse: true"
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

           .Input("inputs: N * T")
           .Output("output: T")
           .Output("value_index: int32")
    
        For example:
          %2 = tf_executor.Merge %0, %1, %2, %3 : tensor<*xf32>
    
        Note: Additional result corresponds to the control output.
      }];
    
      let arguments = (ins
        Variadic<AnyType>:$inputs_and_control
      );
    
      let results = (outs
        AnyTensor:$output,
        TensorOf<[I32]>:$value_index,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/file/ProjectLayoutIntegrationTest.groovy

                println "src dir 1: " + srcDir.get()
                println "output dir 1: " + outputDir.get()
                buildDir = "output/some-dir"
                childDirName = "other-child"
                println "src dir 2: " + srcDir.get()
                println "output dir 2: " + outputDir.get()
    """
    
            when:
            run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. subprojects/build-events/src/integTest/groovy/org/gradle/build/event/BuildEventsIntegrationTest.groovy

            run("notUpToDate")
    
            then:
            output.count("EVENT:") == 1
            outputContains("EVENT: finish :notUpToDate OK")
    
            when:
            run("notUpToDate")
    
            then:
            output.count("EVENT:") == 1
            outputContains("EVENT: finish :notUpToDate OK")
    
            when:
            fails("broken")
    
            then:
            output.count("EVENT:") == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

    }
    """
    
            when:
            run ":dependencies"
    
            then:
            output.contains """
    compile
    \\--- project :c
         \\--- project :a
              +--- project :b
              |    \\--- project :c (*)
              \\--- project :c (*)
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessorTest.groovy

            adapter.output('1.1.2', grrr)
    
            then:
            1 * listener.output({ it instanceof DecoratingTestDescriptor && it.id == '1.1' }, woof)
            1 * listener.output({ it instanceof DecoratingTestDescriptor && it.id == '1' }, woof)
            1 * listener.output({ it instanceof UnknownTestDescriptor }, grrr)
            0 * listener.output(_, _)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    			}
    			ui.PrintErr("Generating report in ", tempFile.Name())
    			output = tempFile
    		}
    		_, err := io.Copy(output, input)
    		return err
    	}
    }
    
    func invokeDot(format string) PostProcessor {
    	return func(input io.Reader, output io.Writer, ui plugin.UI) error {
    		cmd := exec.Command("dot", "-T"+format)
    		cmd.Stdin, cmd.Stdout, cmd.Stderr = input, output, os.Stderr
    		if err := cmd.Run(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top