Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 59 for RUNTIME (0.15 sec)

  1. src/cmd/trace/testdata/go122.test

    String id=64
    	data="runtime.goparkunlock"
    String id=65
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/proc.go"
    String id=66
    	data="runtime.bgsweep"
    String id=67
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mgcsweep.go"
    String id=68
    	data="runtime.asyncPreempt"
    String id=69
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/preempt_amd64.s"
    String id=70
    	data="main.cpuHog"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status_test.go

    	// Should report kubelet not ready if the runtime check is out of date
    	clock.SetTime(time.Now().Add(-maxWaitForContainerRuntime))
    	kubelet.updateRuntimeUp()
    	checkNodeStatus(v1.ConditionFalse, "KubeletNotReady")
    
    	// Should report kubelet not ready if the runtime check failed
    	fakeRuntime := testKubelet.fakeRuntime
    	// Inject error into fake runtime status check, node should be NotReady
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apimachinery/pkg/watch"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes/fake"
    	scalefake "k8s.io/client-go/scale/fake"
    	core "k8s.io/client-go/testing"
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    			return ToBin
    		}
    		return ToTool
    	}
    	return ToBin
    }
    
    var cgoExclude = map[string]bool{
    	"runtime/cgo": true,
    }
    
    var cgoSyscallExclude = map[string]bool{
    	"runtime/cgo":  true,
    	"runtime/race": true,
    	"runtime/msan": true,
    	"runtime/asan": true,
    }
    
    var foldPath = make(map[string]string)
    
    // exeFromImportPath returns an executable name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    //go:nosplit
    func releaseSudog(s *sudog) {
    	if s.elem != nil {
    		throw("runtime: sudog with non-nil elem")
    	}
    	if s.isSelect {
    		throw("runtime: sudog with non-false isSelect")
    	}
    	if s.next != nil {
    		throw("runtime: sudog with non-nil next")
    	}
    	if s.prev != nil {
    		throw("runtime: sudog with non-nil prev")
    	}
    	if s.waitlink != nil {
    		throw("runtime: sudog with non-nil waitlink")
    	}
    	if s.c != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/tests/go122-gc-stress.test

    String id=69
    	data="runtime.(*mcache).allocLarge"
    String id=70
    	data="runtime.chanrecv1"
    String id=71
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/chan.go"
    String id=72
    	data="runtime.(*wakeableSleep).sleep"
    String id=73
    	data="runtime.(*mcentral).grow"
    String id=74
    	data="runtime.traceLocker.Gomaxprocs"
    String id=75
    	data="runtime.traceLocker.stack"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/generic.rules

    	&& isSameCall(call.Aux, "runtime.newobject")
    	=> mem
    
    (Store (SelectN [0] call:(StaticLECall _ _)) x mem:(SelectN [1] call))
    	&& isConstZero(x)
    	&& isSameCall(call.Aux, "runtime.newobject")
    	=> mem
    
    (Store (OffPtr (SelectN [0] call:(StaticLECall _ _))) x mem:(SelectN [1] call))
    	&& isConstZero(x)
    	&& isSameCall(call.Aux, "runtime.newobject")
    	=> mem
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  8. src/reflect/value.go

    }
    
    // valueMethodName returns the name of the exported calling method on Value.
    func valueMethodName() string {
    	var pc [5]uintptr
    	n := runtime.Callers(1, pc[:])
    	frames := runtime.CallersFrames(pc[:n])
    	var frame runtime.Frame
    	for more := true; more; {
    		const prefix = "reflect.Value."
    		frame, more = frames.Next()
    		name := frame.Function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods_test.go

    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	core "k8s.io/client-go/testing"
    	"k8s.io/client-go/tools/record"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/component-base/metrics/testutil"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/kubelet/pkg/cri/streaming/portforward"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    				skipLines--
    				continue
    			}
    
    			// Remove duplicate main symbol with runtime/cgo on AIX.
    			// With runtime/cgo, two main are available:
    			// One is generated by cgo tool with {return 0;}.
    			// The other one is the main calling runtime.rt0_go
    			// in runtime/cgo.
    			// The second can't be used by cgo programs because
    			// runtime.rt0_go is unknown to them.
    			// Therefore, we let ld remove this main version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top