- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 629 for runtimes (0.07 seconds)
-
api/go1.17.txt
pkg runtime/cgo (freebsd-arm64-cgo), method (Handle) Delete() pkg runtime/cgo (freebsd-arm64-cgo), method (Handle) Value() interface{} pkg runtime/cgo (freebsd-arm64-cgo), type Handle uintptr pkg runtime/cgo (linux-386-cgo), func NewHandle(interface{}) Handle pkg runtime/cgo (linux-386-cgo), method (Handle) Delete() pkg runtime/cgo (linux-386-cgo), method (Handle) Value() interface{} pkg runtime/cgo (linux-386-cgo), type Handle uintptr
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Fri Feb 17 20:31:46 GMT 2023 - 18K bytes - Click Count (0) -
cmd/main.go
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Jul 30 22:59:48 GMT 2024 - 6.5K bytes - Click Count (0) -
.teamcity/subprojects.json
"unitTests": true, "functionalTests": true, "crossVersionTests": false }, { "name": "build-state", "path": "platforms/core-runtime/build-state", "unitTests": true, "functionalTests": false, "crossVersionTests": false }, { "name": "classloaders", "path": "platforms/core-runtime/classloaders", "unitTests": false,
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Dec 18 18:40:11 GMT 2025 - 37.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/MemoryUtil.java
* * @return formatted memory usage information */ 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;Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.3K bytes - Click Count (0) -
architecture/standards/0007-java-pre-requisite.md
# ADR-0007 - Support running Gradle on multiple Java versions and do not embed a Java runtime in the Gradle distribution ## Date 2024-12-20 ## Context ### Embedding a Java runtime in the Gradle distribution There have been discussions on embedding a Java runtime in the Gradle distribution. This would allow users to run Gradle without having to install a Java runtime beforehand.
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Jan 07 08:44:20 GMT 2025 - 3.3K bytes - Click Count (0) -
src/main/java/jcifs/RuntimeCIFSException.java
/** * */ private static final long serialVersionUID = -2611196678846438579L; /** * Constructs a runtime CIFS exception with no detail message. */ public RuntimeCIFSException() { } /** * Constructs a runtime CIFS exception with the specified detail message and cause. * * @param message the detail message * @param cause the cause of this exceptionCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2K bytes - Click Count (0) -
internal/logger/utils.go
"context" "errors" "fmt" "net/http" "regexp" "runtime" "github.com/minio/minio/internal/color" ) var ansiRE = regexp.MustCompile("(\x1b[^m]*m)") // Print ANSI Control escape func ansiEscape(format string, args ...any) { Esc := "\x1b" fmt.Printf("%s%s", Esc, fmt.Sprintf(format, args...)) } func ansiMoveRight(n int) { if runtime.GOOS == "windows" { return } if color.IsTerminal() {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 1.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java
@Override public void run(final LaJobRuntime runtime) { final JobHelper jobHelper = ComponentUtil.getJobHelper(); try { jobHelper.setJobRuntime(runtime); process(runtime); } finally { jobHelper.setJobRuntime(null); } } /** * Processes the job. * @param runtime The job runtime. */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 5.5K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Mar 19 14:33:26 GMT 2025 - 4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/JobHelper.java
} } /** * Sets the job runtime for the current thread. * * @param runtime the job runtime to set */ public void setJobRuntime(final LaJobRuntime runtime) { jobRuntimeLocal.set(runtime); } /** * Gets the job runtime for the current thread. * * @return the job runtime for the current thread */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 10.9K bytes - Click Count (0)