- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 308 for mkdirs (0.05 sec)
-
docs/ru/docs/contributing.md
## Документация Прежде всего, убедитесь, что Вы настроили своё окружение, как описано выше, для установки всех зависимостей. Документация использует <a href="https://www.mkdocs.org/" class="external-link" target="_blank">MkDocs</a>. Также существуют дополнительные инструменты/скрипты для работы с переводами в `./scripts/docs.py`. /// tip | "Подсказка"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 22.5K bytes - Viewed (0) -
buildscripts/verify-healing.sh
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 12 20:51:54 UTC 2024 - 4K bytes - Viewed (0) -
docs/site-replication/run-ssec-object-replication.sh
# Create certificates for TLS enabled MinIO echo -n "Setup certs for MinIO instances ..." wget -O certgen https://github.com/minio/certgen/releases/latest/download/certgen-linux-amd64 && chmod +x certgen ./certgen --host localhost mkdir -p /tmp/certs mv public.crt /tmp/certs || sudo mv public.crt /tmp/certs mv private.key /tmp/certs || sudo mv private.key /tmp/certs echo "done" # Start MinIO instances echo -n "Starting MinIO instances ..."
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 08:03:58 UTC 2024 - 9.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/FilesFileTraverserTest.java
.containsExactly(rootDir, fileA, fileB, dir1, dir2); } @CanIgnoreReturnValue private File newDir(String name) { File file = new File(rootDir, name); file.mkdir(); return file; } @CanIgnoreReturnValue private File newFile(String name) throws IOException { File file = new File(rootDir, name); file.createNewFile(); return file; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Apr 21 20:17:27 UTC 2023 - 3.4K bytes - Viewed (0) -
ci/official/containers/linux_arm64/devel.usertools/setup_venv_test.sh
# # 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 # extglob is necessary for @(a|b) pattern matching # see "extglob" in the bash manual page ($ man bash)
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Sep 18 14:52:45 UTC 2023 - 1.4K bytes - Viewed (0) -
docs/tuning/README.md
``` wget https://raw.githubusercontent.com/minio/minio/master/docs/tuning/tuned.conf ``` #### Step 2 - install tuned.conf as supported performance profile on all nodes ``` sudo mkdir -p /usr/lib/tuned/minio/ sudo mv tuned.conf /usr/lib/tuned/minio ``` #### Step 3 - to enable minio performance profile on all the nodes ``` sudo tuned-adm profile minio
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 19 01:15:02 UTC 2024 - 644 bytes - Viewed (0) -
src/packaging/deb/init.d/fess
log_begin_msg "Already running." log_end_msg 0 exit 0 fi # Prepare environment mkdir -p "$LOG_DIR" "$DATA_DIR" && chown "$FESS_USER":"$FESS_GROUP" "$LOG_DIR" "$DATA_DIR" # Ensure that the PID_DIR exists (it is cleaned at OS startup time) if [ -n "$PID_DIR" ] && [ ! -e "$PID_DIR" ]; then mkdir -p "$PID_DIR" && chown "$FESS_USER":"$FESS_GROUP" "$PID_DIR" fi if [ -n "$PID_FILE" ] && [ ! -e "$PID_FILE" ]; then
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 5.8K bytes - Viewed (0) -
docs/fr/docs/contributing.md
## Documentation Tout d'abord, assurez-vous que vous configurez votre environnement comme décrit ci-dessus, qui installera toutes les exigences. La documentation utilise <a href="https://www.mkdocs.org/" class="external-link" target="_blank">MkDocs</a>. Et il y a des outils/scripts supplémentaires en place pour gérer les traductions dans `./scripts/docs.py`. /// tip
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 16.2K bytes - Viewed (0) -
docs/en/docs/contributing.md
Go into the language directory, for the main docs in English it's at `docs/en/`: ```console $ cd docs/en/ ``` Then run `mkdocs` in that directory: ```console $ mkdocs serve --dev-addr 8008 ``` /// #### Typer CLI (optional) The instructions here show you how to use the script at `./scripts/docs.py` with the `python` program directly.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Aug 25 02:44:06 UTC 2024 - 12.7K bytes - Viewed (0) -
docs/bucket/replication/sio-error.sh
#!/bin/bash echo "Running $0" set -e set -x export CI=1 make || exit 255 killall -9 minio || true rm -rf /tmp/xl/ mkdir -p /tmp/xl/1/ /tmp/xl/2/ export MINIO_KMS_SECRET_KEY="my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw=" NODES=4 args1=() args2=() for i in $(seq 1 $NODES); do args1+=("http://localhost:$((9000 + i))/tmp/xl/1/$i ") args2+=("http://localhost:$((9100 + i))/tmp/xl/2/$i ")
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat May 18 18:19:01 UTC 2024 - 1.7K bytes - Viewed (0)