Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 272 for serial (0.03 sec)

  1. LICENSES/vendor/github.com/container-storage-interface/spec/LICENSE

          or by an individual or Legal Entity authorized to submit on behalf of
          the copyright owner. For the purposes of this definition, "submitted"
          means any form of electronic, verbal, or written communication sent
          to the Licensor or its representatives, including but not limited to
          communication on electronic mailing lists, source code control systems,
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  2. LICENSES/vendor/github.com/coreos/go-semver/LICENSE

          or by an individual or Legal Entity authorized to submit on behalf of
          the copyright owner. For the purposes of this definition, "submitted"
          means any form of electronic, verbal, or written communication sent
          to the Licensor or its representatives, including but not limited to
          communication on electronic mailing lists, source code control systems,
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 11.2K bytes
    - Viewed (0)
  3. LICENSES/vendor/github.com/google/btree/LICENSE

          or by an individual or Legal Entity authorized to submit on behalf of
          the copyright owner. For the purposes of this definition, "submitted"
          means any form of electronic, verbal, or written communication sent
          to the Licensor or its representatives, including but not limited to
          communication on electronic mailing lists, source code control systems,
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 11.2K bytes
    - Viewed (0)
  4. LICENSE

          or by an individual or Legal Entity authorized to submit on behalf of
          the copyright owner. For the purposes of this definition, "submitted"
          means any form of electronic, verbal, or written communication sent
          to the Licensor or its representatives, including but not limited to
          communication on electronic mailing lists, source code control systems,
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Fri Apr 18 13:54:00 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java

            assertTrue(toStringResult.contains(message));
        }
    
        public void test_constructorWithScheduledJob_specialCharacters() {
            // Test with scheduled job that has special characters in toString
            ScheduledJob scheduledJob = new ScheduledJob() {
                @Override
                public String toString() {
                    return "Job[name=\"Test & Job\", id='<123>']";
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java

            assertEquals(Long.valueOf(Long.MAX_VALUE), event.getVersionNo());
        }
    
        // Test special characters in strings
        public void test_specialCharactersInStrings() {
            // Test special characters in ID
            TestSearchLogEvent event1 = new TestSearchLogEvent("id-with-special-!@#$%^&*()", 1L, "type");
            assertEquals("id-with-special-!@#$%^&*()", event1.getId());
    
            // Test unicode in event type
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

                generator.generate("test_id", outputFile);
                assertTrue("Should handle special characters in paths", true);
            } catch (final Exception e) {
                assertTrue("Exception handling for special characters", true);
            } finally {
                if (outputFile.exists()) {
                    outputFile.delete();
                }
            }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/PopularWordHelperTest.java

            assertNotNull(result);
            assertTrue(result.startsWith("null"));
        }
    
        public void test_getCacheKey_specialCharacters() {
            String seed = "test@seed#with$special%chars";
            String[] tags = { "tag@1", "tag#2" };
            String[] roles = { "role$1", "role%2" };
            String[] fields = { "field&1", "field*2" };
            String[] excludes = { "exclude^1", "exclude(2)" };
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java

            assertEquals(999, item2.getId());
    
            StopwordsItem item3 = new StopwordsItem(-1, "word3");
            assertEquals(-1, item3.getId());
        }
    
        public void test_createMode() {
            // Test special behavior when id is 0 (create mode)
            StopwordsItem createItem = new StopwordsItem(0, "newword");
            assertTrue(createItem.isUpdated());
            assertEquals("newword", createItem.getNewInput());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java

                    // Simulate a normal stack trace output
                    writer.println("Special test exception");
                    writer.flush();
                }
            };
    
            monitorTarget.appendException(buf, exception);
            assertTrue(buf.toString().contains("Special test exception"));
        }
    
        // Test multiple appends to the same buffer
        public void test_multipleAppends() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
Back to top