Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 237 for RUNTIME (0.19 sec)

  1. pkg/controller/statefulset/stateful_set_utils_test.go

    type noopRecorder struct{}
    
    func (r *noopRecorder) Event(object runtime.Object, eventtype, reason, message string) {}
    func (r *noopRecorder) Eventf(object runtime.Object, eventtype, reason, messageFmt string, args ...interface{}) {
    }
    func (r *noopRecorder) AnnotatedEventf(object runtime.Object, annotations map[string]string, eventtype, reason, messageFmt string, args ...interface{}) {
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  2. src/runtime/mgcpacer.go

    // Copyright 2021 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/cpu"
    	"internal/goexperiment"
    	"internal/runtime/atomic"
    	_ "unsafe" // for go:linkname
    )
    
    const (
    	// gcGoalUtilization is the goal CPU utilization for
    	// marking as a fraction of GOMAXPROCS.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    		return nil, nil, nil, err
    	}
    
    	pmain.Dir = testDir
    	pmain.Internal.OmitDebug = !testC && !testNeedBinary()
    	if pmain.ImportPath == "runtime.test" {
    		// The runtime package needs a symbolized binary for its tests.
    		// See runtime/unsafepoint_test.go.
    		pmain.Internal.OmitDebug = false
    	}
    
    	if !cfg.BuildN {
    		// writeTestmain writes _testmain.go,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    				// Allow calls to panic*
    				s := v.Aux.(*AuxCall).Fn.String()
    				switch s {
    				case "runtime.racefuncenter", "runtime.racefuncexit",
    					"runtime.panicdivide", "runtime.panicwrap",
    					"runtime.panicshift":
    					continue
    				}
    				// If we encountered any call, we need to keep racefunc*,
    				// for accurate stacktraces.
    				return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. src/go/build/build.go

    func defaultGOPATH() string {
    	env := "HOME"
    	if runtime.GOOS == "windows" {
    		env = "USERPROFILE"
    	} else if runtime.GOOS == "plan9" {
    		env = "home"
    	}
    	if home := os.Getenv(env); home != "" {
    		def := filepath.Join(home, "go")
    		if filepath.Clean(def) == filepath.Clean(runtime.GOROOT()) {
    			// Don't set the default GOPATH to GOROOT,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_mounter_test.go

    	"fmt"
    	"math/rand"
    	"os"
    	"path/filepath"
    	"reflect"
    	goruntime "runtime"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/stretchr/testify/assert"
    	authenticationv1 "k8s.io/api/authentication/v1"
    	corev1 "k8s.io/api/core/v1"
    	storage "k8s.io/api/storage/v1"
    	meta "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    All you need to do in most cases is configure the appropriate compilation and runtime dependencies and add any necessary configuration to the `test` task. The following example shows a simple setup that uses JUnit Platform and changes the maximum heap size for the tests' JVM to 1 gigabyte:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	fakeClient := &fake.Clientset{}
    	fakeClient.AddReactor("get", "persistentvolumeclaims", func(action core.Action) (bool, runtime.Object, error) {
    		return false, nil, nil
    	})
    	fakeClient.AddReactor("get", "persistentvolumes", func(action core.Action) (bool, runtime.Object, error) {
    		return false, nil, nil
    	})
    	dswp.kubeClient = fakeClient
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    					"FakeFilter",
    					func(_ context.Context, _ runtime.Object, fh framework.Handle) (framework.Plugin, error) {
    						return &fakePlugin, nil
    					},
    				)},
    				tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New),
    				tf.RegisterBindPlugin(defaultbinder.Name, defaultbinder.New),
    			)
    			registeredPlugins = append(registeredPlugins, tt.registerPlugins...)
    			var objs []runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

    syntax = "proto2";
    
    package k8s.io.api.admissionregistration.v1;
    
    import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/admissionregistration/v1";
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top