- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 444 for Oracle (0.12 sec)
-
src/test/java/org/codelibs/curl/CurlTest.java
// ## Act ## final Method[] methods = Method.values(); // ## Assert ## assertEquals(8, methods.length); // GET, POST, PUT, DELETE, HEAD, OPTIONS, TRACE, CONNECT // Verify each method exists boolean hasGet = false, hasPost = false, hasPut = false, hasDelete = false; boolean hasHead = false, hasOptions = false, hasTrace = false, hasConnect = false;
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 8.8K bytes - Viewed (0) -
Makefile
test-versioning: install-race @echo "Running minio versioning tests" @env bash $(PWD)/docs/bucket/versioning/versioning-tests.sh test-configfile: install-race @env bash $(PWD)/docs/distributed/distributed-from-config-file.sh test-upgrade: install-race @echo "Running minio upgrade tests" @(env bash $(PWD)/buildscripts/minio-upgrade.sh) test-race: verifiers build ## builds minio, runs linters, tests (race)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Apr 27 00:44:22 UTC 2025 - 11.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishGradleDistributionFullBuild.kt
promotedBranch: String, prepTask: String? = null, promoteTask: String, triggerName: String, gitUserName: String = "bot-teamcity", gitUserEmail: String = "bot-teamcity@gradle.com", extraParameters: String = "", ) : BasePublishGradleDistribution(promotedBranch, prepTask, triggerName, gitUserName, gitUserEmail, extraParameters) { init { steps { if (prepTask != null) {
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Mar 20 06:13:56 UTC 2025 - 1.7K bytes - Viewed (0) -
README.md
- **Maven 3.6+** or **Gradle 7+** for build management - **Optional**: SLF4J or Commons Logging for logging support ### Maven Dependency ```xml <dependency> <groupId>org.codelibs</groupId> <artifactId>corelib</artifactId> <version>0.7.0</version> </dependency> ``` ### Gradle Dependency ```gradle implementation 'org.codelibs:corelib:0.7.0' ```
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/tflite-in-play-services.md
labels: 'comp:lite-in-play-services' --- **System information** - Android Device information (use `adb shell getprop ro.build.fingerprint` if possible): - TensorFlow Lite in Play Services SDK version (found in `build.gradle`): - Google Play Services version (`Settings` > `Apps` > `Google Play Services` > `App details`): **Standalone code to reproduce the issue** Provide a reproducible test case that is the bare minimum necessary to generate
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Jun 15 03:35:58 UTC 2022 - 880 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
public void test_stackTrace_isPresent() { // Test that stack trace is properly captured SsoProcessException exception = new SsoProcessException("Test stack trace"); StackTraceElement[] stackTrace = exception.getStackTrace(); assertTrue(stackTrace.length > 0); // Verify that the current test method appears in the stack trace boolean foundTestMethod = false;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
cmd/http-tracer.go
op = strings.Replace(op, "ReadinessCheckHandler", "health.Readiness", 1) op = strings.Replace(op, "-fm", "", 1) return op } // If trace is enabled, execute the request if it is traced by other handlers // otherwise, generate a trace event with request information but no response. func httpTracerMiddleware(h http.Handler) http.Handler { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Sep 24 17:13:00 UTC 2024 - 6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java
*/ public interface MessageBuilder extends Appendable { /** * Append message content in trace style. * By default, bold magenta * * @param message the message to append * @return the current builder */ @Nonnull default MessageBuilder trace(Object message) { return style("." + Constants.MAVEN_STYLE_TRACE_NAME + ":-" + Constants.MAVEN_STYLE_TRACE_DEFAULT, message);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Nov 02 09:29:52 UTC 2024 - 7.6K bytes - Viewed (0) -
buildSrc/src/main/kotlin/AlpnVersions.kt
in 191..242 -> "8.1.13.v20181017" else -> null } /** * Returns the alpn-boot version specific to this OpenJDK 8 JVM, or null if this is not a Java 8 VM. * https://github.com/xjdr/xio/blob/master/alpn-boot.gradle */ fun alpnBootVersion(): String? { val version = System.getProperty("alpn.boot.version") if (version != null) { return version } val javaVersion = System.getProperty("java.version")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 1.8K bytes - Viewed (0) -
.idea/codeStyles/Project.xml
<option name="JD_KEEP_EMPTY_RETURN" value="false" /> </JavaCodeStyleSettings> <JetCodeStyleSettings> <option name="PACKAGES_TO_USE_STAR_IMPORTS"> <value> <package name="org.gradle.kotlin.dsl" alias="false" withSubpackages="false" /> <package name="kotlinx.android.synthetic" alias="false" withSubpackages="true" /> </value> </option>
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Mon Jul 31 14:47:08 UTC 2023 - 3.4K bytes - Viewed (1)