- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 20 for xyz (0.02 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/TextTransformerTest.java
final ResultData resultData = textTransformer.transform(responseData); assertEquals("xyz", new String(resultData.getData(), resultData.getEncoding())); } public void test_transform_html() throws Exception { final byte[] data = new String("<html><body>xyz</body></html>").getBytes(); final ResponseData responseData = new ResponseData(); responseData.setUrl("file:/test.html");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 4.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/StringsTest.java
assertEquals("", Strings.commonPrefix("abc", "")); assertEquals("", Strings.commonPrefix("", "abc")); assertEquals("", Strings.commonPrefix("abcde", "xyz")); assertEquals("", Strings.commonPrefix("xyz", "abcde")); assertEquals("", Strings.commonPrefix("xyz", "abcxyz")); assertEquals("a", Strings.commonPrefix("abc", "aaaaa")); assertEquals("aa", Strings.commonPrefix("aa", "aaaaa"));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 27 17:53:41 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ResourceUtilTest.java
System.setProperty("abc.xyz", "789"); value = "${abc.xyz}"; assertEquals("789", ResourceUtil.resolve(value)); value = "${abc}${abc.xyz}"; assertEquals("123789", ResourceUtil.resolve(value)); value = "xxx${abc.xyz}zzz"; assertEquals("xxx789zzz", ResourceUtil.resolve(value)); value = "${\\$}"; assertEquals(value, ResourceUtil.resolve(value));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/resources/jcifs/smb1/util/mime.map
audio/mpeg mp2 mpa mpg mpga # MP2 Sound File audio/x-mpeg mp2 # MP2 Sound File chemical/x-pdb pdb # PDB Chemistry Model File chemical/x-xyz xyz # XYZ Chemistry Model File drawing/x-dwf dwf # AutoCAD image/gif gif # GIF image file image/ief ief # Image Exchange
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.9K bytes - Viewed (0) -
cmd/object-api-utils_test.go
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 24.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java
assertEquals("コンテンツ", doc.get("content_ja")); } public void test_updateDocument_noLanguageDetected() { Map<String, Object> doc = new HashMap<>(); doc.put("title", "xyz"); doc.put("content", "xyz"); // Without a real detector, this will throw NullPointerException try { languageHelper.updateDocument(doc);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ProtocolHelperTest.java
assertFalse(protocolHelper.isValidWebProtocol("example.com")); assertFalse(protocolHelper.isValidWebProtocol("")); assertFalse(protocolHelper.isValidWebProtocol("xyz")); } public void test_isValidFileProtocol_validUrls() { ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override public String getCrawlerWebProtocols() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 21.5K bytes - Viewed (0) -
okhttp-sse/src/test/java/okhttp3/sse/internal/EventSourcesHttpTest.kt
if (response.code == 401) { assertThat(response.body.string()).isEqualTo("{\"error\":{\"message\":\"No auth credentials found\",\"code\":401}}") request = request.newBuilder().header("Authorization", "XYZ").build() } else { response.processEventSource(listener) listener.assertOpen() listener.assertEvent(null, null, "hey") listener.assertClose() } } }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 13:49:38 UTC 2025 - 3.6K bytes - Viewed (0) -
cmd/object-api-multipart_test.go
{bucketName: "unused-bucket", objName: "def", uploadID: "xyz", PartID: 1, expectedError: fmt.Errorf("%s", "Invalid upload id xyz")}, // Test Case - 8. // Existing bucket, object name different from which NewMultipartUpload is constructed from. // Expecting "Invalid upload id". {bucketName: bucket, objName: "def", uploadID: "xyz", PartID: 1, expectedError: fmt.Errorf("%s", "Invalid upload id xyz")}, // Test Case - 9.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 89.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java
// Test multiple realistic exception scenarios // Scenario 1: Command not found CommandExecutionException cmdNotFound = new CommandExecutionException("Command 'xyz' not found"); assertTrue(cmdNotFound.getMessage().contains("not found")); // Scenario 2: Command timeout CommandExecutionException timeout =
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.2K bytes - Viewed (0)