Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 148 for prlimit (0.11 sec)

  1. src/cmd/pprof/pprof.go

    // (instead of invoking GNU binutils).
    type objTool struct {
    	mu          sync.Mutex
    	disasmCache map[string]*objfile.Disasm
    }
    
    func (*objTool) Open(name string, start, limit, offset uint64, relocationSymbol string) (driver.ObjFile, error) {
    	of, err := objfile.Open(name)
    	if err != nil {
    		return nil, err
    	}
    	f := &file{
    		name: name,
    		file: of,
    	}
    	if start != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r52/CppModelCrossVersionSpec.groovy

    import org.gradle.tooling.model.cpp.CppProject
    import org.gradle.tooling.model.cpp.CppSharedLibrary
    
    @TargetGradleVersion(">=5.2")
    @Requires(UnitTestPreconditions.NotMacOsM1) // TODO KM how to limit non-backwards compatible checks when aarch64 is not available on Gradle 7.5 and prior?
    class CppModelCrossVersionSpec extends ToolingApiSpecification {
        def toolchain = AvailableToolChains.defaultToolChain
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. src/runtime/metrics_test.go

    }
    
    func TestReadMetrics(t *testing.T) {
    	// Run a GC cycle to get some of the stats to be non-zero.
    	runtime.GC()
    
    	// Set an arbitrary memory limit to check the metric for it
    	limit := int64(512 * 1024 * 1024)
    	oldLimit := debug.SetMemoryLimit(limit)
    	defer debug.SetMemoryLimit(oldLimit)
    
    	// Set a GC percent to check the metric for it
    	gcPercent := 99
    	oldGCPercent := debug.SetGCPercent(gcPercent)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  4. CHANGELOG.md

        calls and that can receive data faster than they can process it. Previously, OkHttp limited
        HTTP/2 to 16 MiB of unacknowledged data per connection. With this fix there is a limit of 16 MiB
        of unacknowledged data per stream and no per-connection limit.
    
     *  Fix: Don't close a `Deflater` while we're still using it to compress a web socket message. We
        had a severe bug where web sockets were closed on the wrong thread, which caused
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. pkg/apis/batch/types.go

    	// Annotation indicating the number of failures for the index corresponding
    	// to the pod, which are counted towards the backoff limit.
    	JobIndexFailureCountAnnotation = labelPrefix + "job-index-failure-count"
    	// Annotation indicating the number of failures for the index corresponding
    	// to the pod, which don't count towards the backoff limit, according to the
    	// pod failure policy. When the annotation is absent zero is implied.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{24, "SIGQUIT", "quit"},
    	{25, "SIGTSTP", "stopped"},
    	{26, "SIGTRAP", "trace/breakpoint trap"},
    	{27, "SIGIOER", "I/O error"},
    	{28, "SIGWINCH", "window changed"},
    	{29, "SIGXCPU", "CPU time limit exceeded"},
    	{30, "SIGXFSZ", "file size limit exceeded"},
    	{31, "SIGVTALRM", "virtual timer expired"},
    	{32, "SIGPROF", "profiling timer expired"},
    	{33, "SIGDANGER", "danger"},
    	{34, "SIGTHSTOP", "stop thread"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  7. pkg/kubelet/util/manager/watch_based_manager.go

    		// - doing that wouldn't provide visible scalability/performance gain - we
    		//   already have it from here
    		// - doing that would require significant refactoring to reflector
    		// we limit ourselves to just quickly stop the reflector here.
    		if c.isImmutable(object) {
    			item.setImmutable()
    			if item.stop() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/staticpods.go

    func convertImageTagMetadataToSemver(tag string) string {
    	// Container registries do not support `+` characters in tag names. This prevents imagetags from
    	// correctly representing semantic versions which use the plus symbol to delimit build metadata.
    	// Kubernetes uses the convention of using an underscore in image registries to preserve
    	// build metadata information in imagetags.
    	return strings.Replace(tag, "_", "+", 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. src/runtime/crash_test.go

    	}
    }
    
    func TestStackOverflow(t *testing.T) {
    	output := runTestProg(t, "testprog", "StackOverflow")
    	want := []string{
    		"runtime: goroutine stack exceeds 1474560-byte limit\n",
    		"fatal error: stack overflow",
    		// information about the current SP and stack bounds
    		"runtime: sp=",
    		"stack=[",
    	}
    	if !strings.HasPrefix(output, want[0]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v1/types.go

    	// and will set the desired number of pods by using its Scale subresource.
    	ScaleTargetRef CrossVersionObjectReference `json:"scaleTargetRef" protobuf:"bytes,1,opt,name=scaleTargetRef"`
    	// minReplicas is the lower limit for the number of replicas to which the autoscaler
    	// can scale down.  It defaults to 1 pod.  minReplicas is allowed to be 0 if the
    	// alpha feature gate HPAScaleToZero is enabled and at least one Object or External
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top