- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 269 for Main (0.01 sec)
-
src/test/java/org/codelibs/fess/util/PrunedTagTest.java
PrunedTag tagWithIdAndCss = new PrunedTag("div"); tagWithIdAndCss.setId("main"); tagWithIdAndCss.setCss("container"); MockNode nodeWithBothIdAndClass = new MockNode("div"); nodeWithBothIdAndClass.addAttribute("id", "main"); nodeWithBothIdAndClass.addAttribute("class", "container"); assertTrue(tagWithIdAndCss.matches(nodeWithBothIdAndClass));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 21K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/PostFile.java
if (!response.isSuccessful()) throw new IOException("Unexpected code " + response); System.out.println(response.body().string()); } } public static void main(String... args) throws Exception { new PostFile().run(); }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 25 18:02:55 UTC 2019 - 1.5K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/DevServer.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 1.9K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/ParseResponseWithMoshi.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 1.6K bytes - Viewed (0) -
src/test/resources/plugin/repo3/index.html
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jun 17 13:30:41 UTC 2024 - 6.2K bytes - Viewed (0) -
okhttp/build.gradle.kts
minSdk = 21 consumerProguardFiles("okhttp3.pro") } testOptions { unitTests { isIncludeAndroidResources = true } } sourceSets { named("main") { manifest.srcFile("src/androidMain/AndroidManifest.xml") assets.srcDir("src/androidMain/assets") } } } project.applyOsgiMultiplatform(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 03 03:59:03 UTC 2025 - 9.4K bytes - Viewed (0) -
docs/zh-CN/README.md
* [fess_label_en.properties](https://github.com/codelibs/fess/blob/master/src/main/resources/fess_label_en.properties) * [fess_message_en.properties](https://github.com/codelibs/fess/blob/master/src/main/resources/fess_message_en.properties)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 12 07:19:47 UTC 2024 - 6.8K bytes - Viewed (0) -
src/main/resources/fess_env.properties
# ------ # Does it send mock mail? (true: no send actually, logging only) mail.send.mock = true # SMTP server settings for main: host:port mail.smtp.server.main.host.and.port = localhost:25 # The prefix of subject to show test environment or not mail.subject.test.prefix = [Test] # The common return path of all mail mail.return.path = root@localhost
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Aug 07 04:53:24 UTC 2021 - 2.2K bytes - Viewed (0) -
android-test/src/androidTest/java/okhttp/android/test/StrictModeTest.kt
assertThat(violations[0].message).isEqualTo("newSSLContext") } @Test fun testNewCall() { Platform.resetForTests() val client = OkHttpClient() applyStrictMode() // Safe on main client.newCall(Request("https://google.com/robots.txt".toHttpUrl())) assertThat(violations).isEmpty() } private fun applyStrictMode() { StrictMode.setThreadPolicy( ThreadPolicy
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu May 22 14:39:30 UTC 2025 - 2.1K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/LoggingInterceptors.java
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jan 01 15:55:32 UTC 2016 - 2K bytes - Viewed (0)