- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for myconf3 (0.05 sec)
-
compat/maven-model/src/test/java/org/apache/maven/model/v4/ModelXmlTest.java
assertEquals("configuration", node.getName()); assertEquals(1, node.getChildren().size()); XmlNode myConfig = node.getChildren().get(0); assertEquals("http://fabric8.io/fabric8-maven-plugin", myConfig.getNamespaceUri()); assertEquals("", myConfig.getPrefix()); assertEquals("myConfig", myConfig.getName()); String config = node.toString(); assertFalse(config.isEmpty()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/Interceptor.kt
* * A good way to signal a failure is with a synthetic HTTP response: * * ```kotlin * @Throws(IOException::class) * override fun intercept(chain: Interceptor.Chain): Response { * if (myConfig.isInvalid()) { * return Response.Builder() * .request(chain.request()) * .protocol(Protocol.HTTP_1_1) * .code(400) * .message("client config invalid")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 3.5K bytes - Viewed (0)