Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for com (0.03 sec)

  1. FessXpathTransformerTest.java

    assertEquals("http://hoge.com/aaa", value); L791: L792: value = transformer.normalizeCanonicalUrl("http://hoge.com/bbb", "http://hoge.com/aaa"); L793: assertEquals("http://hoge.com/aaa", value); L794: L795: value = transformer.normalizeCanonicalUrl("http://hoge.com/bbb", "://hoge.com/aaa"); L796: assertEquals("http://hoge.com/aaa", value); L797: L798: value = transformer.normalizeCanonicalUrl("http://hoge.com/bbb", "//hoge.com/aaa"); L799: assertEquals("http://hoge.com/aaa",...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Oct 24 13:01:38 UTC 2024
      41.3K bytes
  2. FessFileTransformerTest.java

    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/テスト .html";...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Jul 04 06:20:49 UTC 2024
      9.8K bytes
  3. IndexingHelperTest.java

    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()); L126: ...
    github.com/codelibs/fess/src/test/java/org/code...
    Wed Jul 24 08:54:24 UTC 2024
      23.4K bytes
  4. OpenIdConnectAuthenticator.java

    L41:import org.lastaflute.web.util.LaRequestUtil; L42: L43:import com.google.api.client.auth.oauth2.AuthorizationCodeRequestUrl; 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.a...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      12.3K bytes
  5. AzureAdAuthenticator.java

    org.lastaflute.web.util.LaRequestUtil; L64: L65:import com.google.common.cache.Cache; L66:import com.google.common.cache.CacheBuilder; L67:import com.microsoft.aad.adal4j.AuthenticationContext; L68:import com.microsoft.aad.adal4j.AuthenticationResult; L69:import com.microsoft.aad.adal4j.ClientCredential; L70:import com.nimbusds.jwt.JWTClaimsSet; L71:import com.nimbusds.jwt.JWTParser; L72:import com.nimbusds.oauth2.sdk.AuthorizationCode; L73:import com.nimbusds.openid.connect.sdk.AuthenticationErrorResponse;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      28.2K bytes
  6. 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
  7. FessFunctions.java

    org.lastaflute.web.util.LaRequestUtil; L60:import org.lastaflute.web.util.LaResponseUtil; L61:import org.lastaflute.web.util.LaServletContextUtil; L62:import org.opensearch.common.joda.Joda; L63: L64:import com.google.common.cache.CacheBuilder; L65:import com.google.common.cache.CacheLoader; L66:import com.google.common.cache.LoadingCache; L67: L68:import jakarta.servlet.http.HttpServletRequest; L69: L70:public class FessFunctions { L71: private static final Logger logger = LogManager.getLogger(FessFunctions.class);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      16.9K bytes
  8. SystemHelperTest.java

    Path("#hash")); L369: assertEquals(".*\\Qwww.domain.com/test\\E.*", systemHelper.normalizeConfigPath("contains:www.domain.com/test")); L370: assertEquals(".*\\Q/test/\\E.*", systemHelper.normalizeConfigPath("contains:/test/")); L371: assertEquals("www.domain.com/test", systemHelper.normalizeConfigPath("www.domain.com/test")); L372: assertEquals(".*domain.com/.*", systemHelper.normalizeConfigPath(".*domain.com/.*")); L373: assertEquals("aaa", systemHelper.normal...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      18.5K bytes
  9. ViewHelperTest.java

    String fieldName = fessConfig.getResponseFieldUrlLink(); L280: L281: urlLink = "http://www.google.com"; L282: sitePath = "www.google.com"; L283: docMap.put(fieldName, urlLink); L284: assertEquals(sitePath, viewHelper.getSitePath(docMap)); L285: L286: urlLink = "https://www.jp.websecurity.symantec.com/"; L287: sitePath = "www.jp.websecurity.symantec.com/"; L288: docMap.put(fieldName, urlLink); L289: assertEquals(sitePath, viewHelper.getSitePath(docMap));...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      15.1K bytes
  10. SearchLogHelper.java

    til; L58:import org.opensearch.action.update.UpdateRequest; L59:import org.opensearch.script.Script; L60: L61:import com.fasterxml.jackson.core.JsonProcessingException; L62:import com.fasterxml.jackson.databind.ObjectMapper; L63:import com.google.common.base.CaseFormat; L64:import com.google.common.cache.CacheBuilder; L65:import com.google.common.cache.CacheLoader; L66:import com.google.common.cache.LoadingCache; L67: L68:import jakarta.annotation.PostConstruct; L69: L70:public class SearchLogHelper...
    github.com/codelibs/fess/src/main/java/org/code...
    Mon Jul 22 02:07:37 UTC 2024
      21.7K bytes
Back to top