Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,192 for Message1 (0.05 sec)

  1. src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java

         * Maximum transmit buffer size for DCERPC messages
         */
        protected int max_xmit = 4280;
        /**
         * Maximum receive buffer size for DCERPC messages
         */
        protected int max_recv = max_xmit;
        /**
         * The current state of the DCERPC connection
         */
        protected int state = 0;
        /**
         * The security provider for authentication and message protection
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java

            // Then - Verify encrypted message structure
            assertNotNull(encrypted, "Encrypted message should not be null");
            assertTrue(encrypted.length > plaintext.length, "Encrypted message should be larger than plaintext");
    
            // Verify transform header is present (first 52 bytes)
            assertTrue(encrypted.length >= 52, "Encrypted message should include transform header");
    
            // When - Decrypt
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 44.1K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_it.properties

    constraints.Mod11Check.message = Il checksum Modulo 11 di {value} non è corretto.
    constraints.ModCheck.message = Il checksum {modType} di {value} non è corretto.
    constraints.NotBlank.message = {item} non può essere vuoto.
    constraints.NotEmpty.message = {item} non può essere vuoto.
    constraints.ParametersScriptAssert.message = L'espressione script "{script}" non è vera.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/witness/WitnessRpcMessage.java

        /** Return code from the RPC operation */
        protected int returnCode = ERROR_SUCCESS;
        private int opnum;
    
        /**
         * Creates a new witness RPC message with the specified operation number.
         *
         * @param opnum the operation number for this message
         */
        protected WitnessRpcMessage(int opnum) {
            ptype = 0; // REQUEST
            flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG;
            this.opnum = opnum;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java

                    logger.debug("{}:{}", query, boost);
                }
                return convertFuzzyQuery(context, fuzzyQuery, boost);
            }
            throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY),
                    "Unknown q: " + query.getClass() + " => " + query);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/CommonServerMessageBlockResponse.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.internal;
    
    import jcifs.util.transport.Response;
    
    /**
     * Interface for SMB response messages received from server.
     * Extends the common SMB message block with response-specific functionality including
     * asynchronous response handling and response chaining capabilities.
     *
     * @author mbechler
     */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_fr.properties

    constraints.SafeHtml.message = {item} contient du contenu HTML dangereux.
    constraints.ScriptAssert.message = L'expression de script « {script} » n'est pas vraie.
    constraints.URL.message = {item} n'est pas une URL valide.
    constraints.Required.message = {item} est requis.
    constraints.TypeInteger.message = {item} doit être un nombre.
    constraints.TypeLong.message = {item} doit être un nombre.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  8. src/main/resources/fess_message_zh_CN.properties

    constraints.Range.message = {item} 必须在 {min} 到 {max} 之间。
    constraints.SafeHtml.message = {item} 包含危险的 HTML 内容。
    constraints.ScriptAssert.message = 脚本表达式 "{script}" 不为 true。
    constraints.URL.message = {item} 不是有效的URL。
    constraints.Required.message = {item} 是必需的。
    constraints.TypeInteger.message = {item} 必须是数字。
    constraints.TypeLong.message = {item} 必须是数字。
    constraints.TypeFloat.message = {item} 必须是数字。
    constraints.TypeDouble.message = {item} 必须是数字。
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  9. src/test/java/jcifs/netbios/NbtExceptionTest.java

        @DisplayName("getErrorString should return correct messages for all defined error classes and codes")
        void testGetErrorString(int errorClass, int errorCode, String expectedMessage) {
            assertEquals(expectedMessage, NbtException.getErrorString(errorClass, errorCode),
                    "The error string should match the expected message for given error class and code");
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/testers/CollectionRetainAllTester.java

      }
    
      private void expectReturnsTrue(Target target) {
        String message = Platform.format("retainAll(%s) should return true", target);
        assertTrue(message, collection.retainAll(target.toRetain));
      }
    
      private void expectReturnsFalse(Target target) {
        String message = Platform.format("retainAll(%s) should return false", target);
        assertFalse(message, collection.retainAll(target.toRetain));
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 10.7K bytes
    - Viewed (0)
Back to top