Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,594 for Runtimes (0.21 sec)

  1. 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 Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. pkg/kubelet/cadvisor/helpers_linux.go

    )
    
    // imageFsInfoProvider knows how to translate the configured runtime
    // to its file system label for images.
    type imageFsInfoProvider struct {
    	runtimeEndpoint string
    }
    
    // ImageFsInfoLabel returns the image fs label for the configured runtime.
    // For remote runtimes, it handles additional runtimes natively understood by cAdvisor.
    func (i *imageFsInfoProvider) ImageFsInfoLabel() (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:15:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. architecture/README.md

    While a lot of Gradle source code runs only in the Gradle daemon, not all of it does and so, when working on some source code it is important to be aware of the runtimes in which it will run.
    
    See [Gradle runtimes](runtimes.md) for a list of these runtimes and more details.
    
    ## Build state model
    
    As Gradle executes, it acts on various pieces of the build definition, such as each project in the build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. architecture/platforms.md

    This platform does not provide special support for a particular kind of automation. This is the responsibility of other platforms.
    
    It is made up of 3 architecture modules:
    
    - **core-runtime**: Provides the runtimes or "containers" in which code runs. These runtimes include the Gradle client, the daemon and the worker processes. This is the base module on which all other architecture modules depend.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JvmVendorSpec.java

        /**
         * A constant for using <a href="https://developer.ibm.com/languages/java/semeru-runtimes/">IBM Semeru Runtimes</a> as the JVM vendor.
         *
         * @since 7.4
         * @deprecated We are grouping all IBM runtimes under the '{@code IBM}' vendor, won't keep a separate constant for Semeru ones. Just use '{@code IBM}' instead.
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. architecture/standards/0004-use-a-platform-architecture.md

    This platform does not provide special support for a particular kind of automation. This is the responsibility of other platforms. 
    
    It is made up of 3 architecture modules:
    
    - **Runtime**: Provides the runtimes or "containers" in which code runs. These runtimes include the Gradle client, the daemon and the worker processes. This is the base module on which all other architecture modules depend.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/app/fds.go

    package app
    
    // RaiseFileLimits sets the file limit to the maximum allowed, to avoid exhaustion of file descriptors.
    // This is done by setting soft limit == hard limit.
    // Typical container runtimes already do this, but on VMs, etc this is generally not the case, and a limit of 1024 is common -- this is quite low!
    //
    // Go already sets this (https://github.com/golang/go/issues/46279).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesCodeQualityIntegrationTest.groovy

        @Requires([UnitTestPreconditions.StableGroovy, UnitTestPreconditions.Jdk11OrLater, UnitTestPreconditions.Jdk21OrEarlier]) // FIXME KM temporarily disabling while CodeNarc runs in Worker API with multiple Groovy runtimes
        def "can generate reports with #dsl dsl"() {
            TestFile projectDir = sample.dir.file(dsl)
            TestFile buildDir = projectDir.file('build')
    
            when:
            executer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. src/runtime/internal/wasitest/tcpecho_test.go

    	// Although the WASM runtime accepts port 0, and the WASM module listens
    	// successfully, there's no way for this test to query the selected port
    	// so that it can connect to the WASM module. The WASM module itself
    	// cannot access any information about the socket due to limitations
    	// with WASI preview 1 networking, and the WASM runtimes do not log the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 22:01:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/AbstractWritableResultsStore.groovy

        }
    
        @Override
        public Map<PerformanceExperimentOnOs, Long> getEstimatedExperimentDurationsInMillis() {
            return this.<Map<PerformanceExperimentOnOs, Long>>withConnection("load estimated runtimes") { connection ->
                Timestamp since = Timestamp.valueOf(LocalDateTime.now().minusDays(LATEST_EXECUTION_TIMES_DAYS))
                ImmutableMap.Builder<PerformanceExperimentOnOs, Long> builder = ImmutableMap.builder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top