Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 418 for noframes (0.21 sec)

  1. platforms/jvm/code-quality/src/main/resources/checkstyle-noframes-sorted.xsl

    Sterling Greene <******@****.***> 1692279701 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 17 13:41:41 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/tables.go

    	"frameset",
    	"h1",
    	"h2",
    	"h3",
    	"h4",
    	"h5",
    	"h6",
    	"head",
    	"header",
    	"hr",
    	"html",
    	"iframe",
    	"legend",
    	"li",
    	"link",
    	"main",
    	"menu",
    	"menuitem",
    	"nav",
    	"noframes",
    	"ol",
    	"optgroup",
    	"option",
    	"p",
    	"param",
    	"section",
    	"source",
    	"summary",
    	"table",
    	"tbody",
    	"td",
    	"tfoot",
    	"th",
    	"thead",
    	"title",
    	"tr",
    	"track",
    	"ul",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/CheckstyleInvoker.groovy

            }
    
            if (isHtmlRequired) {
                def stylesheet = stylesheetString.isPresent()
                    ? stylesheetString.get()
                    : Checkstyle.getClassLoader().getResourceAsStream('checkstyle-noframes-sorted.xsl').text
                ant.xslt(in: xmlOutputLocation, out: htmlOutputLocation) {
                    param(name: "gradleVersion", expression: GradleVersion.current().toString())
                    style {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 22:34:07 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. src/runtime/testdata/testprog/traceback_ancestors.go

    			ignoreGoroutines[goroutineID()] = true
    		}
    
    		// Start the next goroutine now that there are no more recursions left
    		// for this current goroutine.
    		go recurseThenCallGo(w, frames-1, numFrames, false)
    		return
    	}
    	recurseThenCallGo(w, frames, goroutines-1, main)
    }
    
    func goroutineID() string {
    	buf := make([]byte, 128)
    	runtime.Stack(buf, false)
    	prefix := []byte("goroutine ")
    	var found bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 17:14:59 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. src/internal/trace/generation.go

    			return err
    		}
    
    		// Read how many frames are in each stack.
    		nFrames, err := binary.ReadUvarint(r)
    		if err != nil {
    			return err
    		}
    		if nFrames > go122.MaxFramesPerStack {
    			return fmt.Errorf("invalid stack size %d, maximum is %d", nFrames, go122.MaxFramesPerStack)
    		}
    
    		// Each frame consists of 4 fields: pc, funcID (string), fileID (string), line.
    		frames := make([]uint64, 0, nFrames)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/http2/MockHttp2Peer.kt

    import okio.buffer
    import okio.source
    
    /** Replays prerecorded outgoing frames and records incoming frames.  */
    class MockHttp2Peer : Closeable {
      private var frameCount = 0
      private var client = false
      private val bytesOut = Buffer()
      private var writer = Http2Writer(bytesOut, client)
      private val outFrames: MutableList<OutFrame> = ArrayList()
      private val inFrames: BlockingQueue<InFrame> = LinkedBlockingQueue()
      private var port = 0
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_s390x.s

    TEXT runtime·write1(SB),NOSPLIT|NOFRAME,$0-28
    	MOVD	fd+0(FP), R2
    	MOVD	p+8(FP), R3
    	MOVW	n+16(FP), R4
    	MOVW	$SYS_write, R1
    	SYSCALL
    	MOVW	R2, ret+24(FP)
    	RET
    
    TEXT runtime·read(SB),NOSPLIT|NOFRAME,$0-28
    	MOVW	fd+0(FP), R2
    	MOVD	p+8(FP), R3
    	MOVW	n+16(FP), R4
    	MOVW	$SYS_read, R1
    	SYSCALL
    	MOVW	R2, ret+24(FP)
    	RET
    
    // func pipe2() (r, w int32, errno int32)
    TEXT runtime·pipe2(SB),NOSPLIT|NOFRAME,$0-20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. src/runtime/asm_s390x.s

    	RET
    
    // AES hashing not implemented for s390x
    TEXT runtime·memhash(SB),NOSPLIT|NOFRAME,$0-32
    	JMP	runtime·memhashFallback(SB)
    TEXT runtime·strhash(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·strhashFallback(SB)
    TEXT runtime·memhash32(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·memhash32Fallback(SB)
    TEXT runtime·memhash64(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·memhash64Fallback(SB)
    
    TEXT runtime·return0(SB), NOSPLIT, $0
    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/cmd/vendor/golang.org/x/sys/unix/zsymaddr_zos_s390x.s

    TEXT ·get_FgetxattrAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Fgetxattr(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    TEXT ·get_FsetxattrAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Fsetxattr(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    TEXT ·get_accept4Addr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·accept4(SB), R8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/symaddr_zos_s390x.s

    TEXT ·getPipe2Addr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Pipe2(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    TEXT ·get_FlockAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Flock(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    TEXT ·get_GetxattrAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Getxattr(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    TEXT ·get_NanosleepAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Nanosleep(SB), R8
    	MOVD R8, ret+0(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top