Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 6,673 for Runtimes (0.29 sec)

  1. src/runtime/gcinfo_test.go

    		verifyGCInfo(t, "heap eface", runtime.Escape(new(any)), trimDead(infoEface))
    		verifyGCInfo(t, "heap iface", runtime.Escape(new(Iface)), trimDead(infoIface))
    	}
    }
    
    func verifyGCInfo(t *testing.T, name string, p any, mask0 []byte) {
    	mask := runtime.GCMask(p)
    	if bytes.HasPrefix(mask, mask0) {
    		// Just the prefix matching is OK.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:58:08 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. src/net/fd_unix.go

    			return nil, err
    		}
    		runtime.KeepAlive(fd)
    		return nil, nil
    	case syscall.EINVAL:
    		// On Solaris and illumos we can see EINVAL if the socket has
    		// already been accepted and closed by the server.  Treat this
    		// as a successful connection--writes to the socket will see
    		// EOF.  For details and a test case in C see
    		// https://golang.org/issue/6828.
    		if runtime.GOOS == "solaris" || runtime.GOOS == "illumos" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 20:19:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.13.md

    * If a pod has a running instance, the stats of its previously terminated instances will not show up in the kubelet summary stats any more for CRI runtimes like containerd and cri-o. ([#77426](https://github.com/kubernetes/kubernetes/pull/77426), [@Random-Liu](https://github.com/Random-Liu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		return string(buffer[:zb]), nil
    	}
    	// __errno()
    	errno := int(*(*int32)(unsafe.Pointer(runtime.CallLeFuncByPtr(runtime.XplinkLibvec+SYS___ERRNO<<4,
    		[]uintptr{}))))
    	// __errno2()
    	errno2 := int(runtime.CallLeFuncByPtr(runtime.XplinkLibvec+SYS___ERRNO2<<4,
    		[]uintptr{}))
    	// strerror_r()
    	ret = runtime.CallLeFuncByPtr(runtime.XplinkLibvec+SYS_STRERROR_R<<4,
    		[]uintptr{uintptr(errno), uintptr(unsafe.Pointer(&buffer[0])), 1024})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/feature_variants.adoc

    A Java library, for example, exposes two variants (API and runtime) which provide the _same capability_.
    As a consequence, it is an error to have both the _API_ and _runtime_ of a single component in a dependency graph.
    
    However, imagine that you need the _runtime_ and the _test fixtures runtime_ of a component.
    Then it is allowed as long as the _runtime_ and _test fixtures runtime_ variant of the library declare different capabilities.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. src/runtime/debug/garbage.go

    // C code, and memory mapped by syscall.Mmap (because it is not
    // managed by the Go runtime).
    //
    // More specifically, the following expression accurately reflects
    // the value the runtime attempts to maintain as the limit:
    //
    //	runtime.MemStats.Sys - runtime.MemStats.HeapReleased
    //
    // or in terms of the runtime/metrics package:
    //
    //	/memory/classes/total:bytes - /memory/classes/heap/released:bytes
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/integtests/resolve/consistency/JavaProjectResolutionConsistencyIntegrationTest.groovy

            }
        }
    
        ResolveTestFixture resolveClasspath(String name) {
            def resolve = new ResolveTestFixture(buildFile, "${name}Classpath")
            resolve.expectDefaultConfiguration((name =~ "[rR]untime") ? "runtime" : "compile")
            resolve.prepare()
            resolve
        }
    
        @ToBeFixedForConfigurationCache(because = "resolves configuration at execution time")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  8. src/runtime/metrics/description.go

    			"value is set by the GOGC environment variable, and the runtime/debug.SetGCPercent " +
    			"function.",
    		Kind: KindUint64,
    	},
    	{
    		Name: "/gc/gomemlimit:bytes",
    		Description: "Go runtime memory limit configured by the user, otherwise " +
    			"math.MaxInt64. This value is set by the GOMEMLIMIT environment variable, and " +
    			"the runtime/debug.SetMemoryLimit function.",
    		Kind: KindUint64,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. src/runtime/metrics/doc.go

    /*
    Package metrics provides a stable interface to access implementation-defined
    metrics exported by the Go runtime. This package is similar to existing functions
    like [runtime.ReadMemStats] and [runtime/debug.ReadGCStats], but significantly more general.
    
    The set of metrics defined by this package may evolve as the runtime itself
    evolves, and also enables variation across Go implementations, whose relevant
    metric sets may not intersect.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. src/internal/godebug/godebug.go

    //go:linkname setUpdate
    func setUpdate(update func(string, string))
    
    // registerMetric is provided by package runtime.
    // It forwards registrations to runtime/metrics.
    //
    //go:linkname registerMetric
    func registerMetric(name string, read func() uint64)
    
    // setNewIncNonDefault is provided by package runtime.
    // The runtime can do
    //
    //	inc := newNonDefaultInc(name)
    //
    // instead of
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top