Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for aframe (0.09 sec)

  1. src/runtime/string.go

    		}
    		l += n
    		count++
    		idx = i
    	}
    	if count == 0 {
    		return ""
    	}
    
    	// If there is just one string and either it is not on the stack
    	// or our result does not escape the calling frame (buf != nil),
    	// then we can return that string directly.
    	if count == 1 && (buf != nil || !stringDataOnStack(a[idx])) {
    		return a[idx]
    	}
    	s, b := rawstringtmp(buf, l)
    	for _, x := range a {
    		copy(b, x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        if (on) {
          matches.add(src);
        } else {
          matches.delete(src);
        }
        toggleClass(src, 'hilite', on);
        return true;
      }
    
      // Display action menu (triggered by right-click on a frame)
      function showActionMenu(e, box) {
        if (box.src == 0) return; // No action menu for root
        e.preventDefault(); // Disable browser context menu
        const src = stacks.Sources[box.src];
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. src/encoding/gob/encode.go

    func (enc *Encoder) encodeSingle(b *encBuffer, engine *encEngine, value reflect.Value) {
    	state := enc.newEncoderState(b)
    	defer enc.freeEncoderState(state)
    	state.fieldnum = singletonField
    	// There is no surrounding struct to frame the transmission, so we must
    	// generate data even if the item is zero. To do this, set sendZero.
    	state.sendZero = true
    	instr := &engine.instr[singletonField]
    	if instr.indir > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/cmd/cgo/doc.go

    		} __attribute__((__packed__, __gcc_struct__)) *a = v;
    		a->r = puts((void*)a->p0);
    	}
    
    It extracts the arguments from the pointer to _Cfunc_puts's argument
    frame, invokes the system C function (in this case, puts), stores the
    result in the frame, and returns.
    
    Linking
    
    Once the _cgo_export.c and *.cgo2.c files have been compiled with gcc,
    they need to be linked into the final binary, along with the libraries
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            val firCall = ktCallExpression.getOrBuildFir(analysisSession.firResolveSession)?.unwrapSafeCall() as? FirCall ?: return emptyList()
            val parameter = firCall.findCorrespondingParameter(ktValueArgumentName.asName) ?: return emptyList()
            return listOfNotNull(parameter.buildSymbol(symbolBuilder))
        }
    
        private fun FirCall.findCorrespondingParameter(name: Name): FirValueParameter? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  6. src/runtime/signal_unix.go

    		// where the signal occurred made a call to the
    		// function sigpanic. Then set the PC to sigpanic.
    
    		// Have to pass arguments out of band since
    		// augmenting the stack frame would break
    		// the unwinding code.
    		gp.sig = sig
    		gp.sigcode0 = uintptr(c.sigcode())
    		gp.sigcode1 = c.fault()
    		gp.sigpc = c.sigpc()
    
    		c.preparePanic(sig, gp)
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top