Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 6,673 for Runtimes (0.14 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. pkg/kubelet/cadvisor/helpers_unsupported.go

    limitations under the License.
    */
    
    package cadvisor
    
    import "errors"
    
    type unsupportedImageFsInfoProvider struct{}
    
    // ImageFsInfoLabel returns the image fs label for the configured runtime.
    // For remote runtimes, it handles additional runtimes natively understood by cAdvisor.
    func (i *unsupportedImageFsInfoProvider) ImageFsInfoLabel() (string, error) {
    	return "", errors.New("unsupported")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/crypto/rand/rand_wasip1.go

    	// The definition does not explicitly guarantee that the entire buffer will
    	// be filled, but this appears to be the case in all runtimes tested.
    	err := syscall.RandomGet(b)
    	if err != nil {
    		return 0, err
    	}
    	return len(b), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:54:07 UTC 2023
    - 787 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/fuzz_race.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package roundtrip
    
    // in race-detection mode, lower the number of iterations to keep reasonable runtimes in CI
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 741 bytes
    - Viewed (0)
  9. pkg/kubelet/images/types.go

    // Implementations of this interface are expected to deal with pulling (downloading),
    // managing, and deleting container images.
    // Implementations are expected to abstract the underlying runtimes.
    // Implementations are expected to be thread safe.
    type ImageManager interface {
    	// EnsureImageExists ensures that image specified in `container` exists.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 22:52:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/host_stats_provider_test.go

    		podUID              types.UID
    		rootFsInfo          *cadvisorapiv2.FsInfo
    		want                *statsapi.FsStats
    		wantErr             bool
    	}{
    		{
    			name: "Should return nil for runtimes that do not support etc host file",
    			podEtcHostsPathFunc: func(podUID types.UID) string {
    				return ""
    			},
    			podUID:     "fake0001",
    			rootFsInfo: nil,
    			want:       nil,
    			wantErr:    false,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 10 11:26:59 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top