Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,338 for okhttp (0.04 sec)

  1. pom.xml

    </exclusions> L1205: </dependency> L1206: <dependency> L1207: <groupId>com.google.http-client</groupId> L1208: <artifactId>google-http-client-jackson2</artifactId> L1209: <version>${google.http.client.version}</version> L1210: </dependency> L1211: <dependency> L1212: <groupId>com.google.http-client</groupId> L1213: <artifactId>google-http-client-xml</artifactId> L1214: <version>${google.http.client.version}</version> L1215: <exclusions> L1216: <exclusion> L1217: <groupId>xpp3</groupId>...
    github.com/codelibs/fess/pom.xml
    Sat Oct 26 02:16:03 UTC 2024
      49.1K bytes
  2. UriTypeValidatorTest.java

    String values; L24: L25: protocols = new String[] { "http:" }; L26: values = "http://www.foo.com/"; L27: assertTrue(UriTypeValidator.check(protocols, values)); L28: L29: protocols = new String[] { "http:" }; L30: values = "http://www.foo.com/\nhttp://www.bar.com/"; L31: assertTrue(UriTypeValidator.check(protocols, values)); L32: L33: protocols = new String[] { "http:" }; L34: values = "http://www.foo.com/ \r\nhttp://www.bar.com/"; L35: as...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.2K bytes
  3. GsaConfigParserTest.java

    "!/"); L58: assertEscapePattern("\\Qindex.html\\E", "index.html"); L59: assertEscapePattern("^\\Qhttp://\\E.*", "^http://"); L60: assertEscapePattern(".*\\Qindex.html\\E$", "index.html$"); L61: assertEscapePattern("^\\Qhttp://www.codelibs.org/page.html\\E$", "^http://www.codelibs.org/page.html$"); L62: assertEscapePattern("\\Qhttp://www.codelibs.org/\\E.*", "http://www.codelibs.org/"); L63: assertEscapePattern("\\Qsmb://server/test/\\E.*", "smb://server/test/");...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.2K bytes
  4. fess.in.bat

    -XX:MaxDirectMemorySize=%FESS_DIRECT_SIZE% L44:) L45: L46:REM set to headless, just in case L47:set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Djava.awt.headless=true L48: L49:REM maximum # keep-alive connections to maintain at once L50:set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dhttp.maxConnections=20 L51: L52:REM Force the JVM to use IPv4 stack L53:if NOT "%FESS_USE_IPV4%" == "" ( L54:set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Djava.net.preferIPv4Stack=true L55:) L56: L57:set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Djna.nosys=true L58:set...
    github.com/codelibs/fess/src/main/assemblies/fi...
    Sun Jan 15 06:32:15 UTC 2023
      4.2K bytes
  5. fess.in.sh

    JAVA_OPTS -Xmn${FESS_HEAP_NEWSIZE}" L42:fi L43: L44:# set to headless, just in case L45:FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Djava.awt.headless=true" L46: L47:# maximum # keep-alive connections to maintain at once L48:FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dhttp.maxConnections=20" L49: L50:# Force the JVM to use IPv4 stack L51:if [ "x$FESS_USE_IPV4" != "x" ]; then L52: FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Djava.net.preferIPv4Stack=true" L53:fi L54: L55:FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Djna.nosys=true" L56:FE...
    github.com/codelibs/fess/src/main/assemblies/fi...
    Sun Jan 15 06:32:15 UTC 2023
      4.7K bytes
  6. DuplicateHostHelperTest.java

    result = "http://www.foo.com"; L78: assertEquals(result, duplicateHostHelper.convert(url)); L79: L80: url = "http://www.foo.com/"; L81: result = "http://www.foo.com/"; L82: assertEquals(result, duplicateHostHelper.convert(url)); L83: L84: url = "http://www.foo.com:8080/"; L85: result = "http://www.foo.com:8080/"; L86: assertEquals(result, duplicateHostHelper.convert(url)); L87: L88: url = "http://www.bar.com/"; L89: result = "http://www.bar.com/";...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.3K bytes
  7. ProtocolHelperTest.java

    2012-2024 CodeLibs Project and the Others. L3: * L4: * Licensed under the Apache License, Version 2.0 (the "License"); L5: * you may not use this file except in compliance with the License. L6: * You may obtain a copy of the License at L7: * L8: * http://www.apache.org/licenses/LICENSE-2.0 L9: * L10: * Unless required by applicable law or agreed to in writing, software L11: * distributed under the License is distributed on an "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13:...
    github.com/codelibs/fess/src/test/java/org/code...
    Tue Jun 18 00:44:11 UTC 2024
      4.5K bytes
  8. 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
  9. PathMappingHelperTest.java

    pathMapping.setRegex("file:///home/"); L68: pathMapping.setReplacement("http://localhost/"); L69: pathMappingList.add(pathMapping); L70: L71: pathMappingHelper.cachedPathMappingList = pathMappingList; L72: L73: String text = "\"file:///home/\""; L74: assertEquals("\"http://localhost/\"", pathMappingHelper.replaceUrls(text)); L75: L76: text = "\"file:///home/user/\""; L77: assertEquals("\"http://localhost/user/\"", pathMappingHelper.replaceUrls(text)); L78: L79:...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.3K bytes
  10. README.md

    den Fess-Server und führen Sie den folgenden Befehl aus: L133: L134: $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" L135: L136:Um einen einzelnen Testfall auszuführen, können Sie verwenden: L137: L138: $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" -Dtest=SearchApiTests L139: L140:### In Ihre Sprache übersetzen L141: L142:Fess ist eine internationalisierte...
    github.com/codelibs/fess/docs/de/README.md
    Sat Oct 12 07:19:47 UTC 2024
      7.6K bytes
Back to top