Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,561 for kenv (0.1 sec)

  1. istioctl/pkg/workload/testdata/vmconfig/ipv6/cluster.env.golden

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 657 bytes
    - Viewed (0)
  2. .gitignore

    .idea
    .ipynb_checkpoints
    .mypy_cache
    .vscode
    __pycache__
    .pytest_cache
    htmlcov
    dist
    site
    .coverage
    coverage.xml
    .netlify
    test.db
    log.txt
    Pipfile.lock
    env3.*
    env
    docs_build
    site_build
    venv
    docs.zip
    archive.zip
    
    # vim temporary files
    *~
    .*.sw?
    .cache
    
    # macOS
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 13:11:35 UTC 2023
    - 268 bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/devel.usertools/setup_venv_test.sh

    # Example: setup_venv_test.sh bazel_pip "/tf/pkg/*.whl"
    # 
    # This will create a venv with that wheel file installed in it, and a symlink
    # in ./venv_and_symlink_name/tensorflow to ./tensorflow. We use this for the
    # "pip" tests.
    
    python -m venv /$1
    mkdir -p $1
    rm -f ./$1/tensorflow
    ln -s $(ls /$1/lib) /$1/lib/python3
    ln -s ../tensorflow $1/tensorflow
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. ci/official/utilities/rename_and_verify_wheels.sh

      echo '(search for TFCI_WHL_SIZE_LIMIT to change it)'
      ls -sh *.whl
      exit 2
    fi
    
    # Quick install checks
    venv=$(mktemp -d)
    "python${TFCI_PYTHON_VERSION}" -m venv "$venv"
    python="$venv/bin/python3"
    "$python" -m pip install *.whl $TFCI_PYTHON_VERIFY_PIP_INSTALL_ARGS
    if [[ "$TFCI_WHL_IMPORT_TEST_ENABLE" == "1" ]]; then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 21:16:27 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. releasenotes/notes/env-workload-rsa-keysize.yaml

    sha-rath <******@****.***> 1650601369 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 22 04:22:49 UTC 2022
    - 171 bytes
    - Viewed (0)
  6. pkg/kube/inject/template.go

    // in annotations/labels.
    func strdict(v ...string) map[string]string {
    	dict := map[string]string{}
    	lenv := len(v)
    	for i := 0; i < lenv; i += 2 {
    		key := v[i]
    		if i+1 >= lenv {
    			dict[key] = ""
    			continue
    		}
    		dict[key] = v[i+1]
    	}
    	return dict
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. docs/em/docs/contributing.md

    ### 🕹 🌐 ⏮️ `venv`
    
    👆 💪 ✍ 🕹 🌐 📁 ⚙️ 🐍 `venv` 🕹:
    
    <div class="termy">
    
    ```console
    $ python -m venv env
    ```
    
    </div>
    
    👈 🔜 ✍ 📁 `./env/` ⏮️ 🐍 💱 &amp; ⤴️ 👆 🔜 💪 ❎ 📦 👈 ❎ 🌐.
    
    ### 🔓 🌐
    
    🔓 🆕 🌐 ⏮️:
    
    === "💾, 🇸🇻"
    
        <div class="termy">
    
        ```console
        $ source ./env/bin/activate
        ```
    
        </div>
    
    === "🚪 📋"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 11 21:38:15 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  8. docs/en/docs/contributing.md

    ### Virtual environment with `venv`
    
    You can create an isolated virtual local environment in a directory using Python's `venv` module. Let's do this in the cloned repository (where the `requirements.txt` is):
    
    <div class="termy">
    
    ```console
    $ python -m venv env
    ```
    
    </div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/bug/bug.go

    	fmt.Fprintf(w, "<details><summary><code>go env</code> Output</summary><br><pre>\n")
    	fmt.Fprintf(w, "$ go env\n")
    	printGoEnv(w)
    	printGoDetails(w)
    	printOSDetails(w)
    	printCDetails(w)
    	fmt.Fprintf(w, "</pre></details>\n\n")
    }
    
    func printGoEnv(w io.Writer) {
    	env := envcmd.MkEnv()
    	env = append(env, envcmd.ExtraEnvVars()...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. docs/pt/docs/contributing.md

    ### Ambiente virtual com `venv`
    
    Você pode criar um ambiente virtual em um diretório utilizando o módulo `venv` do Python:
    
    <div class="termy">
    
    ```console
    $ python -m venv env
    ```
    
    </div>
    
    Isso criará o diretório `./env/` com os binários Python e então você será capaz de instalar pacotes nesse ambiente isolado.
    
    ### Ativar o ambiente
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 11 21:38:15 UTC 2023
    - 14.9K bytes
    - Viewed (0)
Back to top