Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for RUNTIME (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/reflect/all_test.go

    	timeout := time.After(5 * time.Second)
    	for atomic.LoadUint32(&finalized) == 0 {
    		select {
    		case <-timeout:
    			t.Fatal("finalizer did not run")
    		default:
    		}
    		runtime.Gosched()
    		runtime.GC()
    	}
    	runtime.KeepAlive(v)
    }
    
    func TestMakeFunc(t *testing.T) {
    	f := dummy
    	fv := MakeFunc(TypeOf(f), func(in []Value) []Value { return in })
    	ValueOf(&f).Elem().Set(fv)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  6. src/crypto/x509/verify_test.go

    		Intermediates: intermediates,
    	}); err != nil {
    		t.Error(err)
    	}
    	t.Logf("verification took %v", time.Since(start))
    }
    
    func TestSystemRootsError(t *testing.T) {
    	if runtime.GOOS == "windows" || runtime.GOOS == "darwin" || runtime.GOOS == "ios" {
    		t.Skip("Windows and darwin do not use (or support) systemRoots")
    	}
    
    	defer func(oldSystemRoots *CertPool) { systemRoots = oldSystemRoots }(systemRootsPool())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/callback.go

    // into Go.
    func testCallbackCallers(t *testing.T) {
    	if runtime.Compiler != "gc" {
    		// The exact function names are not going to be the same.
    		t.Skip("skipping for non-gc toolchain")
    	}
    	pc := make([]uintptr, 100)
    	n := 0
    	name := []string{
    		"runtime.cgocallbackg1",
    		"runtime.cgocallbackg",
    		"runtime.cgocallback",
    		"runtime.systemstack_switch",
    		"runtime.cgocall",
    		"test._Cfunc_callback",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    						t.Logf("expected kubernetes.io/os to match runtime.GOOS but got %v", val)
    						return false, nil
    					}
    					val, ok = savedNode.Labels[v1.LabelArchStable]
    					if !ok {
    						t.Logf("expected kubernetes.io/arch label to be present")
    						return false, nil
    					}
    					if val != goruntime.GOARCH {
    						t.Logf("expected kubernetes.io/arch to match runtime.GOARCH but got %v", val)
    						return false, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes/fake"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller_test.go

    			fakeClient.AddReactor("get", "daemonsets", func(action core.Action) (bool, runtime.Object, error) {
    				getCalled += 1
    				if getCalled <= tt.getErrorNum {
    					return true, nil, getError
    				}
    				return true, ds, nil
    			})
    			updateCalled := 0
    			fakeClient.AddReactor("update", "daemonsets", func(action core.Action) (bool, runtime.Object, error) {
    				updateCalled += 1
    				if updateCalled <= tt.updateErrorNum {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
Back to top