- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 551 for commande (0.06 sec)
-
docs/fr/README.md
### Créer un Package Exécutez la commande `package` et le fichier de release sera créé dans target/releases. $ mvn package $ mvn rpm:rpm # package .rpm $ mvn jdeb:jdeb # package .deb ### Générer le Code Source $ mvn dbflute:download # (commande unique) $ mvn dbflute:freegen $ mvn license:format ### Tests d'Intégration
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 07:19:47 UTC 2024 - 7.9K bytes - Viewed (0) -
docs/fr/docs/contributing.md
Lorsque vous utilisez le script à `./scripts/docs.py` avec la commande `live`, il n'affiche que les fichiers et les traductions disponibles pour la langue courante. Mais une fois que vous avez terminé, vous pouvez tester le tout comme il le ferait en ligne. Pour ce faire, il faut d'abord construire tous les documents : <div class="termy"> ```console // Use the command "build-all", this will take a bit
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/fr/docs/async.md
Ensuite, quand c'est votre tour, vous faites des actions "productives" 🤓, vous étudiez le menu, décidez ce que vous voulez, demandez à votre crush 😍 son choix, payez 💸, vérifiez que vous utilisez la bonne carte de crédit, vérifiez que le montant débité sur la carte est correct, vérifiez que la commande contient les bons produits, etc.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 25.4K bytes - Viewed (0) -
docs/fr/docs/tutorial/first-steps.md
<span style="color: green;">INFO</span>: Waiting for application startup. <span style="color: green;">INFO</span>: Application startup complete. ``` </div> /// note La commande `uvicorn main:app` fait référence à : * `main` : le fichier `main.py` (le module Python). * `app` : l'objet créé dans `main.py` via la ligne `app = FastAPI()`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.3K bytes - Viewed (0) -
docs/fr/docs/index.md
INFO: Waiting for application startup. INFO: Application startup complete. ``` </div> <details markdown="1"> <summary>À propos de la commande <code>uvicorn main:app --reload</code> ...</summary> La commande `uvicorn main:app` fait référence à : * `main` : le fichier `main.py` (le "module" Python). * `app` : l'objet créé à l'intérieur de `main.py` avec la ligne `app = FastAPI()`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 22K bytes - Viewed (0) -
docs/fr/docs/deployment/manually.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 5.3K bytes - Viewed (0) -
cmd/main.go
commandsTree := trie.NewTrie() // registerCommand registers a cli command. registerCommand := func(command cli.Command) { // avoid registering commands which are not being built (via // go:build tags) if command.Name == "" { return } commands = append(commands, command) commandsTree.Insert(command.Name) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jul 30 22:59:48 UTC 2024 - 6.5K bytes - Viewed (0) -
ci/official/utilities/setup.sh
# lean and easy to follow. When in doubt, remember that for CI scripts, "keep it # simple" is MUCH more important than "don't repeat yourself." # -e: abort script if one command fails # -u: error if undefined variable used # -x: log all commands # -o pipefail: entire command fails if pipe fails. watch out for yes | ... # -o history: record shell history # -o allexport: export all functions and variables to be available to subscripts
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Aug 07 23:01:25 UTC 2024 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
protected int executeCommand(final String[] commands, final String username, final String password) { if (commands == null || commands.length == 0) { throw new CommandExecutionException("command is empty."); } if (logger.isInfoEnabled()) { logger.info("Command: {}", String.join(" ", commands)); } final String[] cmds = stream(commands).get(stream -> stream.map(s -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.3K bytes - Viewed (0) -
gradlew
# «${var#prefix}», «${var%suffix}», and «$( cmd )»; # * compound commands having a testable exit status, especially «case»; # * various built-in commands including «command», «set», and «ulimit». # # Important for patching: # # (2) This script targets any POSIX shell, so it avoids extensions provided # by Bash, Ksh, etc; in particular arrays are avoided. #
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Dec 24 09:00:26 UTC 2023 - 8.5K bytes - Viewed (0)