Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for commander (0.09 sec)

  1. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

        public void test_multiple_commands_configuration() throws Exception {
            // Test setting multiple commands without triggering execution
            final List<String> commands =
                    Arrays.asList("command1 ${url} ${outputFile}", "command2 ${url} ${outputFile}", "command3 ${url} ${outputFile}");
    
            generator.setCommandList(commands);
            assertTrue("Multiple commands should be settable", true);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  2. docs/fr/docs/async.md

    #### Burgers concurrents
    
    Vous amenez votre crush 😍 dans votre fast food 🍔 favori, et faites la queue pendant que le serveur 💁 prend les commandes des personnes devant vous.
    
    <img src="/img/async/concurrent-burgers/concurrent-burgers-01.png" class="illustration">
    
    Puis vient votre tour, vous commandez alors 2 magnifiques burgers 🍔 pour votre crush 😍 et vous.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:56:21 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

        /**
         * Constructs an AndX message block with configuration and command
         * @param config the configuration
         * @param command the SMB command
         */
        protected AndXServerMessageBlock(final Configuration config, final byte command) {
            this(config, command, null);
        }
    
        /**
         * Constructs an AndX message block with command and chained command
         * @param config the configuration
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

         */
        boolean isTraceResourceUsage();
    
        /**
         * Checks if compound requests are allowed for the specified command
         *
         * @param command the SMB command to check
         * @return whether to allow creating compound requests with that command
         */
        boolean isAllowCompound(String command);
    
        /**
         * Machine identifier
         *
         * ClientGuid, ... are derived from this value.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/server-workers.md

    Here I'll show you how to use **Uvicorn** with **worker processes** using the `fastapi` command or the `uvicorn` command directly.
    
    /// info
    
    If you are using containers, for example with Docker or Kubernetes, I'll tell you more about that in the next chapter: [FastAPI in Containers - Docker](docker.md){.internal-link target=_blank}.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  6. docs/en/docs/virtual-environments.md

    <div class="termy">
    
    ```console
    $ Get-Command python
    
    C:\Users\user\code\awesome-project\.venv\Scripts\python
    ```
    
    </div>
    
    ////
    
    That means that the `python` program that will be used is the one **in the virtual environment**.
    
    You use `which` in Linux and macOS and `Get-Command` in Windows PowerShell.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/config/BaseConfiguration.java

        public boolean isAllowCompound(final String command) {
            if (this.disallowCompound == null) {
                return true;
            }
            return !this.disallowCompound.contains(command);
        }
    
        /**
         * Gets the batch limit for a specific command
         *
         * @param cmd the command to get the batch limit for
         * @return the batch limit for the command, or null if not set
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  8. 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 Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 22K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

        protected static final short SMB2_WRITE = 0x0009;
        /** SMB2 lock file command */
        protected static final short SMB2_LOCK = 0x000A;
        /** SMB2 IO control command */
        protected static final short SMB2_IOCTL = 0x000B;
        /** SMB2 cancel command */
        protected static final short SMB2_CANCEL = 0x000C;
        /** SMB2 echo/keepalive command */
        protected static final short SMB2_ECHO = 0x000D;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  10. docs/en/docs/deployment/manually.md

    # Run a Server Manually { #run-a-server-manually }
    
    ## Use the `fastapi run` Command { #use-the-fastapi-run-command }
    
    In short, use `fastapi run` to serve your FastAPI application:
    
    <div class="termy">
    
    ```console
    $ <font color="#4E9A06">fastapi</font> run <u style="text-decoration-style:solid">main.py</u>
    
      <span style="background-color:#009485"><font color="#D3D7CF"> FastAPI </font></span>  Starting production server 🚀
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 6.9K bytes
    - Viewed (0)
Back to top