Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,843 for Kong (0.04 sec)

  1. src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsSearchLog.java

        /** queryPageSize */
        protected Integer queryPageSize;
    
        /** queryTime */
        protected Long queryTime;
    
        /** referer */
        protected String referer;
    
        /** requestedAt */
        protected LocalDateTime requestedAt;
    
        /** responseTime */
        protected Long responseTime;
    
        /** roles */
        protected String[] roles;
    
        /** searchWord */
        protected String searchWord;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/score/ScoreUpdaterTest.java

        }
    
        // Test class for basic testing
        private static class TestScoreBooster extends ScoreBooster {
            private final long returnValue;
    
            public TestScoreBooster(long returnValue) {
                this.returnValue = returnValue;
            }
    
            @Override
            public long process() {
                return returnValue;
            }
        }
    
        // Test class that throws exception
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/Fingerprint2011.java

          byte[] bytes, int offset, long seedA, long seedB, long[] output) {
        long part1 = load64(bytes, offset);
        long part2 = load64(bytes, offset + 8);
        long part3 = load64(bytes, offset + 16);
        long part4 = load64(bytes, offset + 24);
    
        seedA += part1;
        seedB = rotateRight(seedB + seedA + part4, 51);
        long c = seedA;
        seedA += part2;
        seedA += part3;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java

        }
    
        public void test_getId_maxValue() {
            // Test with maximum Long value
            dictionaryItem.id = Long.MAX_VALUE;
            assertEquals(Long.MAX_VALUE, dictionaryItem.getId());
        }
    
        public void test_getId_minValue() {
            // Test with minimum Long value
            dictionaryItem.id = Long.MIN_VALUE;
            assertEquals(Long.MIN_VALUE, dictionaryItem.getId());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb1/smb1/InfoTest.java

            byte[] buffer = new byte[34];
            long create = 1600000000000L;
            long lastAccess = 1600000100000L;
            long lastWrite = 1600000200000L;
            long change = 1600000300000L;
            int attributes = 0x1234;
            // Convert Unix time to Windows FILETIME (100-nanosecond intervals since 1601)
            long MILLISECONDS_BETWEEN_1970_AND_1601 = 11644473600000L;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHookTest.java

            assertEquals("false", config.getApiJsonResponseExceptionIncluded());
        }
    
        // Test error code generation
        public void test_errorCodeGeneration() {
            long timestamp = System.currentTimeMillis();
            String errorCode = "error_code:" + Long.toHexString(timestamp);
    
            assertTrue(errorCode.startsWith("error_code:"));
            assertTrue(errorCode.length() > 11); // "error_code:" is 11 chars
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/AllocInfoTest.java

        static class TestAllocInfo implements AllocInfo {
            private final long capacity;
            private final long free;
            private byte fileSystemInformationClass = FS_SIZE_INFO;
    
            TestAllocInfo(long capacity, long free) {
                this.capacity = capacity;
                this.free = free;
            }
    
            TestAllocInfo(long capacity, long free, byte fileSystemInformationClass) {
                this.capacity = capacity;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/Murmur3_128HashFunction.java

        protected void process(ByteBuffer bb) {
          long k1 = bb.getLong();
          long k2 = bb.getLong();
          bmix64(k1, k2);
          length += CHUNK_SIZE;
        }
    
        private void bmix64(long k1, long k2) {
          h1 ^= mixK1(k1);
    
          h1 = Long.rotateLeft(h1, 27);
          h1 += h2;
          h1 = h1 * 5 + 0x52dce729;
    
          h2 ^= mixK2(k2);
    
          h2 = Long.rotateLeft(h2, 31);
          h2 += h1;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 16:36:11 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java

        @Override
        public final long getLastAccessTime() {
            return this.lastAccessTime;
        }
    
        /**
         * @return the lastWriteTime
         */
        @Override
        public final long getLastWriteTime() {
            return this.lastWriteTime;
        }
    
        /**
         * Gets the allocation size.
         *
         * @return the allocationSize
         */
        public final long getAllocationSize() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  10. src/test/java/jcifs/util/transport/TransportTest.java

         */
        static class TestableTransport extends Transport {
            private long nextKey = 1;
            private Long peekedKey = null;
            private IOException sendException = null;
            private IOException recvException = null;
            private boolean connectFails = false;
            private boolean disconnectResult = false;
    
            @Override
            protected long makeKey(Request request) throws IOException {
                return nextKey++;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.5K bytes
    - Viewed (0)
Back to top