- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 71 for bisa (0.17 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/HtmlXpathExtractorTest.java
final BufferedInputStream bis = new BufferedInputStream(in); final String encoding = htmlXpathExtractor.getEncoding(bis); CloseableUtil.closeQuietly(bis); assertEquals("UTF-8", encoding); } public void test_getEncoding_sjis() { final InputStream in = ResourceUtil.getResourceAsStream("extractor/test_sjis.html"); final BufferedInputStream bis = new BufferedInputStream(in);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 4.1K bytes - Viewed (0) -
docs/language_names.yml
hu: magyar hy: Հայերեն hz: Otjiherero ia: Interlingua id: Bahasa Indonesia ie: Interlingue ig: Asụsụ Igbo ii: ꆈꌠ꒿ Nuosuhxop ik: Iñupiaq io: Ido is: Íslenska it: italiano iu: ᐃᓄᒃᑎᑐᑦ ja: 日本語 jv: basa Jawa ka: ქართული kg: Kikongo ki: Gĩkũyũ kj: Kuanyama kk: қазақ тілі kl: kalaallisut km: ខេមរភាសា kn: ಕನ್ನಡ ko: 한국어 kr: Kanuri ks: कश्मीरी ku: Kurdî kv: коми кыв kw: Kernewek ky: Кыргызча
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Jan 22 19:42:53 UTC 2024 - 3.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractXmlExtractor.java
throw new CrawlerSystemException("The inputstream is null."); } try { final BufferedInputStream bis = new BufferedInputStream(in); final String enc = getEncoding(bis); final String content = UNESCAPE_HTML4.translate(new String(InputStreamUtil.getBytes(bis), enc)); return createExtractData(content); } catch (final Exception e) { throw new ExtractException(e);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 6.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java
// XML Sitemaps bis.reset(); return parseXmlSitemaps(bis); } if (preloadDate.indexOf("<sitemapindex") >= 0) { // XML Sitemaps Index bis.reset(); return parseXmlSitemapsIndex(bis); }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 11.8K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/lv/stopwords.txt
iekām iekāms kolīdz līdzko tiklīdz jebšu tālab tāpēc nekā itin jā jau jel nē nezin tad tikai vis tak iekams vien # modal verbs būt biju biji bija bijām bijāt esmu esi esam esat būšu būsi būs būsim būsiet tikt tiku tiki tika tikām tikāt tieku tiec tiek tiekam tiekat tikšu
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 19 06:31:02 UTC 2018 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlResponse.java
try (BufferedInputStream bis = new BufferedInputStream(getContentAsStream()); ByteArrayOutputStream baos = new ByteArrayOutputStream()) { int length = bis.read(bytes); while (length != -1) { if (length != 0) { baos.write(bytes, 0, length); } length = bis.read(bytes); }
Registered: Thu Oct 31 02:32:13 UTC 2024 - Last Modified: Mon Nov 14 21:05:19 UTC 2022 - 4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/HtmlExtractorTest.java
final BufferedInputStream bis = new BufferedInputStream(in); final String encoding = htmlExtractor.getEncoding(bis); CloseableUtil.closeQuietly(bis); assertEquals("UTF-8", encoding); } public void test_getEncoding_sjis() { final InputStream in = ResourceUtil.getResourceAsStream("extractor/test_sjis.html"); final BufferedInputStream bis = new BufferedInputStream(in);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 3.7K bytes - Viewed (0) -
docs/es/docs/tutorial/index.md
# Tutorial - Guía de Usuario Este tutorial te muestra cómo usar **FastAPI** con la mayoría de sus características paso a paso. Cada sección se basa gradualmente en las anteriores, pero está estructurada en temas separados, así puedes ir directamente a cualquier tema en concreto para resolver tus necesidades específicas sobre la API. Funciona también como una referencia futura, para que puedas volver y ver exactamente lo que necesitas. ## Ejecuta el código
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 2.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ConcurrentHashMultisetTest.java
when(backingMap.putIfAbsent(eq(KEY), isA(AtomicInteger.class))).thenReturn(existingZero); // since the putIfAbsent returned a zero, we'll try to replace... when(backingMap.replace(eq(KEY), eq(existingZero), isA(AtomicInteger.class))).thenReturn(false); // ...and then putIfAbsent. Simulate failure on both when(backingMap.putIfAbsent(eq(KEY), isA(AtomicInteger.class))).thenReturn(existing);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 14.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlXpathExtractor.java
} try { final BufferedInputStream bis = new BufferedInputStream(in); final String enc = getEncoding(bis); final DOMParser parser = getDomParser(); final InputSource inputSource = new InputSource(bis); inputSource.setEncoding(enc); parser.parse(inputSource);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 7K bytes - Viewed (0)