Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,852 for Commands (1.08 sec)

  1. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/tests/build-server-application.sample.conf

    commands: [{
        executable: gradle
        args: build
        execution-subdirectory: server-application
        # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
        flags: "--warning-mode=none"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 245 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/tests/incrementalBuildUpToDateWhen.sample.conf

    commands: [{
        executable: gradle
        args: clean alwaysInstrumentClasses
        allow-additional-output: true
        allow-disordered-output: true
    },{
        executable: gradle
        args: alwaysInstrumentClasses
        expected-output-file: incrementalBuildUpToDateWhenAgain.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
    - 340 bytes
    - Viewed (0)
  3. releasenotes/notes/drop-istioctl-mesh.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
    - |
      **Removed** the following experimental `istioctl` commands: `add-to-mesh`, `remove-from-mesh` and `kube-uninject`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 22 17:51:15 UTC 2023
    - 260 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features-external/tests/requiringFeaturesFromExternalRepo.sample.conf

    commands: [{
        execution-subdirectory: project
        executable: gradle
        args: "dependencyInsight --configuration compileClasspath --dependency mongo"
        expected-output-file: compileClasspath.out
    },{
        execution-subdirectory: project
        executable: gradle
        args: "dependencyInsight --configuration runtimeClasspath --dependency mongo"
        expected-output-file: runtimeClasspath.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 396 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/spring-boot-web-application/tests/testTask.sample.conf

    commands: [{
        executable: gradle
        args: test
        expected-output-file: testTask.out
    # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
        flags: "--warning-mode=none"
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 266 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/configurationCache/disallowedTypesFixed/tests/configurationCacheDisallowedTypesFixed.sample.conf

    commands: [{
      executable: gradle
      args: someTaskType someTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67 bytes
    - Viewed (0)
  7. src/cmd/go/internal/generate/generate_test.go

    	}
    }
    
    // Command-related tests for TestGenerateCommandShortHand2
    // -- Note line numbers included to check substitutions from "build-in" variable - $GOLINE
    var splitTestsLines = []splitTestWithLine{
    	{"-command TEST1 $GOLINE", []string{"-command", "TEST1", "22"}, 22},
    	{"-command TEST2 ${DOLLAR}GOLINE", []string{"-command", "TEST2", "$GOLINE"}, 26},
    	{"TEST1", []string{"22"}, 33},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 14:09:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/build_pgo_auto.txt

    ! stderr 'build\\t-pgo='
    
    # other build-related commands
    go install -a -n -pgo=auto ./a/a1
    stderr 'compile.*-pgoprofile=.*a1.go'
    
    go run -a -n -pgo=auto ./a/a1
    stderr 'compile.*-pgoprofile=.*a1.go'
    
    go test -a -n -pgo=auto ./a/a1
    stderr 'compile.*-pgoprofile=.*a1.go.*a1_test.go'
    stderr 'compile.*-pgoprofile=.*external_test.go'
    
    # go list commands should succeed as usual
    go list -pgo=auto ./a/a1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/plugins/customPlugin/tests/sanityCheck.sample.conf

    commands: [{
        execution-subdirectory: java-gradle-plugin
        executable: gradle
        args: tasks -q
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 105 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_commit.txt

    # go get should skip build with no Go files in root
    go get golang.org/x/text@14c0d48
    
    # dropping -d, we should see a build.
    [short] skip
    
    env GOCACHE=$WORK/gocache  # Looking for compile commands, so need a clean cache.
    
    go build -x golang.org/x/text/language
    stderr 'compile|cp|gccgo .*language\.a$'
    
    go list -f '{{.Stale}}' golang.org/x/text/language
    stdout ^false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 21 20:57:57 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top