Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 315 for commander (0.05 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. src/test/java/jcifs/config/BaseConfigurationTest.java

            // Set disallowCompound
            config.disallowCompound = new HashSet<>(Arrays.asList("Command1", "Command2"));
    
            assertFalse(config.isAllowCompound("Command1"));
            assertFalse(config.isAllowCompound("Command2"));
            assertTrue(config.isAllowCompound("Command3"));
        }
    
        @Test
        @DisplayName("Test initResolverOrder with null/empty input")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  3. 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)
  4. src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java

                super(config);
            }
    
            public TestServerMessageBlock(Configuration config, byte command) {
                super(config, command);
            }
    
            public TestServerMessageBlock(Configuration config, byte command, String path) {
                super(config, command, path);
            }
    
            @Override
            protected int writeParameterWordsWireFormat(byte[] dst, int dstIndex) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  5. src/test/java/jcifs/SmbConnectionTest.java

     * Tests for SMB connection batch limit functionality.
     * Tests the batch limit configuration for various SMB commands.
     */
    public class SmbConnectionTest {
    
        /**
         * Test that getBatchLimit returns correct values for different commands
         */
        @Test
        @DisplayName("getBatchLimit returns correct values for different SMB commands")
        public void testBatchLimitForDifferentCommands() throws CIFSException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  6. 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)
  7. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

        }
    
        /**
         * Executes an external command with the given parameters.
         * @param commands The command array to execute.
         * @param username The username parameter for the command.
         * @param password The password parameter for the command.
         * @return The exit code of the executed command.
         */
        protected int executeCommand(final String[] commands, final String username, final String password) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  8. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java

         *
         * @param command the Maven command to be executed
         * @param commandName the Maven command Name to be executed
         * @param args the command-line arguments
         * @param messageBuilderFactory the factory for creating message builders
         * @return a new Builder instance
         */
        @Nonnull
        static Builder builder(
                @Nonnull String command,
                @Nonnull String commandName,
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  9. 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 Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/CommonServerMessageBlock.java

         * @param mid the message ID to set
         */
        void setMid(long mid);
    
        /**
         * Gets the SMB command.
         *
         * @return the command
         */
        int getCommand();
    
        /**
         * Sets the SMB command.
         *
         * @param command the command to set
         */
        void setCommand(int command);
    
        /**
         * Sets the user ID.
         *
         * @param uid the user ID to set
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.4K bytes
    - Viewed (0)
Back to top