Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 279 for dart (0.01 sec)

  1. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

                throw new UnsupportedOperationException();
            }
    
            @Override
            public java.util.Collection<jakarta.servlet.http.Part> getParts() {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public jakarta.servlet.http.Part getPart(String name) {
                throw new UnsupportedOperationException();
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/create/Smb2CreateResponseTest.java

         * The parser should iterate it but produce an empty contexts array.
         */
        private static byte[] buildCreateBodyWithContext(byte[] fileId, int contextStartOffsetFromHeader) {
            // Base body part size (up to and including CreateContextsLength)
            byte[] base = buildCreateBodyNoContexts((byte) 1, (byte) 2, 3, 1000L, 2000L, 3000L, 4000L, 512L, 1024L, 0x20, fileId);
    
            // Create a simple context entry
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/NtlmUtilTest.java

            // Assert: overloads consistent
            assertArrayEquals(viaHash, viaPassword, "Both overloads must compute same NTLMv2 key");
    
            // Changing domain should change the key (domain is part of MAC input)
            byte[] differentDomain = NtlmUtil.nTOWFv2("DOMAIN", user, password);
            assertFalse(Arrays.equals(viaPassword, differentDomain), "Different domain should produce a different key");
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 12K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/SearchQueryExceptionTest.java

            // Test handling of long messages
            StringBuilder longMessage = new StringBuilder();
            for (int i = 0; i < 1000; i++) {
                longMessage.append("Long message part ").append(i).append(" ");
            }
            String message = longMessage.toString();
    
            SearchQueryException exception = new SearchQueryException(message);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java

            // Create a very long exception message
            StringBuilder longMessage = new StringBuilder("Error: ");
            for (int i = 0; i < 100; i++) {
                longMessage.append("This is a very long error message part ").append(i).append(". ");
            }
            final String errorMessage = longMessage.toString();
    
            // Create mock SearchEngineClient that throws exception with long message
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb2/io/Smb2WriteResponseTest.java

                assertEquals(2048, response.getCount());
                assertEquals(1024, response.getRemaining());
            }
    
            @Test
            @DisplayName("Should handle response as part of ServerMessageBlock2")
            void testAsServerMessageBlock2Response() {
                // Verify inheritance
                assertTrue(response instanceof ServerMessageBlock2);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  7. android/pom.xml

                       Error Prone doesn't know it's building test code unless we
                       pass -XepCompilingTestOnlyCode, and that argument needs to
                       be passed as part of the same <arg> as -Xplugin:ErrorProne,
                       and I gave up trying to figure out how to do that for test
                       compilation only. -->
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/BloomFilterStrategies.java

    import org.jspecify.annotations.Nullable;
    
    /**
     * Collections of strategies of generating the k * log(M) bits required for an element to be mapped
     * to a BloomFilter of M bits and k hash functions. These strategies are part of the serialized form
     * of the Bloom filters that use them, thus they must be preserved as is (no updates allowed, only
     * introduction of new versions).
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

        //                                     Parameter Logging
        //                                     -----------------
        // logging filter cannot show the parameters when multi-part so logging here
        protected void showFieldLoggingTitle() {
            if (logger.isDebugEnabled()) {
                logger.debug("[Multipart Request Parameter]");
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/Striped64.java

       * placed adjacent to each other, and so will most often share
       * cache lines (with a huge negative performance impact) without
       * this precaution.
       *
       * In part because Cells are relatively large, we avoid creating
       * them until they are needed.  When there is no contention, all
       * updates are made to the base field.  Upon first contention (a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jan 15 22:17:15 UTC 2025
    - 11.4K bytes
    - Viewed (0)
Back to top