Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 512 for Commands (4.52 sec)

  1. 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)
  2. 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)
  3. 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)
  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. 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)
  6. 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)
  7. 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)
  8. pkg/kubelet/server/server.go

    			To(s.checkpoint).
    			Operation("checkpoint"))
    		s.restfulCont.Add(ws)
    	}
    }
    
    // InstallDebuggingHandlers registers the HTTP request patterns that serve logs or run commands/containers
    func (s *Server) InstallDebuggingHandlers() {
    	klog.InfoS("Adding debug handlers to kubelet server")
    
    	s.addMetricsBucketMatcher("run")
    	ws := new(restful.WebService)
    	ws.
    		Path("/run")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/macho.go

    }
    
    // peekMachoPlatform returns the first LC_VERSION_MIN_* or LC_BUILD_VERSION
    // load command found in the Mach-O file, if any.
    func peekMachoPlatform(m *macho.File) (*MachoPlatformLoad, error) {
    	for _, cmd := range m.Loads {
    		raw := cmd.Raw()
    		ml := MachoLoad{
    			type_: m.ByteOrder.Uint32(raw),
    		}
    		// Skip the type and command length.
    		data := raw[8:]
    		var p MachoPlatform
    		switch ml.type_ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  10. src/archive/tar/writer_test.go

    				Gname:    "strings",
    				ModTime:  time.Unix(1314603082, 0),
    			}, nil},
    			testWrite{"", 0, nil},
    
    			testClose{nil},
    		},
    	}, {
    		// The truncated test file was produced using these commands:
    		//   dd if=/dev/zero bs=1048576 count=16384 > /tmp/16gig.txt
    		//   tar -b 1 -c -f- /tmp/16gig.txt | dd bs=512 count=8 > writer-big.tar
    		file: "testdata/writer-big.tar",
    		tests: []testFnc{
    			testHeader{Header{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
Back to top