Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 6,673 for Runtimes (0.17 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/resources/META-INF/groovy/org.codehaus.groovy.runtime.ExtensionModule

    Alex Semin <******@****.***> 1695894625 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 727 bytes
    - Viewed (0)
  2. hack/testdata/pod-restricted-runtime-default.yaml

    Keita Mochizuki <******@****.***> 1684927009 +0900
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 11:16:49 UTC 2023
    - 437 bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/resources/META-INF/services/org.spockframework.runtime.extension.IGlobalExtension

    Louis Jacomet <******@****.***> 1711728981 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 665 bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.9.md

          - [**CoreDNS**](#coredns)
          - [**Other**](#other-4)
        - [**Node**](#node-3)
          - [**Pod API**](#pod-api)
          - [**Hardware Accelerators**](#hardware-accelerators)
          - [**Container Runtime**](#container-runtime)
          - [**Kubelet**](#kubelet)
            - [**Other**](#other-5)
        - [**OpenStack**](#openstack-2)
        - [**Scheduling**](#scheduling-2)
          - [**Hardware Accelerators**](#hardware-accelerators-1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.29.md

      Noteable changes:
      1. Populate new `RuntimeHandler` field in CRI's `ImageSpec` struct during image pulls from container runtimes.
      2. Pass `runtimeHandler` field in `RemoveImage()` call to container runtime in `kubelet`'s image garbage collection. ([#121456](https://github.com/kubernetes/kubernetes/pull/121456), [@kiashok](https://github.com/kiashok))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    const (
    	// DefaultProcMount uses the container runtime defaults for readonly and masked
    	// paths for /proc.  Most container runtimes mask certain paths in /proc to avoid
    	// accidental security exposure of special devices or information.
    	DefaultProcMount ProcMountType = "Default"
    
    	// UnmaskedProcMount bypasses the default masking behavior of the container
    	// runtime and ensures the newly created /proc the container stays intact with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.18.md

    - The kubelet and the default docker runtime now support running ephemeral containers in the Linux process namespace of a target container. Other container runtimes must implement support for this feature before it will be available for that runtime. ([#84731](https://github.com/kubernetes/kubernetes/pull/84731), [@verb](https://github.com/verb)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  8. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.kotlin-shared-runtime.gradle.kts

    Paul Merlin <******@****.***> 1696347120 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 03 15:32:00 UTC 2023
    - 652 bytes
    - Viewed (0)
  9. src/runtime/env_test.go

    	// attempt to reuse existing envs backing array.
    	want := runtime.GOROOT()
    	runtime.SetEnvs(append(envs[:0], "GOROOT="+want))
    
    	if got := runtime.GOROOT(); got != want {
    		t.Errorf(`initial runtime.GOROOT()=%q, want %q`, got, want)
    	}
    	if err := syscall.Setenv("GOROOT", "/os"); err != nil {
    		t.Fatal(err)
    	}
    	if got := runtime.GOROOT(); got != want {
    		t.Errorf(`after setenv runtime.GOROOT()=%q, want %q`, got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 19 11:28:19 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  10. test/fixedbugs/issue46725.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "runtime"
    
    type T [4]int // N.B., [4]int avoids runtime's tiny object allocator
    
    //go:noinline
    func g(x []*T) ([]*T, []*T) { return x, x }
    
    func main() {
    	const Jenny = 8675309
    	s := [10]*T{{Jenny}}
    
    	done := make(chan struct{})
    	runtime.SetFinalizer(s[0], func(p *T) { close(done) })
    
    	var h, _ interface{} = g(s[:])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 11 20:13:07 UTC 2022
    - 818 bytes
    - Viewed (0)
Back to top