Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 311 for track (0.02 sec)

  1. src/test/java/jcifs/RuntimeCIFSExceptionTest.java

        @Test
        @DisplayName("Should preserve stack trace")
        void testStackTracePreservation() {
            // When
            RuntimeCIFSException exception = new RuntimeCIFSException("Test exception");
    
            // Then
            assertNotNull(exception.getStackTrace());
            assertTrue(exception.getStackTrace().length > 0);
    
            // Should contain this test method in stack trace
            boolean foundTestMethod = false;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  2. proguard/base.pro

    # work. That's because the Proguard configuration required to make them work on
    # optimized code would preclude lots of optimization, like converting enums
    # into ints.
    
    # Throwables uses internal APIs for lazy stack trace resolution
    -dontnote sun.misc.SharedSecrets
    -keep class sun.misc.SharedSecrets {
      *** getJavaLangAccess(...);
    }
    -dontnote sun.misc.JavaLangAccess
    -keep class sun.misc.JavaLangAccess {
      *** getStackTraceElement(...);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/QueryParseExceptionTest.java

            assertEquals(parseException, cause);
            assertEquals("Query parsing failed", cause.getMessage());
        }
    
        public void test_stackTrace() {
            // Test that stack trace is properly set
            ParseException parseException = new ParseException("Stack trace test");
            QueryParseException queryParseException = new QueryParseException(parseException);
    
            StackTraceElement[] stackTrace = queryParseException.getStackTrace();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbSessionImpl.java

                        throw r;
                    } catch (SmbException se) {
                        if (log.isTraceEnabled()) {
                            log.trace("Send failed", se);
                            log.trace("Request: " + request);
                            log.trace("Response: " + response);
                        }
                        throw se;
                    }
                } finally {
                    request.setDigest(null);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb1/util/transport/TransportExceptionTest.java

                assertTrue(result.contains(message));
                assertFalse(result.contains("\n"));
            }
    
            @Test
            @DisplayName("Should include stack trace when root cause exists")
            void testToStringWithRootCause() {
                String message = "Transport error";
                String rootMessage = "Root cause error";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.28.md

    - ACTION_REQUIRED
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Oct 23 20:13:20 UTC 2024
    - 456.9K bytes
    - Viewed (1)
  7. docs/ru/docs/tutorial/first-steps.md

    "Операция" это один из "методов" HTTP.
    
    Таких, как:
    
    * `POST`
    * `GET`
    * `PUT`
    * `DELETE`
    
    ...и более экзотических:
    
    * `OPTIONS`
    * `HEAD`
    * `PATCH`
    * `TRACE`
    
    По протоколу HTTP можно обращаться к каждому пути, используя один (или несколько) из этих "методов".
    
    ---
    
    При создании API принято использовать конкретные HTTP-методы для выполнения определенных действий.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java

        public static final String MAVEN_STYLE_PREFIX = "maven.style.";
    
        // Style Names
        public static final String MAVEN_STYLE_TRANSFER_NAME = "transfer";
        public static final String MAVEN_STYLE_TRACE_NAME = "trace";
        public static final String MAVEN_STYLE_DEBUG_NAME = "debug";
        public static final String MAVEN_STYLE_INFO_NAME = "info";
        public static final String MAVEN_STYLE_WARNING_NAME = "warning";
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jul 25 11:08:20 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/exception/FessSystemException.java

         *
         * @param message the detail message describing the exception
         * @param enableSuppression whether suppression is enabled or disabled
         * @param writableStackTrace whether the stack trace should be writable
         */
        protected FessSystemException(final String message, final boolean enableSuppression, final boolean writableStackTrace) {
            super(message, null, enableSuppression, writableStackTrace);
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java

    import org.apache.commons.lang3.StringUtils;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.dict.DictionaryItem;
    
    /**
     * Represents an item in a stopwords dictionary.
     * This class stores a stopword and tracks its updated value.
     */
    public class StopwordsItem extends DictionaryItem {
        /** The original stopword. */
        private final String input;
    
        /** The new stopword, if updated. */
        private String newInput;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.6K bytes
    - Viewed (0)
Back to top