Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 525 for aframe (0.13 sec)

  1. src/reflect/asm_riscv64.s

    	MOV	CTXT, 8(SP)
    	MOV	X25, 16(SP)
    	CALL	·moveMakeFuncArgPtrs(SB)
    	MOV	32(SP), CTXT // restore CTXT
    	MOV	CTXT, 8(SP)
    	MOV	$argframe+0(FP), T0
    	MOV	T0, 16(SP)
    	MOV	ZERO, LOCAL_RETVALID(SP)
    	ADD	$LOCAL_RETVALID, SP, T1
    	MOV	T1, 24(SP)
    	ADD	$LOCAL_REGARGS, SP, T1
    	MOV	T1, 32(SP) // frame size to 32+SP as callreflect args
    	CALL	·callMethod(SB)
    	ADD	$LOCAL_REGARGS, SP, X25 // unspillArgs using X25
    	CALL	runtime·unspillArgs(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 01:41:42 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/XpathTransformerTest.java

                Map<String, String> childUrlRuleMap = newHashMap();
                childUrlRuleMap.put("//A", "href");
                childUrlRuleMap.put("//AREA", "href");
                childUrlRuleMap.put("//FRAME", "src");
                childUrlRuleMap.put("//IFRAME", "src");
                childUrlRuleMap.put("//IMG", "src");
                childUrlRuleMap.put("//LINK", "href");
                childUrlRuleMap.put("//SCRIPT", "src");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. src/runtime/sys_windows_386.s

    	MOVL	$0, (12+callbackArgs_result)(SP)	// result
    	LEAL	12(SP), AX	// AX = &callbackArgs{...}
    
    	// Call cgocallback, which will call callbackWrap(frame).
    	MOVL	$0, 8(SP)	// context
    	MOVL	AX, 4(SP)	// frame (address of callbackArgs)
    	LEAL	·callbackWrap(SB), AX
    	MOVL	AX, 0(SP)	// PC of function to call
    	CALL	runtime·cgocallback(SB)
    
    	// Get callback result.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/tables.go

    	"dd",
    	"details",
    	"dialog",
    	"dir",
    	"div",
    	"dl",
    	"dt",
    	"fieldset",
    	"figcaption",
    	"figure",
    	"footer",
    	"form",
    	"frame",
    	"frameset",
    	"h1",
    	"h2",
    	"h3",
    	"h4",
    	"h5",
    	"h6",
    	"head",
    	"header",
    	"hr",
    	"html",
    	"iframe",
    	"legend",
    	"li",
    	"link",
    	"main",
    	"menu",
    	"menuitem",
    	"nav",
    	"noframes",
    	"ol",
    	"optgroup",
    	"option",
    	"p",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. docs/contribute/concurrency.md

    Blocking APIs may be inefficient because you hold a thread idle while waiting on the network. Threads are expensive because they have both a memory overhead and a context-switching overhead.
    
    #### Framed protocols
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    			}
    		}
    	}
    
    	var frame stkframe
    	frame.pc = pc0
    	frame.sp = sp0
    	if usesLR {
    		frame.lr = lr0
    	}
    
    	// If the PC is zero, it's likely a nil function call.
    	// Start in the caller's frame.
    	if frame.pc == 0 {
    		if usesLR {
    			frame.pc = *(*uintptr)(unsafe.Pointer(frame.sp))
    			frame.lr = 0
    		} else {
    			frame.pc = *(*uintptr)(unsafe.Pointer(frame.sp))
    			frame.sp += goarch.PtrSize
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/runtime/stkframe.go

    func (frame *stkframe) argBytes() uintptr {
    	if frame.fn.args != abi.ArgsSizeUnknown {
    		return uintptr(frame.fn.args)
    	}
    	// This is an uncommon and complicated case. Fall back to fully
    	// fetching the argument map to compute its size.
    	argMap, _ := frame.argMapInternal()
    	return uintptr(argMap.n) * goarch.PtrSize
    }
    
    // argMapInternal is used internally by stkframe to fetch special
    // argument maps.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/FileTransformerTest.java

            Map<String, String> childUrlRuleMap = newHashMap();
            childUrlRuleMap.put("//A", "href");
            childUrlRuleMap.put("//AREA", "href");
            childUrlRuleMap.put("//FRAME", "src");
            childUrlRuleMap.put("//IFRAME", "src");
            childUrlRuleMap.put("//IMG", "src");
            childUrlRuleMap.put("//LINK", "href");
            childUrlRuleMap.put("//SCRIPT", "src");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDebugLogIntegrationTest.groovy

            events.contains([profile: "build ':' state", type: "O", frame: ":sub:ok"])
            events.contains([profile: "build ':' state", type: "C", frame: ":sub:ok"])
    
            and: "task type frame follows task path frame follows LocalTaskNode frame"
            def firstTaskNodeIndex = events.findIndexOf { it.frame == LocalTaskNode.name }
            firstTaskNodeIndex > 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. test/fixedbugs/issue21879.go

    	"runtime"
    )
    
    func main() {
    	println(caller().frame.Function)
    
    	// Used to erroneously print "main.call.name" instead of
    	// "main.main".
    	println(caller().name())
    }
    
    func caller() call {
    	var pcs [3]uintptr
    	n := runtime.Callers(1, pcs[:])
    	frames := runtime.CallersFrames(pcs[:n])
    	frame, _ := frames.Next()
    	frame, _ = frames.Next()
    
    	return call{frame: frame}
    }
    
    type call struct {
    	frame runtime.Frame
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 19 18:35:24 UTC 2017
    - 658 bytes
    - Viewed (0)
Back to top