Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,439 for RUNTIME (0.1 sec)

  1. src/runtime/os_windows.go

    //go:cgo_import_dynamic runtime._CloseHandle CloseHandle%1 "kernel32.dll"
    //go:cgo_import_dynamic runtime._CreateEventA CreateEventA%4 "kernel32.dll"
    //go:cgo_import_dynamic runtime._CreateIoCompletionPort CreateIoCompletionPort%4 "kernel32.dll"
    //go:cgo_import_dynamic runtime._CreateThread CreateThread%6 "kernel32.dll"
    //go:cgo_import_dynamic runtime._CreateWaitableTimerA CreateWaitableTimerA%3 "kernel32.dll"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    	createNewObject(requestContext context.Context) (runtime.Object, error)
    }
    
    type jsonPatcher struct {
    	*patcher
    
    	fieldManager *managedfields.FieldManager
    }
    
    func (p *jsonPatcher) applyPatchToCurrentObject(requestContext context.Context, currentObject runtime.Object) (runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. src/runtime/gc_test.go

    func TestUserForcedGC(t *testing.T) {
    	// Test that runtime.GC() triggers a GC even if GOGC=off.
    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    
    	var ms1, ms2 runtime.MemStats
    	runtime.ReadMemStats(&ms1)
    	runtime.GC()
    	runtime.ReadMemStats(&ms2)
    	if ms1.NumGC == ms2.NumGC {
    		t.Fatalf("runtime.GC() did not trigger GC")
    	}
    	if ms1.NumForcedGC == ms2.NumForcedGC {
    		t.Fatalf("runtime.GC() was not accounted in NumForcedGC")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMutableIvyModuleResolveMetadataTest.groovy

            immutable.excludes.empty
            immutable.configurationNames == ["runtime", "default"] as Set
            def runtime = immutable.getConfiguration("runtime")
            runtime.artifacts.name.name == ["runtime.jar"]
            runtime.excludes.empty
            def defaultConfig = immutable.getConfiguration("default")
            defaultConfig.hierarchy as List == ["default", "runtime"]
            defaultConfig.transitive
            defaultConfig.visible
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/testprog/gomaxprocs.go

    //go:build ignore
    
    package main
    
    import (
    	"log"
    	"os"
    	"runtime"
    	"runtime/trace"
    	"time"
    )
    
    func main() {
    	// Start a goroutine that calls runtime.GC to try and
    	// introduce some interesting events in between the
    	// GOMAXPROCS calls.
    	go func() {
    		for {
    			runtime.GC()
    			time.Sleep(1 * time.Millisecond)
    		}
    	}()
    
    	// Start tracing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 967 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor.go

    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes"
    	"k8s.io/apimachinery/pkg/runtime/serializer/recognizer"
    	util "k8s.io/apimachinery/pkg/util/runtime"
    
    	"github.com/fxamacker/cbor/v2"
    )
    
    type metaFactory interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/project/ProjectClasspathTestType.java

            // check all transitive deps of a runtime dependency are runtime scope, except for test
            checkGroupIdScope(project, "runtime", "maven-test-runtime");
            artifact = getArtifact(project, "maven-test-runtime", "scope-runtime");
            assertEquals("runtime", artifact.getScope(), "Check scope");
    
            // check all transitive deps of a compile dependency are compile scope, except for runtime and test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. src/runtime/metrics_test.go

    			name: "runtime.GoroutineProfile",
    			fn: func(t *testing.T) {
    				var s [1]runtime.StackRecord
    				runtime.GoroutineProfile(s[:])
    			},
    		},
    		{
    			name: "runtime.ReadMemStats",
    			fn: func(t *testing.T) {
    				var mstats runtime.MemStats
    				runtime.ReadMemStats(&mstats)
    			},
    		},
    		{
    			name: "runtime.Stack",
    			fn: func(t *testing.T) {
    				var b [64]byte
    				runtime.Stack(b[:], true)
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  9. src/internal/testenv/testenv.go

    	if !platform.BuildModeSupported(runtime.Compiler, buildmode, runtime.GOOS, runtime.GOARCH) {
    		t.Skipf("skipping test: build mode %s on %s/%s is not supported by the %s compiler", buildmode, runtime.GOOS, runtime.GOARCH, runtime.Compiler)
    	}
    }
    
    // HasSymlink reports whether the current system can use os.Symlink.
    func HasSymlink() bool {
    	ok, _ := hasSymlink()
    	return ok
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInJavaIntegrationTest.groovy

            // Runtime.exec() overloads
            fromString()      | "Runtime.getRuntime().exec(command)"                                                              | ""                | ""
            fromStringArray() | "Runtime.getRuntime().exec(command)"                                                              | ""                | ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top