Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for pkgdep (0.24 sec)

  1. hack/local-up-cluster.sh

      [[ -n "${APISERVER_PID-}" ]] && kube::util::read-array APISERVER_PIDS < <(pgrep -P "${APISERVER_PID}" ; ps -o pid= -p "${APISERVER_PID}")
      [[ -n "${APISERVER_PIDS-}" ]] && sudo kill "${APISERVER_PIDS[@]}" 2>/dev/null
    
      # Check if the controller-manager is still running
      [[ -n "${CTLRMGR_PID-}" ]] && kube::util::read-array CTLRMGR_PIDS < <(pgrep -P "${CTLRMGR_PID}" ; ps -o pid= -p "${CTLRMGR_PID}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/init.go

    	if err := fsys.Init(base.Cwd()); err != nil {
    		base.Fatal(err)
    	}
    
    	// Make sure -pkgdir is absolute, because we run commands
    	// in different directories.
    	if cfg.BuildPkgdir != "" && !filepath.IsAbs(cfg.BuildPkgdir) {
    		p, err := filepath.Abs(cfg.BuildPkgdir)
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "go: evaluating -pkgdir: %v\n", err)
    			base.SetExitStatus(2)
    			base.Exit()
    		}
    		cfg.BuildPkgdir = p
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 19:13:34 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. buildscripts/verify-healing-empty-erasure-set.sh

    	if ! pkill minio; then
    		for i in $(seq 1 3); do
    			echo "server$i log:"
    			cat "${WORK_DIR}/dist-minio-server$i.log"
    		done
    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	sleep 1
    	if pgrep minio; then
    		# forcibly killing, to proceed further properly.
    		if ! pkill -9 minio; then
    			echo "no minio process running anymore, proceed."
    		fi
    	fi
    }
    
    function check_online() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. Makefile

    	$(eval VERSION := $(shell git describe --tags --abbrev=0).hotfix.$(shell git rev-parse --short HEAD))
    
    hotfix: hotfix-vars clean install ## builds minio binary with hotfix tags
    	@wget -q -c https://github.com/minio/pkger/releases/download/v2.2.9/pkger_2.2.9_linux_amd64.deb
    	@wget -q -c https://raw.githubusercontent.com/minio/minio-service/v1.0.1/linux-systemd/distributed/minio.service
    	@sudo apt install ./pkger_2.2.9_linux_amd64.deb --yes
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. hack/grab-profiles.sh

    gcloud compute ssh "${server_addr}" --ssh-flag=-nN --ssh-flag=-L"${tunnel_port}":localhost:8080 &
    
    echo "Waiting for tunnel to be created..."
    kube::util::wait_for_url http://localhost:"${tunnel_port}"/healthz
    
    SSH_PID=$(pgrep -f "/usr/bin/ssh.*${tunnel_port}:localhost:8080")
    kube::util::trap_add "kill $SSH_PID" EXIT
    kube::util::trap_add "kill $SSH_PID" SIGTERM
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 17 06:47:05 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf_test.go

    func gobuildTestdata(t *testing.T, tdir string, pkgDir string, gcflags string) *builtFile {
    	dst := filepath.Join(tdir, "out.exe")
    
    	// Run a build with an updated GOPATH
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "build", gcflags, "-o", dst)
    	cmd.Dir = pkgDir
    	if b, err := cmd.CombinedOutput(); err != nil {
    		t.Logf("build: %s\n", b)
    		t.Fatalf("build error: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  7. src/cmd/internal/archive/archive.go

    		}
    		if err != nil {
    			return errCorruptArchive
    		}
    		data = data[60:]
    		fsize := size + size&1
    		if fsize < 0 || fsize < size {
    			return errCorruptArchive
    		}
    		switch name {
    		case "__.PKGDEF":
    			r.a.Entries = append(r.a.Entries, Entry{
    				Name:  name,
    				Type:  EntryPkgDef,
    				Mtime: mtime,
    				Uid:   uid,
    				Gid:   gid,
    				Mode:  mode,
    				Data:  Data{r.offset, size},
    			})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  8. src/cmd/pack/pack_test.go

    	out := run("./a.out")
    	if out != "hello world\n" {
    		t.Fatalf("incorrect output: %q, want %q", out, "hello world\n")
    	}
    }
    
    // Test that pack works with very long lines in PKGDEF.
    func TestLargeDefs(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping in -short mode")
    	}
    	testenv.MustHaveGoBuild(t)
    
    	dir := t.TempDir()
    	large := filepath.Join(dir, "large.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 16:27:35 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/build.go

    		dependencies of the main package (other packages are not affected).
    		Special name "off" turns off PGO. The default is "auto".
    	-pkgdir dir
    		install and load all packages from dir instead of the usual locations.
    		For example, when building with a non-standard configuration,
    		use -pkgdir to keep generated packages in a separate location.
    	-tags tag,list
    		a comma-separated list of additional build tags to consider satisfied
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. src/cmd/link/link_test.go

    		t.Skipf("this is only for windows/amd64 and windows/386")
    	}
    
    	t.Parallel()
    
    	tmpdir := t.TempDir()
    
    	pkgdir := filepath.Join("testdata", "pe-binutils")
    	exe := filepath.Join(tmpdir, "a.exe")
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "build", "-o", exe)
    	cmd.Dir = pkgdir
    	// cmd.Env = append(os.Environ(), "GOOS=windows", "GOARCH=amd64") // uncomment if debugging in a cross-compiling environment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top