Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 527 for frame_0 (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/response.go

    	encoder         runtime.Encoder
    	framer          io.Writer
    
    	buffer      runtime.Splice
    	eventBuffer runtime.Splice
    
    	currentEmbeddedIdentifier runtime.Identifier
    	identifiers               map[watch.EventType]runtime.Identifier
    }
    
    func newWatchEncoder(ctx context.Context, kind schema.GroupVersionKind, embeddedEncoder runtime.Encoder, encoder runtime.Encoder, framer io.Writer) *watchEncoder {
    	return &watchEncoder{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 09:07:03 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  2. src/internal/trace/parser.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package trace
    
    // Frame is a frame in stack traces.
    type Frame struct {
    	PC   uint64
    	Fn   string
    	File string
    	Line int
    }
    
    const (
    	// Special P identifiers:
    	FakeP    = 1000000 + iota
    	TimerP   // depicts timer unblocks
    	NetpollP // depicts network unblocks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:31:04 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. test/fixedbugs/bug347.go

    			if !ok {
    				print("BUG: bug347: cannot find caller\n")
    				return
    			}
    			if !strings.Contains(file, "bug347.go") || runtime.FuncForPC(pc).Name() != "main.f" {
    				// walk past runtime frames
    				continue
    			}
    			if line != 22 {
    				print("BUG: bug347: panic at ", file, ":", line, " in ", runtime.FuncForPC(pc).Name(), "\n")
    			}
    			return
    		}
    	}()
    	f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 817 bytes
    - Viewed (0)
  4. test/stackobj2.go

    			// Make sure x.data hasn't been collected.
    			if got := *x.data; got != i {
    				panic(fmt.Sprintf("bad data want %d, got %d", i, got))
    			}
    		}
    		return
    	}
    	// Put 2 objects in each frame, to test intra-frame pointers.
    	// Use both orderings to ensure the linked list isn't always in address order.
    	var a, b T
    	if n%3 == 0 {
    		a.data = newInt(n)
    		a.next = x
    		a.next2 = x
    		b.data = newInt(n - 1)
    		b.next = &a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 19:54:29 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  5. src/internal/trace/raw/reader.go

    	if err != nil {
    		return Event{}, err
    	}
    	if spec.IsStack {
    		len := int(args[1])
    		for i := 0; i < len; i++ {
    			// Each stack frame has four args: pc, func ID, file ID, line number.
    			frame, err := r.readArgs(4)
    			if err != nil {
    				return Event{}, err
    			}
    			args = append(args, frame...)
    		}
    	}
    	var data []byte
    	if spec.HasData {
    		data, err = r.readData()
    		if err != nil {
    			return Event{}, err
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. test/fixedbugs/bug348.go

    			if !ok {
    				print("BUG: bug348: cannot find caller\n")
    				return
    			}
    			if !strings.Contains(file, "bug348.go") || runtime.FuncForPC(pc).Name() != "main.f" {
    				// walk past runtime frames
    				continue
    			}
    			if line != 17 {
    				print("BUG: bug348: panic at ", file, ":", line, " in ", runtime.FuncForPC(pc).Name(), "\n")
    				return
    			}
    			recover()
    			return
    		}
    	}()
    	f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 800 bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/CompositeStackTraceClassifier.java

            this.classifiers = ImmutableList.copyOf(classifiers);
        }
    
        @Nullable
        @Override
        public StackTraceRelevance classify(StackTraceElement frame) {
            for (StackTraceClassifier classifier : classifiers) {
                StackTraceRelevance relevance = classifier.classify(frame);
                if (relevance != null) {
                    return relevance;
                }
            }
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:15:36 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. src/runtime/sys_windows_arm64.s

    	// Save callback register arguments R0-R7.
    	// We do this at the top of the frame so they're contiguous with stack arguments.
    	// The 7*8 setting up R14 looks like a bug but is not: the eighth word
    	// is the space the assembler reserved for our caller's frame pointer,
    	// but we are not called from Go so that space is ours to use,
    	// and we must to be contiguous with the stack arguments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    	conn.resetTimeout()
    	switch conn.codec {
    	case rawCodec:
    		frame := make([]byte, len(data)+1)
    		frame[0] = num
    		copy(frame[1:], data)
    		if err := websocket.Message.Send(conn.ws, frame); err != nil {
    			return 0, err
    		}
    	case base64Codec:
    		frame := string('0'+num) + base64.StdEncoding.EncodeToString(data)
    		if err := websocket.Message.Send(conn.ws, frame); err != nil {
    			return 0, err
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. src/cmd/internal/objabi/stack.go

    }
    
    // stackGuardMultiplier returns a multiplier to apply to the default
    // stack guard size. Larger multipliers are used for non-optimized
    // builds that have larger stack frames or for specific targets.
    func stackGuardMultiplier(race bool) int {
    	// This arithmetic must match that in runtime/internal/sys/consts.go:StackGuardMultiplier.
    	n := 1
    	// On AIX, a larger stack is needed for syscalls.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:56 UTC 2023
    - 904 bytes
    - Viewed (0)
Back to top