Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 223 for frameset (0.15 sec)

  1. src/runtime/testdata/testprog/badtraceback.go

    	runtime.GC()
    
    	// Run badLR1 on its own stack to minimize the stack size and
    	// exercise the stack bounds logic in the hex dump.
    	go badLR1()
    	select {}
    }
    
    //go:noinline
    func badLR1() {
    	// We need two frames on LR machines because we'll smash this
    	// frame's saved LR.
    	badLR2(0)
    }
    
    //go:noinline
    func badLR2(arg int) {
    	// Smash the return PC or saved LR.
    	lrOff := unsafe.Sizeof(uintptr(0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 23:02:28 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  2. platforms/ide/problems-api/src/main/java/org/gradle/internal/problems/failure/StackTraceRelevance.java

     */
    public enum StackTraceRelevance {
        /**
         * Anything that cannot be classified as internal is considered user code.
         */
        USER_CODE,
    
        /**
         * Frames originating from JDK, Groovy or Gradle runtime calls.
         */
        INTERNAL,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:45:41 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. src/runtime/stack_test.go

    func TestStackWrapperCallers(t *testing.T) {
    	var d structWithMethod
    	wrapper := (*structWithMethod).callers
    	// Check that <autogenerated> doesn't appear in the stack trace.
    	pcs := wrapper(&d)
    	frames := CallersFrames(pcs)
    	for {
    		fr, more := frames.Next()
    		if fr.File == "<autogenerated>" {
    			t.Fatalf("<autogenerated> appears in stack trace: %+v", fr)
    		}
    		if !more {
    			break
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.css

      position: absolute;
      overflow: hidden;
      box-sizing: border-box;
      background: #d8d8d8;
    }
    .positive { position: absolute; background: #caa; }
    .negative { position: absolute; background: #aca; }
    /* Not-inlined frames are visually separated from their caller. */
    .not-inlined {
      border-top: 1px solid black;
    }
    /* Function name */
    .boxtext {
      position: absolute;
      width: 100%;
      padding-left: 2px;
      line-height: 18px;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/ws/WebSocketReaderTest.kt

          assertThat(expected.message)
            .isEqualTo("Client-sent frames must be masked.")
        }
      }
    
      @Test fun serverSentFramesMustNotBeMasked() {
        data.write("8180".decodeHex())
        assertFailsWith<ProtocolException> {
          clientReader.processNextFrame()
        }.also { expected ->
          assertThat(expected.message)
            .isEqualTo("Server-sent frames must not be masked.")
        }
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

        close(ErrorCode.PROTOCOL_ERROR, ErrorCode.PROTOCOL_ERROR, e)
      }
    
      /**
       * Sends any initial frames and starts reading frames from the remote peer. This should be called
       * after [Builder.build] for all new connections.
       *
       * @param sendConnectionPreface true to send connection preface frames. This should always be true
       *     except for in tests that don't check for a connection preface.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/proxy/doc.go

    // the output streams of a WebSocket connection (e.g. STDIN, STDOUT,
    // STDERR, TTY resize, and error streams) to the input streams of a
    // SPDY connection.
    //
    // The stream tunnel proxy tunnels SPDY frames through a WebSocket
    // connection, and it is used for the PortForward subprotocol (e.g.
    // kubectl port-forward). This proxy implements tunneling by transparently
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 17:56:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. src/internal/trace/event.go

    //
    // If two Stacks are equal then their Frames are guaranteed to be identical. If they are not
    // equal, however, their Frames may still be equal.
    type Stack struct {
    	table *evTable
    	id    stackID
    }
    
    // Frames is an iterator over the frames in a Stack.
    func (s Stack) Frames(yield func(f StackFrame) bool) bool {
    	if s.id == 0 {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  9. src/cmd/trace/pprof.go

    // pprofMaxStack is the extent of the deduplication we're willing to do.
    //
    // Because slices aren't comparable and we want to leverage maps for deduplication,
    // we have to choose a fixed constant upper bound on the amount of frames we want
    // to support. In practice this is fine because there's a maximum depth to these
    // stacks anyway.
    const pprofMaxStack = 128
    
    // stackMap is a map of trace.Stack to some value V.
    type stackMap struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/profile/prune.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Implements methods to remove frames from profiles.
    
    package profile
    
    import (
    	"fmt"
    	"regexp"
    	"strings"
    )
    
    var (
    	reservedNames = []string{"(anonymous namespace)", "operator()"}
    	bracketRx     = func() *regexp.Regexp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
Back to top