Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,351 for routine (0.17 sec)

  1. cmd/kube-controller-manager/app/testing/testserver.go

    // and location of the tmpdir are returned.
    //
    // Note: we return a tear-down func instead of a stop channel because the later will leak temporary
    // files that because Golang testing's call to os.Exit will not give a stop channel go routine
    // enough time to remove temporary files.
    func StartTestServer(ctx context.Context, customFlags []string) (result TestServer, err error) {
    	logger := klog.FromContext(ctx)
    	ctx, cancel := context.WithCancel(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. src/runtime/asm_loong64.s

    	ADDV	$-16, R3
    	MOVV	R4, 8(R3)
    	MOVV	R0, 0(R3)
    	JAL	(R20)
    	JMP	runtime·badmcall2(SB)
    
    // systemstack_switch is a dummy routine that systemstack leaves at the bottom
    // of the G stack. We need to distinguish the routine that
    // lives at the bottom of the G stack from the one that lives
    // at the top of the system stack because the one at the top of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.cc

    // may have non-static shape because the shape is not propagated during constant
    // folding. If the defining op for the given operand is a constant op, this
    // routine uses the constant op's attribute to get the actual shape.
    RankedTensorType GetRankedTensorTypeForOperand(Value operand) {
      DenseElementsAttr attr;
      if (matchPattern(operand, m_Constant(&attr))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/proxy/websocket.go

    	for {
    		size := remotecommand.TerminalSize{}
    		if err := decoder.Decode(&size); err != nil {
    			break
    		}
    
    		select {
    		case channel <- size:
    		case <-ctx.Done():
    			// To avoid leaking this routine, exit if the http request finishes. This path
    			// would generally be hit if starting the process fails and nothing is started to
    			// ingest these resize events.
    			return
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/dwarf.go

    // Called after all functions have been compiled; the main job of this
    // function is to identify cases where there are outstanding fixups.
    // This scenario crops up when we have references to variables of an
    // inlined routine, but that routine is defined in some other package.
    // This helper walks through and locate these fixups, then invokes a
    // helper to create an abstract subprogram DIE for each one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  6. src/runtime/runtime1.go

    //
    // If level is 0, suppress all tracebacks.
    // If level is 1, show tracebacks, but exclude runtime frames.
    // If level is 2, show tracebacks including runtime frames.
    // If all is set, print all goroutine stacks. Otherwise, print just the current goroutine.
    // If crash is set, crash (core dump, etc) after tracebacking.
    //
    //go:nosplit
    func gotraceback() (level int32, all, crash bool) {
    	gp := getg()
    	t := atomic.Load(&traceback_cache)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. src/runtime/asm_mips64x.s

    	ADDV	$-16, R29
    	MOVV	R1, 8(R29)
    	MOVV	R0, 0(R29)
    	JAL	(R4)
    	JMP	runtime·badmcall2(SB)
    
    // systemstack_switch is a dummy routine that systemstack leaves at the bottom
    // of the G stack. We need to distinguish the routine that
    // lives at the bottom of the G stack from the one that lives
    // at the top of the system stack because the one at the top of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  8. src/runtime/asm_s390x.s

    	SUB	$16, R15
    	MOVD	R3, 8(R15)
    	MOVD	$0, 0(R15)
    	BL	(R4)
    	BR	runtime·badmcall2(SB)
    
    // systemstack_switch is a dummy routine that systemstack leaves at the bottom
    // of the G stack.  We need to distinguish the routine that
    // lives at the bottom of the G stack from the one that lives
    // at the top of the system stack because the one at the top of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. src/net/tcpsock_posix.go

    	// calls are sometimes legally erroneous with a "socket not connected".
    	// Since this code (selfConnect) is already trying to work around
    	// a problem, we make sure if this happens we recognize trouble and
    	// ask the DialTCP routine to try again.
    	// TODO: try to understand what's really going on.
    	if fd.laddr == nil || fd.raddr == nil {
    		return true
    	}
    	l := fd.laddr.(*TCPAddr)
    	r := fd.raddr.(*TCPAddr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/graph.go

    // use the respective locks, so the return values of the getters can be
    // inconsistent.
    type node struct {
    	identity objectReference
    	// dependents will be read by the orphan() routine, we need to protect it with a lock.
    	dependentsLock sync.RWMutex
    	// dependents are the nodes that have node.identity as a
    	// metadata.ownerReference.
    	dependents map[*node]struct{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 13:37:56 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top