Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,856 for Commands (0.12 sec)

  1. platforms/documentation/docs/src/snippets/configurationCache/noProblem/tests/configurationCacheNoProblem.sample.conf

    commands: [{
      executable: gradle
      args: help
      expected-output-file: store.out
      allow-additional-output: true
    }, {
      executable: gradle
      args: help
      expected-output-file: load.out
      allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 220 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/incrementalTask/tests/incrementalTaskChangedProperty.sample.conf

    # tag::cli[]
    # gradle --quiet -PtaskInputProperty=changed incrementalReverse
    # end::cli[]
    
    commands: [{
        executable: gradle
        args: originalInputs incrementalReverse
        flags: --quiet
    }, {
        executable: gradle
        args: incrementalReverse
        flags: "--quiet -PtaskInputProperty=changed"
        expected-output-file: incrementalTaskChangedProperty.out
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 394 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/java/modules-multi-project-with-integration-tests/tests/testTask.sample.conf

    commands: [{
        executable: gradle
        args: check
        expected-output-file: checkTask.out
        allow-additional-output: true
        allow-disordered-output: true
    },{
        executable: gradle
        args: run
        expected-output-file: runTask.out
        allow-additional-output: true
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 310 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/writing-tasks/tasks-with-dependency-resolution-result-inputs/tests/dependencyReports.sample.conf

    commands: [{
        executable: gradle
        args: "-q :listResolvedArtifacts"
        expected-output-file: listResolvedArtifacts.out
    },
    {
        executable: gradle
        args: "-q :graphResolvedComponents"
        expected-output-file: graphResolvedComponents.out
    },
    {
        executable: gradle
        args: "-q :graphResolvedComponentsAndFiles"
        expected-output-file: graphResolvedComponentsAndFiles.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 389 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/writing-tasks/task-with-arguments/tests/projectInfoTask.sample.conf

    commands: [{
        executable: gradle
        args: -q projectInfo --format plain
        expected-output-file: plain.out
    },
    {
        executable: gradle
        args: -q projectInfo --format json
        expected-output-file: json.out
    },
    {
        executable: gradle
        args: -q help --task projectInfo
        expected-output-file: help.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 317 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java/toolchain-filters/tests/toolchainFiltersWithoutCC.sample.conf

    commands:[{
        executable: gradle
        args: "build -DtestToolchain=knownVendor"
    }, {
        executable: gradle
        args: "build -DtestToolchain=matchingVendor"
        expect-failure: true  # The matching vendor uses a dummy vendor string that is never matched
        expected-output-file: matchingVendorWithoutCC.out
        allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 346 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/declaring-capabilities.sample.conf

    commands: [{
        executable: gradle
        args: "dependencyInsight --configuration compileClasspath --dependency log4j"
        flags: "--quiet"
        expected-output-file: dependencyReport.out
        expect-failure: false
    },{
        executable: gradle
        args: "dependencyInsight --configuration compileClasspath --dependency log4j -Preplace"
        flags: "--quiet"
        expected-output-file: dependencyReportReplaced.out
        expect-failure: false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 436 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/tests/componentMetadataRules.sample.conf

    commands: [{
        executable: gradle
        args: compileClasspathArtifacts
        flags: --quiet
        expected-output-file: compileClasspathArtifacts.out
    },{
        executable: gradle
        args: runtimeClasspathArtifacts
        flags: --quiet
        expected-output-file: runtimeClasspathArtifacts.out
    },{
        executable: gradle
        args: failRuntimeClasspathResolve
        flags: --quiet
        expect-failure: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 489 bytes
    - Viewed (0)
  9. tools/istio-clean-iptables/pkg/cmd/cleanup_test.go

    				t.Fatalf("Executed normally commands: got\n%v\nwant\n%vdiff %v",
    					ext.ExecutedNormally, expectedExecutedNormally, diff)
    			}
    
    			expectedExecutedQuietly := ext.ExecutedAll[:len(ext.ExecutedAll)-len(expectedExecutedNormally)]
    			if diff := cmp.Diff(ext.ExecutedQuietly, expectedExecutedQuietly); diff != "" {
    				t.Fatalf("Executed quietly commands: got\n%v\nwant\n%vdiff %v",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/vcstest/README

    tests of cmd/go and its subpackages.
    
    They are written in a dialect of the same script language as in
    cmd/go/testdata/script, and the outputs are hosted by the server in
    cmd/go/internal/vcweb.
    
    To see the conditions and commands available for these scripts, run:
    
    	go test cmd/go/internal/vcweb -v --run=TestHelp
    
    To host these scripts in a standalone server, run:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 487 bytes
    - Viewed (0)
Back to top