Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 804 for Commands (0.22 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    <4> Add dependencies specific to the `functionalTest` test suite
    
    === Method 2: Use `withType`, `matching` and `configureEach`
    
    This method adds filtering commands to only apply the configuration to a subset of the test suites, as identified by name.
    
    ====
    include::sample[dir="snippets/testing/test-suite-multi-configure-each-matching/kotlin",files="build.gradle.kts[tags=multi-configure]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    	// Defined for testing
    	elfOpen = elf.Open
    )
    
    // binrep is an immutable representation for Binutils.  It is atomically
    // replaced on every mutation to provide thread-safe access.
    type binrep struct {
    	// Commands to invoke.
    	llvmSymbolizer      string
    	llvmSymbolizerFound bool
    	addr2line           string
    	addr2lineFound      bool
    	nm                  string
    	nmFound             bool
    	objdump             string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	CmdlineFiles      bool                 // package built from files listed on command line
    	CmdlinePkg        bool                 // package listed on command line
    	CmdlinePkgLiteral bool                 // package listed as literal on command line (not via wildcard)
    	Local             bool                 // imported via local path (./ or ../)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

        }
    
        GradleExecuter createExecuter() {
            new GradleContextualExecuter(distribution, temporaryFolder, getBuildContext())
        }
    
        /**
         * Some integration tests need to run git commands in test directory,
         * but distributed-test-remote-executor has no .git directory so we init a "dummy .git dir".
         */
        void initGitDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	tg.ran = true
    	return status
    }
    
    // run runs the test go command, and expects it to succeed.
    func (tg *testgoData) run(args ...string) {
    	tg.t.Helper()
    	if status := tg.doRun(args); status != nil {
    		wd, _ := os.Getwd()
    		tg.t.Logf("go %v failed unexpectedly in %s: %v", args, wd, status)
    		tg.t.FailNow()
    	}
    }
    
    // runFail runs the test go command, and expects it to fail.
    func (tg *testgoData) runFail(args ...string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure.sh

      fi
    
      # Verify presence and print versions of ctr, containerd, runc
      if ! command -v ctr >/dev/null 2>&1; then
        echo "ERROR ctr not found. Aborting."
        exit 2
      fi
      ctr --version
      if ! command -v containerd >/dev/null 2>&1; then
        echo "ERROR containerd not found. Aborting."
        exit 2
      fi
      containerd --version
      if ! command -v runc >/dev/null 2>&1; then
        echo "ERROR runc not found. Aborting."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/cache.go

    	// not a problem for the go command itself, but may be an issue if the
    	// cache is being served by a GOPROXY HTTP server. This will be corrected
    	// the next time a new version of the module is fetched and the file is rewritten.
    	// TODO(matloob): golang.org/issue/43313 covers adding a go mod verify
    	// command that removes module versions that fail checksums. It should also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. hack/lib/golang.sh

      # when running in a container, please see https://github.com/golang/go/issues/33803
      if [[ -z "${GOMAXPROCS:-}" ]]; then
        if ! command -v ncpu >/dev/null 2>&1; then
          go -C "${KUBE_ROOT}/hack/tools" install ./ncpu || echo "Will not automatically set GOMAXPROCS"
        fi
        if command -v ncpu >/dev/null 2>&1; then
          GOMAXPROCS=$(ncpu)
          export GOMAXPROCS
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  9. istioctl/pkg/proxyconfig/proxyconfig.go

    	}
    	return configWriter.PrintPodRootCAFromDynamicSecretDump()
    }
    
    func ProxyConfig(ctx cli.Context) *cobra.Command {
    	configCmd := &cobra.Command{
    		Use:   "proxy-config",
    		Short: "Retrieve information about proxy configuration from Envoy [kube only]",
    		Long:  `A group of commands used to retrieve information about proxy configuration from the Envoy config dump`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

      gcloud compute --project "${PROJECT}" ssh --zone "${ZONE}" "${KUBE_MASTER}" --command \
        "curl --fail --silent -H 'Metadata-Flavor: Google' \
          'http://metadata/computeMetadata/v1/instance/attributes/kube-env'" 2>/dev/null
      gcloud compute --project "${PROJECT}" ssh --zone "${ZONE}" "${KUBE_MASTER}" --command \
        "curl --fail --silent -H 'Metadata-Flavor: Google' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top