Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 408 for Level1 (0.11 sec)

  1. src/main/java/org/codelibs/core/log/Logger.java

            public LogMessage(final LogLevel level, final String message) {
                assertArgumentNotNull("level", level);
    
                this.level = level;
                this.message = message;
            }
    
            /**
             * Returns the log level.
             *
             * @return the log level
             */
            public LogLevel getLevel() {
                return level;
            }
    
            /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java

     * returning various file information levels based on the requested information level.
     */
    public class Trans2QueryPathInformationResponse extends SmbComTransactionResponse {
    
        private final int informationLevel;
        private FileInformation info;
    
        /**
         * Constructs a Trans2QueryPathInformationResponse with the specified configuration and information level.
         *
         * @param config the SMB configuration
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformation.java

    import jcifs.util.Hexdump;
    
    /**
     * Trans2 QueryPathInformation request message for querying file metadata.
     * This class implements the TRANS2_QUERY_PATH_INFORMATION transaction to retrieve
     * various file information levels such as basic info, standard info, and attributes.
     */
    public class Trans2QueryPathInformation extends SmbComTransaction {
    
        private final int informationLevel;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponse.java

     * returning various file system information levels such as volume size and attributes.
     */
    public class Trans2QueryFSInformationResponse extends SmbComTransactionResponse {
    
        private final int informationLevel;
        private FileSystemInformation info;
    
        /**
         * Constructs a Trans2QueryFSInformationResponse with the specified configuration and information level.
         *
         * @param config the SMB configuration
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5K bytes
    - Viewed (0)
  5. apache-maven/src/assembly/maven/conf/toolchains.xml

     |
     |  1. User Level. This toolchains.xml file provides configuration for a single user,
     |                 and is normally provided in ${user.home}/.m2/toolchains.xml.
     |
     |                 NOTE: This location can be overridden with the CLI option:
     |
     |                 -t /path/to/user/toolchains.xml
     |
     |  2. Installation Level.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Aug 22 14:47:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java

         */
        @Nonnull
        String getMessage();
    
        /**
         * Gets the severity level of this problem.
         *
         * @return the severity level of this problem, never {@code null}
         */
        @Nonnull
        Severity getSeverity();
    
        /**
         * The different severity levels for a problem, in decreasing order.
         *
         * @since 4.0.0
         */
        @Experimental
        enum Severity {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. compat/maven-builder-support/src/main/java/org/apache/maven/building/Problem.java

         *
         * @return The message describing this problem, never {@code null}.
         */
        String getMessage();
    
        /**
         * Gets the severity level of this problem.
         *
         * @return The severity level of this problem, never {@code null}.
         */
        Severity getSeverity();
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 15 18:51:29 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/Smb2ConstantsTest.java

            }
        }
    
        @Nested
        @DisplayName("Info Level Constants")
        class InfoLevelConstants {
    
            @Test
            @DisplayName("File info level should be 1")
            void testInfoFile() {
                assertEquals(1, Smb2Constants.SMB2_0_INFO_FILE, "File info level must be 1");
            }
    
            @Test
            @DisplayName("Filesystem info level should be 2")
            void testInfoFilesystem() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java

        public void test_exceptionChaining() {
            // Test exception chaining with multiple levels
            Exception rootCause = new Exception("Root cause");
            RuntimeException middleCause = new RuntimeException("Middle cause", rootCause);
            FessSystemException topException = new FessSystemException("Top level", middleCause);
    
            assertEquals("Top level", topException.getMessage());
            assertEquals(middleCause, topException.getCause());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponseTest.java

        @ParameterizedTest
        @ValueSource(bytes = { FileInformation.FILE_BASIC_INFO, FileInformation.FILE_STANDARD_INFO, FileInformation.FILE_INTERNAL_INFO })
        @DisplayName("Test readDataWireFormat with different information levels")
        void testReadDataWireFormatWithDifferentLevels(byte infoLevel) throws SMBProtocolDecodingException {
            response = new Trans2QueryPathInformationResponse(mockConfig, infoLevel);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.9K bytes
    - Viewed (0)
Back to top