Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 5,601 for RUNTIME (0.14 sec)

  1. src/cmd/go/testdata/script/cgo_stale.txt

    go build -x .
    stderr '[/\\]cgo'$GOEXE'["]? .* -importpath runtime/cgo'
    ! stale runtime/cgo
    
    
    # After runtime/cgo has been rebuilt and cached, it should not be rebuilt again.
    
    go build -x .
    ! stderr '[/\\]cgo'$GOEXE'["]? .* -importpath runtime/cgo'
    ! stale runtime/cgo
    
    
    -- go.mod --
    module example.com/m
    
    go 1.17
    -- m.go --
    package m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 22:43:41 UTC 2022
    - 888 bytes
    - Viewed (0)
  2. test/gc2.go

    package main
    
    import (
    	"fmt"
    	"os"
    	"runtime"
    )
    
    func main() {
    	const N = 10000
    	st := new(runtime.MemStats)
    	memstats := new(runtime.MemStats)
    	runtime.ReadMemStats(st)
    	for i := 0; i < N; i++ {
    		c := make(chan int, 10)
    		_ = c
    		if i%100 == 0 {
    			for j := 0; j < 4; j++ {
    				runtime.GC()
    				runtime.Gosched()
    				runtime.GC()
    				runtime.Gosched()
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 977 bytes
    - Viewed (0)
  3. architecture/runtimes.md

    Not every module contributes to every runtime.
    
    The core-runtime module defines each runtime:
    
    - The target JVM for the runtime. Each runtime has its own JVM compatibility constraints.
    - Some base services that are available to code hosted by the runtime. This varies by runtime.
    - Additional constraints. For example, the CLI client runtimes limit the libraries that are available to the code in that runtime, for performance reasons. 
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/meta/help_test.go

    	Items []Foo
    }
    
    func (s *FooList) DeepCopyObject() runtime.Object { panic("unimplemented") }
    
    type SampleList struct {
    	metav1.TypeMeta
    	metav1.ListMeta
    	Items []Sample
    }
    
    func (s *SampleList) DeepCopyObject() runtime.Object { panic("unimplemented") }
    
    type RawExtensionList struct {
    	metav1.TypeMeta
    	metav1.ListMeta
    
    	Items []runtime.RawExtension
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 13:40:46 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/response_test.go

    	m.gvk = gvk
    }
    
    // CacheEncode implements runtime.CacheableObject interface.
    func (m *mockCacheableObject) CacheEncode(id runtime.Identifier, encode func(runtime.Object, io.Writer) error, w io.Writer) error {
    	return encode(m.obj.DeepCopyObject(), w)
    }
    
    // GetObject implements runtime.CacheableObject interface.
    func (m *mockCacheableObject) GetObject() runtime.Object {
    	return m.obj
    }
    
    type mockNamer struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 09:07:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec2InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                // Runtime.exec() overloads
                [fromString(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'})", "", "foobar"],
                [fromGroovyString(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'})", "", "foobar"],
                [fromStringArray(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'})", "", "foobar"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. src/runtime/crash_cgo_test.go

    	t.Parallel()
    	switch runtime.GOOS {
    	case "plan9", "windows":
    		t.Skipf("no pthreads on %s", runtime.GOOS)
    	}
    	if testing.Short() {
    		switch {
    		case runtime.GOOS == "dragonfly":
    			t.Skip("see golang.org/issue/11990")
    		case runtime.GOOS == "linux" && runtime.GOARCH == "arm":
    			t.Skip("too slow for arm builders")
    		case runtime.GOOS == "linux" && (runtime.GOARCH == "mips64" || runtime.GOARCH == "mips64le"):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  8. pkg/kubelet/server/stats/summary_test.go

    		Name:               "runtime",
    		StartTime:          cgroupStatsMap["/runtime"].cs.StartTime,
    		CPU:                cgroupStatsMap["/runtime"].cs.CPU,
    		Memory:             cgroupStatsMap["/runtime"].cs.Memory,
    		Accelerators:       cgroupStatsMap["/runtime"].cs.Accelerators,
    		UserDefinedMetrics: cgroupStatsMap["/runtime"].cs.UserDefinedMetrics,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. pkg/scheduler/testing/framework/framework_helpers.go

    func NewFramework(ctx context.Context, fns []RegisterPluginFunc, profileName string, opts ...runtime.Option) (framework.Framework, error) {
    	registry := runtime.Registry{}
    	profile := &schedulerapi.KubeSchedulerProfile{
    		SchedulerName: profileName,
    		Plugins:       &schedulerapi.Plugins{},
    	}
    	for _, f := range fns {
    		f(&registry, profile)
    	}
    	return runtime.NewFramework(ctx, registry, profile, opts...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/goflags.txt

    ! go list runtime
    stderr '^go: parsing \$GOFLAGS: non-flag "-"'
    
    env GOFLAGS=--
    ! go list runtime
    stderr '^go: parsing \$GOFLAGS: non-flag "--"'
    
    env GOFLAGS=---oops
    ! go list runtime
    stderr '^go: parsing \$GOFLAGS: non-flag "---oops"'
    
    env GOFLAGS=-=noname
    ! go list runtime
    stderr '^go: parsing \$GOFLAGS: non-flag "-=noname"'
    
    env GOFLAGS=-f
    ! go list runtime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:47:27 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top