Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 120 for pushHead (0.12 sec)

  1. src/cmd/compile/internal/types2/decl.go

    	// ones. White and grey objects may depend on white and black objects.
    	// A dependency on a grey object indicates a cycle which may or may not be
    	// valid.
    	//
    	// When objects turn grey, they are pushed on the object path (a stack);
    	// they are popped again when they turn black. Thus, if a grey object (a
    	// cycle) is encountered, it is on the object path, and all the objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  2. src/runtime/asm_riscv64.s

    	// runtime.cgocallbackg leaves SP unchanged upon return.
    	// To save m->curg->sched.pc, we push it onto the curg stack and
    	// open a frame the same size as cgocallback's g0 frame.
    	// Once we switch to the curg stack, the pushed PC will appear
    	// to be the return PC of cgocallback, so that the traceback
    	// will seamlessly trace back into the earlier calls.
    	MOV	m_curg(X5), g
    	CALL	runtime·save_g(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  3. src/runtime/asm_s390x.s

    	// runtime.cgocallbackg leaves SP unchanged upon return.
    	// To save m->curg->sched.pc, we push it onto the curg stack and
    	// open a frame the same size as cgocallback's g0 frame.
    	// Once we switch to the curg stack, the pushed PC will appear
    	// to be the return PC of cgocallback, so that the traceback
    	// will seamlessly trace back into the earlier calls.
    	MOVD	m_curg(R8), g
    	BL	runtime·save_g(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    		return nil, err
    	}
    
    	// If *most* samples have the same second-to-the-bottom frame, it
    	// strongly suggests that it is an uninteresting artifact of
    	// measurement -- a stack frame pushed by the signal handler. The
    	// bottom frame is always correct as it is picked up from the signal
    	// structure, not the stack. Check if this is the case and if so,
    	// remove.
    
    	// Remove up to two frames.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  5. src/go/types/decl.go

    	// ones. White and grey objects may depend on white and black objects.
    	// A dependency on a grey object indicates a cycle which may or may not be
    	// valid.
    	//
    	// When objects turn grey, they are pushed on the object path (a stack);
    	// they are popped again when they turn black. Thus, if a grey object (a
    	// cycle) is encountered, it is on the object path, and all the objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/link.go

    // At the time of fill/spill, the offset must be adjusted by the architecture-dependent
    // adjustment to hardware SP that occurs in a call instruction.  E.g., for AMD64,
    // at Offset+8 because the return address was pushed.
    type RegSpill struct {
    	Addr           Addr
    	Reg            int16
    	Spill, Unspill As
    }
    
    // A Func represents a Go function. If non-nil, it must be a *ir.Func.
    type Func interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/debug.go

    		w.WriteHeader(http.StatusBadRequest)
    		_, _ = w.Write([]byte("Failed to parse request\n"))
    		return true
    	}
    	if req.Form.Get("push") != "" {
    		AdsPushAll(s)
    		_, _ = fmt.Fprintf(w, "Pushed to %d servers\n", s.adsClientCount())
    		return true
    	}
    	return false
    }
    
    // getDebugConnection fetches the Connection requested by proxyID
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

     public:
      // The c'tor pushes the given source file location and message onto
      // a trace stack maintained by Google Test.
      ScopedTrace(const char* file, int line, const Message& message);
    
      // The d'tor pops the info pushed by the c'tor.
      //
      // Note that the d'tor is not virtual in order to be efficient.
      // Don't inherit from ScopedTrace!
      ~ScopedTrace();
    
     private:
      GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedTrace);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

     public:
      // The c'tor pushes the given source file location and message onto
      // a trace stack maintained by Google Test.
      ScopedTrace(const char* file, int line, const Message& message);
    
      // The d'tor pops the info pushed by the c'tor.
      //
      // Note that the d'tor is not virtual in order to be efficient.
      // Don't inherit from ScopedTrace!
      ~ScopedTrace();
    
     private:
      GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedTrace);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  10. src/runtime/asm_arm.s

    	// runtime.cgocallbackg leaves SP unchanged upon return.
    	// To save m->curg->sched.pc, we push it onto the curg stack and
    	// open a frame the same size as cgocallback's g0 frame.
    	// Once we switch to the curg stack, the pushed PC will appear
    	// to be the return PC of cgocallback, so that the traceback
    	// will seamlessly trace back into the earlier calls.
    	MOVW	m_curg(R8), R0
    	BL	setg<>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
Back to top