Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 225 for RUNTIME (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    With the runtime API you can do just that:
    
    .Using runtime API with custom task type
    ====
    include::sample[dir="snippets/tasks/incrementalBuild-customTaskClass/kotlin",files="build.gradle.kts[tags=custom-class-runtime-api]"]
    include::sample[dir="snippets/tasks/incrementalBuild-customTaskClass/groovy",files="build.gradle[tags=custom-class-runtime-api]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			badKey := fmt.Sprintf("/pods/%s-bad/foo", tt.namespace)
    			badOut := &example.Pod{}
    			err = store.GuaranteedUpdate(ctx, badKey, badOut, true, nil, storage.SimpleUpdate(
    				func(runtime.Object) (runtime.Object, error) {
    					obj := basePod.DeepCopy()
    					obj.Namespace = fmt.Sprintf("%s-bad", tt.namespace)
    					return obj, nil
    				}), nil)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    // It is only for runtime functions, so ASCII A-Z is fine.
    func isExportedRuntime(name string) bool {
    	// Check and remove package qualifier.
    	n := len("runtime.")
    	if len(name) <= n || name[:n] != "runtime." {
    		return false
    	}
    	name = name[n:]
    	rcvr := ""
    
    	// Extract receiver type, if any.
    	// For example, runtime.(*Func).Entry
    	i := len(name) - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	Indexers *cache.Indexers
    
    	// NewFunc is a function that creates new empty object storing a object of type Type.
    	NewFunc func() runtime.Object
    
    	// NewList is a function that creates new empty object storing a list of
    	// objects of type Type.
    	NewListFunc func() runtime.Object
    
    	Codec runtime.Codec
    
    	Clock clock.WithTicker
    }
    
    type watchersMap map[int]*cacheWatcher
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    var internalpkg = []string{
    	"crypto/internal/boring",
    	"crypto/internal/boring/syso",
    	"crypto/x509",
    	"net",
    	"os/user",
    	"runtime/cgo",
    	"runtime/race",
    	"runtime/race/internal/amd64v1",
    	"runtime/race/internal/amd64v3",
    	"runtime/msan",
    	"runtime/asan",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    func (d *dummyStorage) Versioner() storage.Versioner { return nil }
    func (d *dummyStorage) Create(_ context.Context, _ string, _, _ runtime.Object, _ uint64) error {
    	return fmt.Errorf("unimplemented")
    }
    func (d *dummyStorage) Delete(_ context.Context, _ string, _ runtime.Object, _ *storage.Preconditions, _ storage.ValidateObjectFunc, _ runtime.Object) error {
    	return fmt.Errorf("unimplemented")
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  7. src/sync/atomic/atomic_test.go

    			}()
    		}
    		for p := 0; p < procs; p++ {
    			<-c
    		}
    	}
    }
    
    func TestStoreLoadSeqCst32(t *testing.T) {
    	if runtime.NumCPU() == 1 {
    		t.Skipf("Skipping test on %v processor machine", runtime.NumCPU())
    	}
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(4))
    	N := int32(1e3)
    	if testing.Short() {
    		N = int32(1e2)
    	}
    	c := make(chan bool, 2)
    	X := [2]int32{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/xcoff.go

    		return
    
    	case TextSym:
    		if ldr.SymPkg(x) != "" || strings.Contains(name, "-tramp") || strings.HasPrefix(name, "runtime.text.") {
    			// Function within a file
    			syms = xfile.writeSymbolFunc(ctxt, x)
    		} else {
    			// Only runtime.text and runtime.etext come through this way
    			if name != "runtime.text" && name != "runtime.etext" && name != "go:buildid" {
    				Exitf("putaixsym: unknown text symbol %s", name)
    			}
    			s := &XcoffSymEnt64{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    		}(w)
    	}
    
    	maxbg := maxbg
    	// for runtime.NumCPU() < 4 ||  runtime.GOMAXPROCS(0) == 1, do not change maxbg.
    	// Because there is not enough CPU to parallel the testing of multiple packages.
    	if runtime.NumCPU() > 4 && runtime.GOMAXPROCS(0) != 1 {
    		for _, w := range worklist {
    			// See go.dev/issue/65164
    			// because GOMAXPROCS=2 runtime CPU usage is low,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	kubetypes "k8s.io/apimachinery/pkg/types"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	remote "k8s.io/cri-client/pkg"
    	kubelettypes "k8s.io/kubelet/pkg/types"
    	"k8s.io/kubernetes/pkg/features"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top