- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for Examples (0.06 sec)
-
docs/en/docs/release-notes.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 12:48:45 UTC 2025 - 544.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/TransformerTest.java
public void test_statefulTransformer() { StatefulTransformer transformer = new StatefulTransformer("statefulTransformer"); // Process multiple URLs String[] urls = { "http://example1.com", "http://example2.com", "http://example3.com" }; for (String url : urls) { ResponseData responseData = new ResponseData(); responseData.setUrl(url);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 28K bytes - Viewed (0) -
docs/en/data/topic_repos.yml
stars: 1209 owner_login: slackapi owner_html_url: https://github.com/slackapi - name: bedrock-chat html_url: https://github.com/aws-samples/bedrock-chat stars: 1199 owner_login: aws-samples owner_html_url: https://github.com/aws-samples - name: fastapi_production_template html_url: https://github.com/zhanymkanov/fastapi_production_template stars: 1182 owner_login: zhanymkanov
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 08:57:41 UTC 2025 - 15.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerContextTest.java
String[] sitemaps = new String[] { "http://example.com/sitemap.xml", "http://test.com/sitemap.xml" }; crawlerContext.addSitemaps(sitemaps); // Remove and verify String[] removedSitemaps = crawlerContext.removeSitemaps(); assertNotNull(removedSitemaps); assertEquals(2, removedSitemaps.length); assertEquals("http://example.com/sitemap.xml", removedSitemaps[0]);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 25.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java
urlFilter.addInclude("https?://[^/]+\\.example\\.com/.*"); assertTrue(urlFilter.match("http://www.example.com/")); assertTrue(urlFilter.match("https://api.example.com/v1/users")); assertTrue(urlFilter.match("http://subdomain.example.com/page")); assertFalse(urlFilter.match("https://example.org/")); assertFalse(urlFilter.match("ftp://files.example.com/")); } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 19K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/HcHttpClientTest.java
assertEquals("http://example.com:8080/path/file", HcHttpClient.constructRedirectLocation("http://example.com:8080/path/", "file")); assertEquals("http://example.com/%E3%83%86%E3%82%B9%E3%83%88", HcHttpClient.constructRedirectLocation("http://example.com/", "ใในใ")); assertEquals("http://example.com/hello%20world", HcHttpClient.constructRedirectLocation("http://example.com/", "hello world"));
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 11.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleTest.java
rule.addCondition("url", "https?://.*\\.example\\.com/.*"); ResponseData responseData1 = new ResponseData(); responseData1.setUrl("http://www.example.com/page"); assertTrue(rule.match(responseData1)); ResponseData responseData2 = new ResponseData(); responseData2.setUrl("https://api.example.com/v1/users"); assertTrue(rule.match(responseData2));
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 22.7K bytes - Viewed (0) -
dbflute.xml
<property name="target.dir" value="${basedir}/target" /> <property name="branch.name" value="fess-15.2" /> <property name="mydbflute.url" value="https://github.com/lastaflute/lastaflute-example-waterfront/archive/${branch.name}.zip" /> <target name="mydbflute.check"> <condition property="mydbflute.exists"> <available file="${mydbflute.dir}" type="dir" /> </condition> </target>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Sep 04 05:20:20 UTC 2025 - 999 bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/TypeResolver.java
* with {@link #where} and types are resolved using {@link #resolveType}. * * <p>Note that usually type mappings are already implied by the static type hierarchy (for example, * the {@code E} type variable declared by class {@code List} naturally maps to {@code String} in * the context of {@code class MyStringList implements List<String>}). In such case, prefer to use
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 24.2K bytes - Viewed (0) -
guava/src/com/google/common/reflect/TypeResolver.java
* with {@link #where} and types are resolved using {@link #resolveType}. * * <p>Note that usually type mappings are already implied by the static type hierarchy (for example, * the {@code E} type variable declared by class {@code List} naturally maps to {@code String} in * the context of {@code class MyStringList implements List<String>}). In such case, prefer to use
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 24.2K bytes - Viewed (0)