Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,306 for RUNTIME (0.12 sec)

  1. src/internal/trace/testdata/testprog/futile-wakeup.go

    import (
    	"context"
    	"log"
    	"os"
    	"runtime"
    	"runtime/trace"
    	"sync"
    )
    
    func main() {
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatalf("failed to start tracing: %v", err)
    	}
    
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(8))
    	c0 := make(chan int, 1)
    	c1 := make(chan int, 1)
    	c2 := make(chan int, 1)
    	const procs = 2
    	var done sync.WaitGroup
    	done.Add(4 * procs)
    	for p := 0; p < procs; p++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core-platform/build.gradle.kts

    javaPlatform.allowDependencies()
    
    dependencies {
        runtime(project(":installation-beacon"))
        runtime(project(":api-metadata"))
        runtime(project(":daemon-server")) {
            because("This is the Gradle daemon implementation, which transitively depends on all other core projects.")
        }
        runtime(project(":gradle-cli-main")) {
            because("This is the entry point of the `gradle` command.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/DependencyClassPathProviderTest.groovy

                "gradle-worker-main-runtime",
                "gradle-launcher-runtime",
                "gradle-cli-runtime",
                "gradle-workers-runtime",
                "gradle-dependency-management-runtime",
                "gradle-plugin-use-runtime",
                "gradle-tooling-api-builders-runtime",
                "gradle-configuration-cache-runtime",
                "gradle-unit-test-fixtures-runtime",
                "plugin1-runtime",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/go/build/deps_test.go

    	# to cgoPackages in cmd/dist/test.go as well.
    	RUNTIME
    	< C
    	< runtime/cgo
    	< CGO
    	< runtime/msan, runtime/asan;
    
    	# runtime/race
    	NONE < runtime/race/internal/amd64v1;
    	NONE < runtime/race/internal/amd64v3;
    	CGO, runtime/race/internal/amd64v1, runtime/race/internal/amd64v3 < runtime/race;
    
    	# Bulk of the standard library must not use cgo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/AbstractMutableModuleComponentResolveMetadataTest.groovy

            artifacts1[0].name.extension == 'jar'
    
            def runtime = variantsForTraversal[1]
            runtime.name == 'runtime'
            runtime.asDescribable().displayName == 'group:module:version variant runtime'
            runtime.attributes == attributes2
            runtime.variants.size() == 1
    
            runtime.dependencies.size() == 2
    
            runtime.variants[0].asDescribable().displayName == "group:module:version variant runtime"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprog/coro.go

    }
    
    func iterLock(yield func(int) bool) {
    	for range 3 {
    		runtime.LockOSThread()
    		runtime.UnlockOSThread()
    
    		if !yield(5) {
    			return
    		}
    	}
    }
    
    func iterLockYield(yield func(int) bool) {
    	for range 3 {
    		runtime.LockOSThread()
    		ok := yield(5)
    		runtime.UnlockOSThread()
    		if !ok {
    			return
    		}
    	}
    }
    
    func iterYieldNewG(yield func(int) bool) {
    	for range 3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/registry.go

    		volumezone.Name:                      volumezone.New,
    		nodevolumelimits.CSIName:             runtime.FactoryAdapter(fts, nodevolumelimits.NewCSI),
    		nodevolumelimits.EBSName:             runtime.FactoryAdapter(fts, nodevolumelimits.NewEBS),
    		nodevolumelimits.GCEPDName:           runtime.FactoryAdapter(fts, nodevolumelimits.NewGCEPD),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top