- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 366 for runtime (0.12 sec)
-
doc/next/4-runtime.md
## Runtime {#runtime}...
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Jul 22 17:55:04 UTC 2024 - 22 bytes - Viewed (0) -
doc/initial/4-runtime.md
## Runtime {#runtime}...
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Jan 22 18:07:49 UTC 2024 - 22 bytes - Viewed (0) -
compat/maven-compat/src/test/resources/projects/scope/transitive-runtime-dep.xml
<scope>test</scope> </dependency> <dependency> <groupId>maven-test-runtime</groupId> <artifactId>scope-runtime</artifactId> <version>1.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>maven-test-runtime</groupId> <artifactId>scope-compile</artifactId> <version>1.0</version> <scope>compile</scope> </dependency> </dependencies>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.java-shared-runtime.gradle.kts
id("gradlebuild.repositories") id("gradlebuild.reproducible-archives") id("gradlebuild.private-javadoc") } description = "A plugin that sets up a Java code that is shared between build-logic and runtime" java { configureJavaToolChain() sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 } testing { suites {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Sep 30 15:18:07 UTC 2024 - 779 bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.kotlin-shared-runtime.gradle.kts
id("gradlebuild.test-retry") id("gradlebuild.ci-reporting") id("gradlebuild.private-javadoc") } description = "A plugin that sets up a Kotlin DSL code that is shared between build-logic and runtime" java { configureJavaToolChain() sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 } kotlin { compilerOptions {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 20 14:11:17 UTC 2024 - 948 bytes - Viewed (0) -
architecture/runtimes.md
Not every module contributes to every runtime. The core-runtime module defines each runtime: - The target JVM for the runtime. Each runtime has its own JVM compatibility constraints. - Some base services that are available to code hosted by the runtime. This varies by runtime. - Additional constraints. For example, the CLI client runtimes limit the libraries that are available to the code in that runtime, for performance reasons.
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu May 02 06:42:46 UTC 2024 - 2.3K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/ProjectClasspathTestType.java
// check all transitive deps of a runtime dependency are runtime scope, except for test checkGroupIdScope(project, "runtime", "maven-test-runtime"); artifact = getArtifact(project, "maven-test-runtime", "scope-runtime"); assertEquals("runtime", artifact.getScope(), "Check scope"); // check all transitive deps of a compile dependency are compile scope, except for runtime and test
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java
protected void setupHtmlData(final ActionRuntime runtime) { super.setupHtmlData(runtime); systemHelper.setupAdminHtmlData(this, runtime); final Boolean editable = getUserBean() .map(user -> user.hasRoles(fessConfig.getAuthenticationAdminRolesAsArray()) || user.hasRole(getActionRole())).orElse(false); runtime.registerData("editable", editable);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/MemoryUtil.java
public final class MemoryUtil { private MemoryUtil() { } public static String getMemoryUsageLog() { final Runtime runtime = Runtime.getRuntime(); final long freeBytes = runtime.freeMemory(); final long maxBytes = runtime.maxMemory(); final long totalBytes = runtime.totalMemory(); final long usedBytes = totalBytes - freeBytes;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
public final ActionResponse godHandMonologue(final ActionRuntime runtime) { return viewHelper.getActionHook().godHandMonologue(runtime, super::godHandMonologue); } @Override public final void godHandEpilogue(final ActionRuntime runtime) { viewHelper.getActionHook().godHandEpilogue(runtime, super::godHandEpilogue); } // #app_customize you can customize the action hook @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 9.3K bytes - Viewed (0)