Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for CMD (0.02 sec)

  1. docs/en/docs/deployment/docker.md

    Make sure to **always** use the **exec form** of the `CMD` instruction, as explained below.
    
    ///
    
    #### Use `CMD` - Exec Form { #use-cmd-exec-form }
    
    The <a href="https://docs.docker.com/reference/dockerfile/#cmd" class="external-link" target="_blank">`CMD`</a> Docker instruction can be written using two forms:
    
    ✅ **Exec** form:
    
    ```Dockerfile
    # ✅ Do this
    CMD ["fastapi", "run", "app/main.py", "--port", "80"]
    ```
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 29.5K bytes
    - Viewed (1)
  2. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

            for (final String cmd : processedCommands) {
                assertFalse("Command should not contain ${url}", cmd.contains("${url}"));
                assertFalse("Command should not contain ${outputFile}", cmd.contains("${outputFile}"));
                assertTrue("Command should contain temp path", cmd.contains(tempPath));
                assertTrue("Command should contain output path", cmd.contains(outputPath));
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

        @Override
        public int getBatchLimit(final String cmd) {
            Integer set = this.batchLimits.get(cmd);
            if (set != null) {
                return set;
            }
    
            set = doGetBatchLimit(cmd);
            if (set != null) {
                this.batchLimits.put(cmd, set);
                return set;
            }
    
            set = DEFAULT_BATCH_LIMITS.get(cmd);
            if (set != null) {
                return 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)
  4. src/main/java/jcifs/config/DelegatingConfiguration.java

        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getBatchLimit(java.lang.String)
         */
        @Override
        public int getBatchLimit(final String cmd) {
            return this.delegate.getBatchLimit(cmd);
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isAllowCompound(java.lang.String)
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

            return this.andx;
        }
    
        /**
         * Gets the batch limit for chained commands
         * @param cfg the configuration
         * @param cmd the command byte
         * @return the batch limit
         */
        protected int getBatchLimit(final Configuration cfg, final byte cmd) {
            /*
             * the default limit is 0 batched messages before this
             * one, meaning this message cannot be batched.
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/Configuration.java

         */
        boolean isIgnoreCopyToException();
    
        /**
         * Gets the batch limit for a specific SMB command
         *
         * @param cmd the SMB command name
         * @return the batch limit for the given command
         */
        int getBatchLimit(String cmd);
    
        /**
         *
         * Property {@code jcifs.smb.client.notify_buf_size} (int, default 1024)
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    * 📝 Add note in Docker docs about ensuring graceful shutdowns and lifespan events with `CMD` exec form. PR [#11960](https://github.com/fastapi/fastapi/pull/11960) by [@GPla](https://github.com/GPla).
    
    ### Translations
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 12:48:45 UTC 2025
    - 544.1K bytes
    - Viewed (0)
Back to top