- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 308 for mkdirs (0.12 sec)
-
ci/official/utilities/setup_macos.sh
# VMs when needed. # TODO(b/316932689): Avoid copying and replace with a local repository rule. if [[ "$TFCI_MACOS_CROSS_COMPILE_ENABLE" == 1 ]]; then mkdir -p "${TFCI_MACOS_CROSS_COMPILE_SDK_DEST}/usr" mkdir -p "${TFCI_MACOS_CROSS_COMPILE_SDK_DEST}/System/Library/Frameworks/" cp -r "${TFCI_MACOS_CROSS_COMPILE_SDK_SOURCE}/usr/include" "${TFCI_MACOS_CROSS_COMPILE_SDK_DEST}/usr/include"
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Feb 15 15:23:28 UTC 2024 - 6.2K bytes - Viewed (0) -
Makefile.core.mk
export REPO_ROOT := $(shell git rev-parse --show-toplevel) # Make directories needed by the build system $(shell mkdir -p $(TARGET_OUT_LINUX)) $(shell mkdir -p $(TARGET_OUT_LINUX)/logs) $(shell mkdir -p $(dir $(JUNIT_OUT))) # Need separate target for init: $(TARGET_OUT): @mkdir -p $@ # If the hub is not explicitly set, use default to istio. HUB ?=istio ifeq ($(HUB),) $(error "HUB cannot be empty")
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 03 23:53:59 UTC 2024 - 18.4K bytes - Viewed (0) -
bin/init.sh
# $2: The full path of the output binary. # $3: Non-versioned name to use function download_envoy_if_necessary () { if [[ ! -f "$2" ]] ; then # Enter the output directory. mkdir -p "$(dirname "$2")" pushd "$(dirname "$2")" # Download and extract the binary to the output directory. echo "Downloading ${SIDECAR}: $1 to $2" time ${DOWNLOAD_COMMAND} --header "${AUTH_HEADER:-}" "$1" |\
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jan 25 19:11:31 UTC 2024 - 6.1K bytes - Viewed (0) -
docs/de/docs/contributing.md
Gehen Sie in das Verzeichnis für die entsprechende Sprache. Das für die englischsprachige Hauptdokumentation befindet sich unter `docs/en/`: ```console $ cd docs/en/ ``` Führen Sie dann `mkdocs` in diesem Verzeichnis aus: ```console $ mkdocs serve --dev-addr 8008 ``` /// #### Typer-CLI (optional)
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 16.1K bytes - Viewed (0) -
scripts/mkdocs_hooks.py
from functools import lru_cache from pathlib import Path from typing import Any, List, Union import material from mkdocs.config.defaults import MkDocsConfig from mkdocs.structure.files import File, Files from mkdocs.structure.nav import Link, Navigation, Section from mkdocs.structure.pages import Page non_translated_sections = [ "reference/", "release-notes.md", "fastapi-people.md", "external-links.md",
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 17 21:20:31 UTC 2024 - 5.2K bytes - Viewed (0) -
docs/en/overrides/partials/copyright.html
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Feb 04 20:56:59 UTC 2024 - 450 bytes - Viewed (0) -
ci/official/containers/linux_arm64/devel.usertools/repack_libtensorflow.sh
jar -xf "${tmp_dir}/orig.jar" src/ # Extract any org/ files under src/main/java (mkdir -p src/main/java && cd src/main/java && jar -xf "${tmp_dir}/orig.jar" org/) # Repackage src/ jar -cMf "${tmp_dir}/new.jar" src popd cp "${tmp_dir}/new.jar" "${dest_jar}" rm -rf "${tmp_dir}" } DIR=$1 TARBALL_SUFFIX=$2 mkdir -p "$DIR"
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Sep 18 14:52:45 UTC 2023 - 2.6K bytes - Viewed (0) -
.github/workflows/docs.yml
with: distribution: 'zulu' java-version: 17 - uses: actions/setup-python@v5 with: python-version: 3.x - run: pip install mkdocs-material mkdocs-redirects - name: Generate Docs run: ./test_docs.sh - uses: actions/upload-artifact@v4 with: name: docs
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Mar 04 06:13:36 UTC 2024 - 1K bytes - Viewed (0) -
docs/pt/docs/contributing.md
## Documentação Primeiro, tenha certeza de configurar seu ambiente como descrito acima, isso irá instalar todas as requisições. A documentação usa <a href="https://www.mkdocs.org/" class="external-link" target="_blank">MkDocs</a>. E existem ferramentas/_scripts_ extras para controlar as traduções em `./scripts/docs.py`. /// tip
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 14.8K bytes - Viewed (0) -
deploy_website.sh
cp CONTRIBUTING.md docs/contribute/contributing.md # Build the site and push the new files up to GitHub python3 -m venv venv source venv/bin/activate pip install mkdocs-material mkdocs-redirects mkdocs gh-deploy # Restore Javadocs from 1.x, 2.x, and 3.x. git checkout gh-pages git cherry-pick bb229b9dcc9a21a73edbf8d936bea88f52e0a3ff git cherry-pick c695732f1d4aea103b826876c077fbfea630e244
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Nov 20 15:26:12 UTC 2023 - 1.2K bytes - Viewed (0)