Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 88 of 88 for xworkdir (0.2 sec)

  1. tests/integration/README.md

    the `--istio.test.work_dir` flag). The name of the work dir will be based on the test id that is supplied in
    a tests TestMain method. These files typically contain some of the logging & diagnostic output that components
    spew out as part of test execution
    
    ```console
    $ go test galley/... --istio.test.work_dir /foo
      ...
    
    $ ls /foo
      galley-test-4ef25d910d2746f9b38/
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. docs/ja/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
    - 44.3K bytes
    - Viewed (0)
  3. pkg/test/framework/resource/flags.go

    	}
    
    	return nil
    }
    
    // init registers the command-line flags that we can exposed for "go test".
    func init() {
    	log.EnableKlogWithGoFlag()
    	flag.StringVar(&settingsFromCommandLine.BaseDir, "istio.test.work_dir", os.TempDir(),
    		"Local working directory for creating logs/temp files. If left empty, os.TempDir() is used.")
    
    	var env string
    	flag.StringVar(&env, "istio.test.env", "", "Deprecated. This flag does nothing")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    ctuation=a.languages.bash.punctuation,a.languages.shell=a.languages.bash}(Prism),Prism.languages.docker={keyword:{pattern:/(^\s*)(?:ADD|ARG|CMD|COPY|ENTRYPOINT|ENV|EXPOSE|FROM|HEALTHCHECK|LABEL|MAINTAINER|ONBUILD|RUN|SHELL|STOPSIGNAL|USER|VOLUME|WORKDIR)(?=\s)/mi,lookbehind:!0},string:/("|')(?:(?!\1)[^\\\r\n]|\\(?:\r\n|[\s\S]))*\1/,comment:/#.*/,punctuation:/---|\.\.\.|[:[\]{}\-,|>?]/},Prism.languages.dockerfile=Prism.languages.docker,Prism.languages.go=Prism.languages.extend('clike',{keyword:/\...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/codehost/git.go

    func newGitRepo(ctx context.Context, remote string, localOK bool) (Repo, error) {
    	r := &gitRepo{remote: remote}
    	if strings.Contains(remote, "://") {
    		// This is a remote path.
    		var err error
    		r.dir, r.mu.Path, err = WorkDir(ctx, gitWorkDirType, r.remote)
    		if err != nil {
    			return nil, err
    		}
    
    		unlock, err := r.mu.Lock()
    		if err != nil {
    			return nil, err
    		}
    		defer unlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    func loadWorkFile(path string) (workFile *modfile.WorkFile, modRoots []string, err error) {
    	workDir := filepath.Dir(path)
    	wf, err := ReadWorkFile(path)
    	if err != nil {
    		return nil, nil, err
    	}
    	seen := map[string]bool{}
    	for _, d := range wf.Use {
    		modRoot := d.Path
    		if !filepath.IsAbs(modRoot) {
    			modRoot = filepath.Join(workDir, modRoot)
    		}
    
    		if seen[modRoot] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. RELEASE.md

        data from the dataset.
    *   Adds support for dispatcher fault tolerance. To enable fault tolerance,
        configure a `work_dir` when running your dispatcher server and set
        `dispatcher_fault_tolerance=True`. The dispatcher will store its state to
        `work_dir`, so that on restart it can continue from its previous state after
        restart.
    *   Adds support for sharing dataset graphs via shared filesystem instead of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  8. ChangeLog.md

    ### Native. Runtime
    
    - [`KT-65170`](https://youtrack.jetbrains.com/issue/KT-65170) Kotlin/Native: deprecate -Xworker-exception-handling=legacy with error
    
    ### Native. Runtime. Memory
    
    - [`KT-62689`](https://youtrack.jetbrains.com/issue/KT-62689) Native: generate signposts for GC performance debugging
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top