Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,597 for Commands (0.27 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/snippets/base/customExternalTask/tests/externalTask.sample.conf

    commands: [{
        execution-subdirectory: task
        executable: gradle
        args: check publish
    }, {
        execution-subdirectory: consumer
        executable: gradle
        args: greeting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 180 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/configurationCache/topLevel/tests-kotlin/notSupported.sample.conf

    commands: [{
        executable: gradle
        args: listFiles
        expect-failure: true
        allow-additional-output: true
        expected-output-file: notSupported.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 161 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/java/jvm-multi-project-with-additional-test-types/tests/checkTask.sample.conf

    commands: [{
        executable: gradle
        args: check
        expected-output-file: checkTask.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
    - 163 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/signing/configurations/tests/sanityCheck.sample.conf

    commands: [{
        executable: gradle
        args: help -q
        # Do not fail for deprecation warnings: deprecated Maven plugin
        flags: "--warning-mode=none"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 158 bytes
    - Viewed (0)
  7. releasenotes/notes/disable-leader-elect.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    issue:
      - https://github.com/istio/istio/issues/40427
    
    docs:
     - '[reference] https://istio.io/latest/docs/reference/commands/pilot-discovery/'
    
    releaseNotes:
    - |
      **Added** an `ENABLE_LEADER_ELECTION=false` feature flag for pilot-discovery
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 26 18:29:36 UTC 2022
    - 374 bytes
    - Viewed (0)
  8. src/cmd/go/internal/workcmd/work.go

    primarily intended to override conflicting replaces in different workspace
    modules.
    
    To determine whether the go command is operating in workspace mode, use
    the "go env GOWORK" command. This will specify the workspace file being
    used.
    `,
    
    	Commands: []*base.Command{
    		cmdEdit,
    		cmdInit,
    		cmdSync,
    		cmdUse,
    		cmdVendor,
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tasks/incrementalTask/tests/incrementalTaskRemovedInput.sample.conf

    commands: [{
        executable: gradle
        args: originalInputs incrementalReverse
        flags: --quiet
    }, {
        executable: gradle
        args: removeInput incrementalReverse
        flags: --quiet
        expected-output-file: incrementalTaskRemovedInput.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 248 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/tests/check.sample.conf

    commands: [{
        executable: gradle
        args: check
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 55 bytes
    - Viewed (0)
Back to top