- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 205 for okhttp (0.04 sec)
-
ViewHelperTest.java
"doc_id"; L100: } L101: }); L102: L103: // http L104: assertUrlLink("http://www.codelibs.org/", // L105: "http://www.codelibs.org/"); L106: assertUrlLink("http://www.codelibs.org/あ", // L107: "http://www.codelibs.org/あ"); L108: assertUrlLink("http://www.codelibs.org/%E3%81%82", // L109: "http://www.codelibs.org/%E3%81%82"); L110: assertUrlLink("http://www.codelibs.org/%z", // L111: "http://www.codelibs.org/%z");...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 15.1K bytes -
fe.tld
L1:<?xml version="1.0" encoding="UTF-8" ?> L2: L3:<taglib xmlns="http://java.sun.com/xml/ns/j2ee" L4: xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" L5: xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd" L6: version="2.0"> L7: L8: <description>JSTL 1.1 functions library</description> L9: <display-name>JSTL functions</display-name> L10: <tlib-version>1.1</tlib-version> L11: <short-name>fe</short-name> L12: <uri>fess.tags.functions</uri>...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Dec 23 06:18:48 UTC 2023 10K bytes -
AdminWizardAction.java
defaultValue; L251: } L252: L253: protected boolean isWebCrawlingPath(final String path) { L254: if (path.startsWith("http:") || path.startsWith("https:")) { L255: return true; L256: } L257: L258: return false; L259: } L260: L261: protected String convertCrawlingPath(final String path) { L262: if (path.startsWith("http:") || path.startsWith("https:") || path.startsWith("smb:") || path.startsWith("smb1:") L263: || path.startsWith("ftp:")...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 12.7K bytes -
FessFileTransformerTest.java
assertEquals(exp, transformer.decodeUrlAsName(url, true)); L45: L46: url = "http://example.com/"; L47: exp = "http://example.com/"; L48: assertEquals(exp, transformer.decodeUrlAsName(url, false)); L49: L50: url = "http://example.com/index.html"; L51: exp = "http://example.com/index.html"; L52: assertEquals(exp, transformer.decodeUrlAsName(url, false)); L53: L54: url = "http://example.com/" + encodeUrl("テスト ") + ".html"; L55: exp = "http://example.com/テスト...github.com/codelibs/fess/src/test/java/org/code...Thu Jul 04 06:20:49 UTC 2024 9.8K bytes -
RoleQueryHelperTest.java
L16:package org.codelibs.fess.helper; L17: L18:import java.util.HashSet; L19:import java.util.Set; L20: L21:import org.codelibs.core.crypto.CachedCipher; L22:import org.codelibs.fess.unit.UnitFessTestCase; L23: L24:import jakarta.servlet.http.Cookie; L25:import jakarta.servlet.http.HttpServletRequest; L26: L27:public class RoleQueryHelperTest extends UnitFessTestCase { L28: public CachedCipher cipher; L29: L30: @Override L31: public void setUp() throws Exception { L32: super.setUp(); L33: ...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:53:18 UTC 2024 14.2K bytes -
IndexingHelperTest.java
docList.add(new HashMap<>(Map.of(// L115: "_id", "001", // L116: "config_id", "W01", // L117: "url", "http://test.com/001"// L118: ))); L119: docList.add(new HashMap<>(Map.of(// L120: "_id", "002", // L121: "thumbnail", "http://test.com/002", // L122: "url", "http://test.com/002"// L123: ))); L124: indexingHelper.sendDocuments(client, docList); L125: assertEquals(0, docList.size());...github.com/codelibs/fess/src/test/java/org/code...Wed Jul 24 08:54:24 UTC 2024 23.4K bytes -
FessXpathTransformer.java
L316: if (urlStr.startsWith("://")) { L317: value = "http" + urlStr; L318: } else if (urlStr.startsWith("//")) { L319: value = "http:" + urlStr; L320: } else { L321: value = urlStr; L322: } L323: try { L324: final URL url = new java.net.URL(value); L325: final String host = url.getHost(); L326: if (StringUtil.isBlank(host) || "http".equalsIgnoreCase(host) || "https".equalsIgnoreCase(host)) { L327: ...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 24 13:01:38 UTC 2024 42.9K bytes -
RankFusionProcessor.java
; L55:import org.lastaflute.web.util.LaRequestUtil; L56:import org.lastaflute.web.util.LaResponseUtil; L57: L58:import jakarta.annotation.PostConstruct; L59:import jakarta.annotation.PreDestroy; L60:import jakarta.servlet.http.HttpServletRequest; L61:import jakarta.servlet.http.HttpServletResponse; L62: L63:public class RankFusionProcessor implements AutoCloseable { L64: L65: private static final Logger logger = LogManager.getLogger(RankFusionProcessor.class); L66: L67: protected RankFusionSearcher[]...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 18.3K bytes -
esclient.xml
L1:<?xml version="1.0" encoding="UTF-8"?> L2:<!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" L3: "http://dbflute.org/meta/lastadi10.dtd"> L4:<components> L5: <component name="searchEngineClient" class="org.codelibs.fess.es.client.SearchEngineClient"> L6: <property name="settings"> L7: {"http.cors.enabled":"true", L8: "http.cors.allow-origin":"*", L9: "discovery.type":"single-node", L10: "cluster.allocator.existing_shards_allocator.batch_enabled":"true", L11: <!-- L12:...github.com/codelibs/fess/src/main/resources/esc...Mon Oct 21 12:20:52 UTC 2024 16K bytes -
OpenIdConnectAuthenticator.java
thorizationCodeRequestUrl; L44:import com.google.api.client.auth.oauth2.AuthorizationCodeTokenRequest; L45:import com.google.api.client.auth.oauth2.TokenResponse; L46:import com.google.api.client.http.GenericUrl; L47:import com.google.api.client.http.HttpTransport; L48:import com.google.api.client.http.javanet.NetHttpTransport; L49:import com.google.api.client.json.JsonFactory; L50:import com.google.api.client.json.JsonParser; L51:import com.google.api.client.json.JsonToken; L52:import com.googl...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 12.3K bytes