- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 299 for LOCALHOST (0.18 seconds)
-
src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java
pathMapping.setReplacement("http://localhost/"); pathMappingList.add(pathMapping); pathMappingHelper.cachedPathMappingList = pathMappingList; String text = "\"file:///home/\""; assertEquals("\"http://localhost/\"", pathMappingHelper.replaceUrls(text)); text = "\"file:///home/user/\""; assertEquals("\"http://localhost/user/\"", pathMappingHelper.replaceUrls(text));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 15.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CurlHelperTest.java
setupMockConfig("localhost:9200,localhost:9201,localhost:9202", "", ""); curlHelper.init(); NodeManager nodeManager = getNodeManager(curlHelper); assertNotNull(nodeManager); } @Test public void test_init_hostsWithSpaces() { setupMockConfig(" localhost:9200 , localhost:9201 , localhost:9202 ", "", ""); curlHelper.init();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 10.4K bytes - Click Count (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/TlsUtil.kt
val password = "password".toCharArray() private val localhost: HandshakeCertificates by lazy { // Generate a self-signed cert for the server to serve and the client to trust. val heldCertificate = HeldCertificate .Builder() .commonName("localhost") .addSubjectAlternativeName("localhost") .addSubjectAlternativeName("localhost.localdomain") .build()
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 4.3K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/util/IpAddressUtilTest.java
if (localhost.getHostAddress().contains(":")) { // IPv6 localhost String opensearchUrl = IpAddressUtil.buildUrl("http", localhost, 9200, ""); assertTrue(opensearchUrl.matches("http://\\[.*\\]:9200")); } else { // IPv4 localhost String opensearchUrl = IpAddressUtil.buildUrl("http", localhost, 9200, "");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 08:31:03 GMT 2025 - 8.9K bytes - Click Count (0) -
src/test/java/jcifs/ConfigTest.java
@DisplayName("Should get InetAddress property with default value") void testGetInetAddressWithDefault() throws UnknownHostException { InetAddress localhost = InetAddress.getByName("localhost"); InetAddress defaultAddress = InetAddress.getByName("127.0.0.1"); assertEquals(localhost, Config.getInetAddress(testProperties, "test.host", null));Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 3.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
assertEquals(exp, transformer.getHostOnFile(url)); url = "file:"; exp = "localhost"; assertEquals(exp, transformer.getHostOnFile(url)); url = "file://"; exp = "localhost"; assertEquals(exp, transformer.getHostOnFile(url)); url = "file:///"; exp = "localhost"; assertEquals(exp, transformer.getHostOnFile(url)); url = "file://///";
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14.4K bytes - Click Count (0) -
docs/ja/docs/advanced/wsgi.md
/// ## チェック { #check-it } これで、パス `/v1/` 配下へのすべてのリクエストは Flask アプリケーションが処理します。 それ以外は **FastAPI** が処理します。 実行して [http://localhost:8000/v1/](http://localhost:8000/v1/) にアクセスすると、Flask からのレスポンスが表示されます: ```txt Hello, World from Flask! ``` さらに [http://localhost:8000/v2](http://localhost:8000/v2) にアクセスすると、FastAPI からのレスポンスが表示されます: ```JSON { "message": "Hello World" }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 1.8K bytes - Click Count (0) -
tests/tests_test.go
var DB *gorm.DB var ( mysqlDSN = "gorm:gorm@tcp(localhost:9910)/gorm?charset=utf8&parseTime=True&loc=Local" postgresDSN = "user=gorm password=gorm dbname=gorm host=localhost port=9920 sslmode=disable TimeZone=Asia/Shanghai" gaussdbDSN = "user=gaussdb password=Gaussdb@123 dbname=gorm host=localhost port=9950 sslmode=disable TimeZone=Asia/Shanghai" sqlserverDSN = "sqlserver://sa:LoremIpsum86@localhost:9930?database=master"
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Mon Jul 21 02:46:58 GMT 2025 - 3.7K bytes - Click Count (0) -
compat/maven-model-builder/src/test/resources/poms/validation/bad-repository-id.xml
<repository> <id>this/is\bad</id> <url>http://localhost</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>this/is\bad</id> <url>http://localhost</url> </pluginRepository> </pluginRepositories> <distributionManagement> <repository> <id>this/is\bad</id> <url>http://localhost</url> </repository> <snapshotRepository>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.4K bytes - Click Count (0) -
docs/en/docs/advanced/wsgi.md
And the rest will be handled by **FastAPI**. If you run it and go to [http://localhost:8000/v1/](http://localhost:8000/v1/) you will see the response from Flask: ```txt Hello, World from Flask! ``` And if you go to [http://localhost:8000/v2](http://localhost:8000/v2) you will see the response from FastAPI: ```JSON { "message": "Hello World" }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 1.4K bytes - Click Count (0)