Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 88 for xworkdir (0.25 sec)

  1. samples/bookinfo/README.md

     => CACHED [examples-bookinfo-ratings-v-faulty 5/6] WORKDIR /opt/microservices                                                                                                                        0.0s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. docs/de/docs/deployment/docker.md

    ```{ .dockerfile .annotate }
    # (1)
    FROM python:3.9 as requirements-stage
    
    # (2)
    WORKDIR /tmp
    
    # (3)
    RUN pip install poetry
    
    # (4)
    COPY ./pyproject.toml ./poetry.lock* /tmp/
    
    # (5)
    RUN poetry export -f requirements.txt --output requirements.txt --without-hashes
    
    # (6)
    FROM python:3.9
    
    # (7)
    WORKDIR /code
    
    # (8)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:19:17 UTC 2024
    - 38.9K bytes
    - Viewed (0)
  3. docs/pt/docs/deployment/docker.md

    ```{ .dockerfile .annotate }
    # (1)
    FROM python:3.9 as requirements-stage
    
    # (2)
    WORKDIR /tmp
    
    # (3)
    RUN pip install poetry
    
    # (4)
    COPY ./pyproject.toml ./poetry.lock* /tmp/
    
    # (5)
    RUN poetry export -f requirements.txt --output requirements.txt --without-hashes
    
    # (6)
    FROM python:3.9
    
    # (7)
    WORKDIR /code
    
    # (8)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  4. docs/zh/docs/deployment/docker.md

    ```{ .dockerfile .annotate }
    # (1)
    FROM python:3.9 as requirements-stage
    
    # (2)
    WORKDIR /tmp
    
    # (3)
    RUN pip install poetry
    
    # (4)
    COPY ./pyproject.toml ./poetry.lock* /tmp/
    
    # (5)
    RUN poetry export -f requirements.txt --output requirements.txt --without-hashes
    
    # (6)
    FROM python:3.9
    
    # (7)
    WORKDIR /code
    
    # (8)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  5. tests/integration/tests.mk

    endif
    
    ifeq ($(shell uname -m),aarch64)
        _INTEGRATION_TEST_FLAGS += --istio.test.kube.architecture=arm64
    endif
    
    ifneq ($(ARTIFACTS),)
        _INTEGRATION_TEST_FLAGS += --istio.test.work_dir=$(ARTIFACTS)
    endif
    
    ifneq ($(HUB),)
        _INTEGRATION_TEST_FLAGS += --istio.test.hub=$(HUB)
    endif
    
    ifneq ($(TAG),)
        _INTEGRATION_TEST_FLAGS += --istio.test.tag=$(TAG)
    endif
    
    ifneq ($(VARIANT),)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testshared/shared_test.go

    	if err != nil {
    		log.Fatal(err)
    	}
    	oldGOROOT = filepath.Join(cwd, "../../../../..")
    
    	workDir, err := os.MkdirTemp("", "shared_test")
    	if err != nil {
    		return 0, err
    	}
    	if *testWork || testing.Verbose() {
    		fmt.Printf("+ mkdir -p %s\n", workDir)
    	}
    	if !*testWork {
    		defer os.RemoveAll(workDir)
    	}
    
    	// -buildmode=shared fundamentally does not work in module mode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/codehost/vcs.go

    	}
    	if !strings.Contains(remote, "://") {
    		return nil, fmt.Errorf("invalid vcs remote: %s %s", vcs, remote)
    	}
    
    	r := &vcsRepo{remote: remote, cmd: cmd}
    	var err error
    	r.dir, r.mu.Path, err = WorkDir(ctx, vcsWorkDirType+vcs, r.remote)
    	if err != nil {
    		return nil, err
    	}
    
    	if cmd.init == nil {
    		return r, nil
    	}
    
    	unlock, err := r.mu.Lock()
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. docs/ko/docs/deployment/docker.md

    ```{ .dockerfile .annotate }
    # (1)
    FROM python:3.9 as requirements-stage
    
    # (2)
    WORKDIR /tmp
    
    # (3)
    RUN pip install poetry
    
    # (4)
    COPY ./pyproject.toml ./poetry.lock* /tmp/
    
    # (5)
    RUN poetry export -f requirements.txt --output requirements.txt --without-hashes
    
    # (6)
    FROM python:3.9
    
    # (7)
    WORKDIR /code
    
    # (8)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. tests/integration/helm/util.go

    // the tag that comes with the chart.
    func GetValuesOverrides(ctx framework.TestContext, hub, tag, variant, revision string, isAmbient bool) string {
    	workDir := ctx.CreateTmpDirectoryOrFail("helm")
    
    	// Only use a tag value if not empty. Not having a tag in values means: Use the tag directly from the chart
    	if tag != "" {
    		tag = "tag: " + tag
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. tests/integration/operator/switch_cr_test.go

    	iopCRFile             = ""
    )
    
    func TestController(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    			workDir, err := t.CreateTmpDirectory("operator-controller-test")
    			if err != nil {
    				t.Fatal("failed to create test directory")
    			}
    			cs := t.Clusters().Default()
    			cleanupInClusterCRs(t, cs)
    			t.Cleanup(func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top