Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 40 for 0_25 (0.12 seconds)

  1. src/test/java/org/codelibs/fess/util/JvmUtilTest.java

            assertEquals(4, JvmUtil.getJavaVersion());
            System.setProperty("java.version", "1.5.0_15");
            assertEquals(5, JvmUtil.getJavaVersion());
            System.setProperty("java.version", "1.6.0_34");
            assertEquals(6, JvmUtil.getJavaVersion());
            System.setProperty("java.version", "1.7.0_25");
            assertEquals(7, JvmUtil.getJavaVersion());
            System.setProperty("java.version", "1.8.0_171");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  2. src/test/java/jcifs/internal/smb1/AndXServerMessageBlockTest.java

            assertNull(testBlock.getAndx());
            assertNull(testBlock.getNext());
            assertNull(testBlock.getNextResponse());
        }
    
        @Test
        @DisplayName("Test constructor with null andx command")
        void testConstructorWithNullAndx() {
            testBlock = new TestAndXServerMessageBlock(mockConfig, (byte) 0x25, (ServerMessageBlock) null);
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 19.4K bytes
    - Click Count (0)
  3. src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java

                assertEquals(0x25, testBlock.getCommand());
                assertNull(testBlock.getPath());
            }
    
            @Test
            @DisplayName("Test constructor with config, command, and path")
            void testConstructorWithPath() {
                testBlock = new TestServerMessageBlock(mockConfig, (byte) 0x25, "\\test\\path");
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 36.2K bytes
    - Click Count (0)
  4. src/archive/zip/reader_test.go

    		0x00, 0x1f, 0x00, 0x00, 0x00, 0x2f, 0x2f, 0x0a,
    		0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
    		0x00, 0x18, 0x00, 0x93, 0x98, 0x25, 0x57, 0x25,
    		0xa9, 0xd7, 0x01, 0x93, 0x98, 0x25, 0x57, 0x25,
    		0xa9, 0xd7, 0x01, 0x93, 0x98, 0x25, 0x57, 0x25,
    		0xa9, 0xd7, 0x01, 0x50, 0x4b, 0x01, 0x02, 0x3f,
    		0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78,
    		0x67, 0x2e, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00,
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Jan 15 18:35:56 GMT 2026
    - 57.9K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java

            }
        }
    
        // Test edge cases to understand the validation behavior
        @Test
        public void test_edgeCaseBehavior() {
            String[] edgeCases = { "0 0 25 * * ?", // Invalid day of month
                    "0 60 * * * ?", // Invalid minute
                    "0 0 0 32 1 ?", // Invalid day
                    "0 0 0 1 13 ?", // Invalid month
            };
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  6. lib/fips140/v1.26.0.zip

    c9500.html#section-2.3 return &PrivateKey{ pub: PublicKey{ curve: p256, q: []byte{ 0x04, 0x42, 0x25, 0x48, 0xF8, 0x8F, 0xB7, 0x82, 0xFF, 0xB5, 0xEC, 0xA3, 0x74, 0x44, 0x52, 0xC7, 0x2A, 0x1E, 0x55, 0x8F, 0xBD, 0x6F, 0x73, 0xBE, 0x5E, 0x48, 0xE9, 0x32, 0x32, 0xCC, 0x45, 0xC5, 0xB1, 0x6C, 0x4C, 0xD1, 0x0C, 0x4C, 0xB8, 0xD5, 0xB8, 0xA1, 0x71, 0x39, 0xE9, 0x48, 0x82, 0xC8, 0x99, 0x25, 0x72, 0x99, 0x34, 0x25, 0xF4, 0x14, 0x19, 0xAB, 0x7E, 0x90, 0xA4, 0x2A, 0x49, 0x42, 0x72}, }, d: []byte{ 0xE6, 0xCB, 0x5B,...
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Jan 08 17:58:32 GMT 2026
    - 660.3K bytes
    - Click Count (0)
  7. android/guava-tests/test/com/google/common/net/HostAndPortTest.java

        checkFromStringCase("google.com:+25", 1, null, 99, false);
        checkFromStringCase("google.com:25  ", 1, null, 99, false);
        checkFromStringCase("google.com:25\t", 1, null, 99, false);
        checkFromStringCase("google.com:0x25 ", 1, null, 99, false);
      }
    
      public void testFromStringUnparseableNonsense() {
        // Some nonsense that causes parse failures.
        checkFromStringCase("[goo.gl]", 1, null, 99, false);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 15:59:55 GMT 2026
    - 9.7K bytes
    - Click Count (0)
  8. guava-tests/test/com/google/common/net/HostAndPortTest.java

        checkFromStringCase("google.com:+25", 1, null, 99, false);
        checkFromStringCase("google.com:25  ", 1, null, 99, false);
        checkFromStringCase("google.com:25\t", 1, null, 99, false);
        checkFromStringCase("google.com:0x25 ", 1, null, 99, false);
      }
    
      public void testFromStringUnparseableNonsense() {
        // Some nonsense that causes parse failures.
        checkFromStringCase("[goo.gl]", 1, null, 99, false);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 15:59:55 GMT 2026
    - 10K bytes
    - Click Count (0)
  9. lib/fips140/v1.0.0-c2097c7c.zip

    c9500.html#section-2.3 return &PrivateKey{ pub: PublicKey{ curve: p256, q: []byte{ 0x04, 0x42, 0x25, 0x48, 0xF8, 0x8F, 0xB7, 0x82, 0xFF, 0xB5, 0xEC, 0xA3, 0x74, 0x44, 0x52, 0xC7, 0x2A, 0x1E, 0x55, 0x8F, 0xBD, 0x6F, 0x73, 0xBE, 0x5E, 0x48, 0xE9, 0x32, 0x32, 0xCC, 0x45, 0xC5, 0xB1, 0x6C, 0x4C, 0xD1, 0x0C, 0x4C, 0xB8, 0xD5, 0xB8, 0xA1, 0x71, 0x39, 0xE9, 0x48, 0x82, 0xC8, 0x99, 0x25, 0x72, 0x99, 0x34, 0x25, 0xF4, 0x14, 0x19, 0xAB, 0x7E, 0x90, 0xA4, 0x2A, 0x49, 0x42, 0x72}, }, d: []byte{ 0xE6, 0xCB, 0x5B,...
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Sep 25 19:53:19 GMT 2025
    - 642.7K bytes
    - Click Count (0)
  10. cmd/speedtest.go

    				break
    			}
    
    			// We break if we did not see 2.5% growth rate in total GET
    			// requests, we have reached our peak at this point.
    			doBreak := float64(totalGet-throughputHighestGet)/float64(totalGet) < 0.025
    
    			throughputHighestGet = totalGet
    			throughputHighestResults = results
    			throughputHighestPut = totalPut
    
    			if doBreak {
    				sendResult()
    				break
    			}
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue May 27 15:19:03 GMT 2025
    - 9.2K bytes
    - Click Count (0)
Back to Top