Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 223 for frameset (0.3 sec)

  1. src/runtime/panic.go

    	//
    	// These throws do not include runtime frames, system goroutines, or
    	// frame metadata.
    	throwTypeUser
    
    	// throwTypeRuntime is a throw due to a problem with Go itself.
    	//
    	// These throws include as much information as possible to aid in
    	// debugging the runtime, including runtime frames, system goroutines,
    	// and frame metadata.
    	throwTypeRuntime
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  2. src/runtime/runtime-gdb_test.go

    	}
    	for i, l := range lines {
    		if !strings.HasPrefix(l, fmt.Sprintf("#%v  ", i)) {
    			t.Fatalf("malformed backtrace at line %v: %v", i, l)
    		}
    	}
    	// TODO(mundaym): check for unknown frames (e.g. "??").
    }
    
    // NOTE: the maps below are allocated larger than abi.MapBucketCount
    // to ensure that they are not "optimized out".
    
    var helloSource = `
    import "fmt"
    import "runtime"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. src/image/gif/writer.go

    		e.globalCT, err = encodeColorTable(e.globalColorTable[:], p, paddedSize)
    		if err != nil && e.err == nil {
    			e.err = err
    			return
    		}
    		e.write(e.globalColorTable[:e.globalCT])
    	} else {
    		// All frames have a local color table, so a global color table
    		// is not needed.
    		e.buf[0] = 0x00
    		e.buf[1] = 0x00 // Background Color Index.
    		e.buf[2] = 0x00 // Pixel Aspect Ratio.
    		e.write(e.buf[:3])
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. src/log/slog/value.go

    func stack(skip, nFrames int) string {
    	pcs := make([]uintptr, nFrames+1)
    	n := runtime.Callers(skip+1, pcs)
    	if n == 0 {
    		return "(no stack)"
    	}
    	frames := runtime.CallersFrames(pcs[:n])
    	var b strings.Builder
    	i := 0
    	for {
    		frame, more := frames.Next()
    		fmt.Fprintf(&b, "called from %s (%s:%d)\n", frame.Function, frame.File, frame.Line)
    		if !more {
    			break
    		}
    		i++
    		if i >= nFrames {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/cache/DefaultCacheConfigurations.java

                if (removeUnusedEntriesAfterDays < 1) {
                    throw new IllegalArgumentException(name + " cannot be set to retain entries for " + removeUnusedEntriesAfterDays + " days.  For time frames shorter than one day, use the 'removeUnusedEntriesOlderThan' property.");
                }
                getRemoveUnusedEntriesOlderThan().set(providerFromSupplier(daysAgo(removeUnusedEntriesAfterDays)));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. src/runtime/debugcall.go

    		mp.lockedExt = 0
    
    		mp.lockedg.set(newg)
    		newg.lockedm.set(mp)
    		gp.lockedm = 0
    
    		// Mark the calling goroutine as being at an async
    		// safe-point, since it has a few conservative frames
    		// at the bottom of the stack. This also prevents
    		// stack shrinks.
    		gp.asyncSafePoint = true
    
    		// Stash newg away so we can execute it below (mcall's
    		// closure can't capture anything).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/deadness_analysis.cc

    // frame is being processed, nodes in the downstream frames have not yet been
    // processed.  This property is important because we need to process an entire
    // frame to know whether the optimistic mode converges or not.  In other words,
    // nodes in the downstream frames shall not be populated until all of its
    // upstream frames are populated.  In effect, this order enables processing each
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecationHandlingIntegrationTest.groovy

            output.contains(documentationRegistry.getDocumentationRecommendationFor("on this", "command_line_interface", "sec:command_line_warnings")) == warningsSummary
    
            and: "system stack frames are filtered"
            !output.contains('jdk.internal.')
            !output.contains('sun.') || output.contains('sun.run')
            !output.contains('org.codehaus.groovy.')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:16:32 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    // and returns this as the name of a counter.
    func telemetryCounterName(crash []byte) (string, error) {
    	pcs, err := parseStackPCs(string(crash))
    	if err != nil {
    		return "", err
    	}
    
    	// Limit the number of frames we request.
    	pcs = pcs[:min(len(pcs), 16)]
    
    	if len(pcs) == 0 {
    		// This can occur if all goroutines are idle, as when
    		// caught in a deadlock, or killed by an async signal
    		// while blocked.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/runtime/vlop_arm.s

    	// It could be that the saved registers Rq, Rr, Rs, and Rm
    	// contain pointers. However, the only way this can matter
    	// is if the stack grows (which it can't, udiv is nosplit)
    	// or if a fault happens and more frames are added to
    	// the stack due to deferred functions.
    	// In the latter case, the stack can grow arbitrarily,
    	// and garbage collection can happen, and those
    	// operations care about pointers, but in that case
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 7.1K bytes
    - Viewed (0)
Back to top