Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 5,601 for RUNTIME (0.11 sec)

  1. src/cmd/link/internal/ld/ld_test.go

    package main
    import "runtime"
    var f = runtime.MemProfile
    func main() {
    	if f == nil {
    		panic("no f")
    	}
    	println(runtime.MemProfileRate)
    }
    `,
    			"524288",
    		},
    		{
    			"with_memprofile_runtime_pprof",
    			`
    package main
    import "runtime"
    import "runtime/pprof"
    func main() {
            _ = pprof.Profiles()
    	println(runtime.MemProfileRate)
    }
    `,
    			"524288",
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 05:45:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. src/net/fd_posix.go

    }
    
    func (fd *netFD) setAddr(laddr, raddr Addr) {
    	fd.laddr = laddr
    	fd.raddr = raddr
    	runtime.SetFinalizer(fd, (*netFD).Close)
    }
    
    func (fd *netFD) Close() error {
    	runtime.SetFinalizer(fd, nil)
    	return fd.pfd.Close()
    }
    
    func (fd *netFD) shutdown(how int) error {
    	err := fd.pfd.Shutdown(how)
    	runtime.KeepAlive(fd)
    	return wrapSyscallError("shutdown", err)
    }
    
    func (fd *netFD) closeRead() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/module.cc

    // Register all available concrete functions from a SavedModel into a runtime.
    tensorflow::Status RegisterConcreteFunctions(Runtime runtime,
                                                 TFPackage tf_package) {
      return tensorflow::errors::Unimplemented("Not implemented.");
    }
    
    // Initialize any variables found in the SavedModel and attach them to the
    // appropriate object representation in the runtime.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 02 20:02:30 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  4. src/runtime/debug/heapdump_test.go

    // license that can be found in the LICENSE file.
    
    package debug_test
    
    import (
    	"os"
    	"runtime"
    	. "runtime/debug"
    	"testing"
    )
    
    func TestWriteHeapDumpNonempty(t *testing.T) {
    	if runtime.GOOS == "js" {
    		t.Skipf("WriteHeapDump is not available on %s.", runtime.GOOS)
    	}
    	f, err := os.CreateTemp("", "heapdumptest")
    	if err != nil {
    		t.Fatalf("TempFile failed: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 12 00:32:29 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features-external/tests/runtimeClasspath.out

    org.mongodb:bson:3.9.1
      Variant runtime:
        | Attribute Name                 | Provided     | Requested    |
        |--------------------------------|--------------|--------------|
        | org.gradle.status              | release      |              |
        | org.gradle.category            | library      | library      |
        | org.gradle.libraryelements     | jar          | jar          |
        | org.gradle.usage               | java-runtime | java-runtime |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. api/go1.17.txt

    pkg runtime/cgo (freebsd-arm64-cgo), method (Handle) Delete()
    pkg runtime/cgo (freebsd-arm64-cgo), method (Handle) Value() interface{}
    pkg runtime/cgo (freebsd-arm64-cgo), type Handle uintptr
    pkg runtime/cgo (linux-386-cgo), func NewHandle(interface{}) Handle
    pkg runtime/cgo (linux-386-cgo), method (Handle) Delete()
    pkg runtime/cgo (linux-386-cgo), method (Handle) Value() interface{}
    pkg runtime/cgo (linux-386-cgo), type Handle uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 18K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/features/FeaturesResolveIntegrationTest.groovy

                    variant('runtime') {}
                    variant('feature1') {
                        capability('org', 'feature-1', '1.0')
                        attribute('org.gradle.usage', 'java-runtime')
                        artifact('feat1')
                    }
                    variant('feature2') {
                        capability('org', 'feature-2', '1.0')
                        attribute('org.gradle.usage', 'java-runtime')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 20:29:39 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. src/internal/coverage/pkid.go

    	"internal/goarch",
    	"internal/runtime/atomic",
    	"internal/goos",
    	"internal/chacha8rand",
    	"runtime/internal/sys",
    	"internal/abi",
    	"runtime/internal/math",
    	"internal/bytealg",
    	"internal/goexperiment",
    	"internal/runtime/syscall",
    	"runtime",
    }
    
    // Scoping note: the constants and apis in this file are internal
    // only, not expected to ever be exposed outside of the runtime (unlike
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. test/codegen/maps.go

    	// amd64:`.*runtime\.mapclear`
    	// amd64:-`.*runtime\.mapiterinit`
    	for k := range m {
    		delete(m, k)
    	}
    }
    
    func MapClearNotReflexive(m map[float64]int) {
    	// amd64:`.*runtime\.mapiterinit`
    	// amd64:-`.*runtime\.mapclear`
    	for k := range m {
    		delete(m, k)
    	}
    }
    
    func MapClearInterface(m map[interface{}]int) {
    	// amd64:`.*runtime\.mapiterinit`
    	// amd64:-`.*runtime\.mapclear`
    	for k := range m {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 23 15:51:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/runtime/testdata/testprog/gc.go

    }
    
    func GCSys() {
    	runtime.GOMAXPROCS(1)
    	memstats := new(runtime.MemStats)
    	runtime.GC()
    	runtime.ReadMemStats(memstats)
    	sys := memstats.Sys
    
    	runtime.MemProfileRate = 0 // disable profiler
    
    	itercount := 100000
    	for i := 0; i < itercount; i++ {
    		workthegc()
    	}
    
    	// Should only be using a few MB.
    	// We allocated 100 MB or (if not short) 1 GB.
    	runtime.ReadMemStats(memstats)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
Back to top