Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,814 for RUNTIME (0.09 sec)

  1. pkg/kubelet/container/runtime.go

    	TotalStorageBytes uint64
    }
    
    // Runtime interface defines the interfaces that should be implemented
    // by a container runtime.
    // Thread safety is required from implementations of this interface.
    type Runtime interface {
    	// Type returns the type of the container runtime.
    	Type() string
    
    	// Version returns the version information of the container runtime.
    	Version(ctx context.Context) (Version, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    // Specialized versions of convT for specific types.
    // These functions take concrete types in the runtime. But they may
    // be used for a wider range of types, which have the same memory
    // layout as the parameter type. The compiler converts the
    // to-be-converted type to the parameter type before calling the
    // runtime function. This way, the call is ABI-insensitive.
    func convT16(val uint16) unsafe.Pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package runtime
    
    import (
    	"context"
    	"fmt"
    	"net/http"
    	"runtime"
    	"sync"
    	"time"
    
    	"k8s.io/klog/v2"
    )
    
    var (
    	// ReallyCrash controls the behavior of HandleCrash and defaults to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/runtime/runtime.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    //go:generate go run wincallback.go
    //go:generate go run mkduff.go
    //go:generate go run mkfastlog2table.go
    //go:generate go run mklockrank.go -o lockrank.go
    
    var ticks ticksType
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/runtime/runtime-gdb.py

    
    G_IDLE = read_runtime_const("'runtime._Gidle'", 0)
    G_RUNNABLE = read_runtime_const("'runtime._Grunnable'", 1)
    G_RUNNING = read_runtime_const("'runtime._Grunning'", 2)
    G_SYSCALL = read_runtime_const("'runtime._Gsyscall'", 3)
    G_WAITING = read_runtime_const("'runtime._Gwaiting'", 4)
    G_MORIBUND_UNUSED = read_runtime_const("'runtime._Gmoribund_unused'", 5)
    G_DEAD = read_runtime_const("'runtime._Gdead'", 6)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  6. src/runtime/runtime-gdb_test.go

    	testenv.MustHaveGoBuild(t)
    	switch runtime.GOOS {
    	case "darwin":
    		t.Skip("gdb does not work on darwin")
    	case "netbsd":
    		t.Skip("gdb does not work with threads on NetBSD; see https://golang.org/issue/22893 and https://gnats.netbsd.org/52548")
    	case "linux":
    		if runtime.GOARCH == "ppc64" {
    			t.Skip("skipping gdb tests on linux/ppc64; see https://golang.org/issue/17366")
    		}
    		if runtime.GOARCH == "mips" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tpu-variable-runtime-reformatting.mlir

    // RUN: tf-opt %s -split-input-file -tf-tpu-variable-runtime-reformatting| FileCheck %s
    
    // Tests that the pass can correctly transform a training loop with 2 replicas.
    
    !tf_res_f32 = tensor<*x!tf_type.resource<tensor<f32>>>
    !tf_res_md_f32 = tensor<*x!tf_type.resource<tensor<3x3x1x32xf32>>> // Multi-dim f32
    
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
      // CHECK-LABEL: func @main
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 25.4K bytes
    - Viewed (0)
  8. test/codegen/slices.go

    	// amd64:-`.*runtime\.memclrNoHeapPointers`
    	// amd64:-`.*runtime\.makeslice`
    	// amd64:-`.*runtime\.panicmakeslicelen`
    	// amd64:"MOVUPS\tX15"
    	// ppc64x:-`.*runtime\.memclrNoHeapPointers`
    	// ppc64x:-`.*runtime\.makeslice`
    	// ppc64x:-`.*runtime\.panicmakeslicelen`
    	return append(s, make([]int, int64(1<<2))...)
    }
    
    func SliceExtensionConstUint64(s []int) []int {
    	// amd64:-`.*runtime\.memclrNoHeapPointers`
    	// amd64:-`.*runtime\.makeslice`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 18:57:27 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. test/fixedbugs/issue30116u.out

                                                                slice[4:0] runtime error: slice bounds out of range [4:0]
                                                                slice[4:3] runtime error: slice bounds out of range [4:3]
                                                                slice[4:4] runtime error: slice bounds out of range [:4] with capacity 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 17:33:38 UTC 2019
    - 44K bytes
    - Viewed (0)
  10. src/runtime/pinner_test.go

    		}
    	}()
    	runtime.CgoCheckPointer(p, true)
    }
    
    func TestPinnerSimple(t *testing.T) {
    	var pinner runtime.Pinner
    	p := new(obj)
    	addr := unsafe.Pointer(p)
    	if runtime.IsPinned(addr) {
    		t.Fatal("already marked as pinned")
    	}
    	pinner.Pin(p)
    	if !runtime.IsPinned(addr) {
    		t.Fatal("not marked as pinned")
    	}
    	if runtime.GetPinCounter(addr) != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:36:12 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top