Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 159 for spacer (0.1 sec)

  1. src/runtime/mbitmap.go

    		}
    		// Handle the case where we have no malloc header.
    		scanSize = span.writeHeapBitsSmall(x, dataSize, typ)
    	} else {
    		if typ.Kind_&abi.KindGCProg != 0 {
    			// Allocate space to unroll the gcprog. This space will consist of
    			// a dummy _type value and the unrolled gcprog. The dummy _type will
    			// refer to the bitmap, and the mspan will refer to the dummy _type.
    			if span.spanclass.sizeclass() != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

    code,
    kbd,
    pre,
    samp {
    	font-family: monospace, serif;
    	font-size: 1em;
    }
    
    /** Improve readability of pre-formatted text in all browsers. */
    pre {
    	white-space: pre-wrap;
    }
    
    /** Set consistent quote types. */
    q {
    	quotes: "\201C""\201D""\2018""\2019";
    }
    
    /** Address inconsistent and variable font size in all browsers. */
    small {
    	font-size: 80%;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file number"},
    	{10, "ECHILD", "no child processes"},
    	{11, "EWOULDBLOCK", "resource temporarily unavailable"},
    	{12, "ENOMEM", "not enough space"},
    	{13, "EACCES", "permission denied"},
    	{14, "EFAULT", "bad address"},
    	{15, "ENOTBLK", "block device required"},
    	{16, "EBUSY", "device busy"},
    	{17, "ENOTEMPTY", "file exists"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/javadoc.css

        font-size:1em;
        margin:14px 0;
        white-space: pre-wrap;
    }
    .module-signature,
    .package-signature,
    .type-signature {
        margin-top: 0;
    }
    .member-signature .type-parameters-long,
    .member-signature .parameters,
    .member-signature .exceptions {
        display: inline-block;
        vertical-align: top;
        white-space: pre;
    }
    .member-signature .type-parameters {
        white-space: normal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    // allocations and encourages use of (temporary) M-local storage.
    //
    // The M will have space for storing one call stack that caused contention, and
    // for the magnitude of that contention. It will also have space to store the
    // magnitude of additional contention the M caused, since it only has space to
    // remember one call stack and might encounter several contention events before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file number"},
    	{10, "ECHILD", "no child processes"},
    	{11, "EWOULDBLOCK", "resource temporarily unavailable"},
    	{12, "ENOMEM", "not enough space"},
    	{13, "EACCES", "permission denied"},
    	{14, "EFAULT", "bad address"},
    	{15, "ENOTBLK", "block device required"},
    	{16, "EBUSY", "device busy"},
    	{17, "ENOTEMPTY", "file exists"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  7. src/regexp/testdata/testregex.c

    T("    K	REG_SHELL|REG_AUGMENTED	KRE	(ksh glob)\n");
    T("    L	REG_LITERAL		LRE	(fgrep)\n");
    T("\n");
    T("    a	REG_LEFT|REG_RIGHT	implicit ^...$\n");
    T("    b	REG_NOTBOL		lhs does not match ^\n");
    T("    c	REG_COMMENT		ignore space and #...\\n\n");
    T("    d	REG_SHELL_DOT		explicit leading . match\n");
    T("    e	REG_NOTEOL		rhs does not match $\n");
    T("    f	REG_MULTIPLE		multiple \\n separated patterns\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  8. src/runtime/asm_amd64.s

    	MOVQ	$2, R12
    	BYTE	$0xcc
    	RET
    
    // Note: these functions use a special calling convention to save generated code space.
    // Arguments are passed in registers, but the space for those arguments are allocated
    // in the caller's stack frame. These stubs write the args into that stack space and
    // then tail call to the corresponding runtime handler.
    // The tail call makes these stubs disappear in backtraces.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  9. src/reflect/type.go

    }
    
    // A StructTag is the tag string in a struct field.
    //
    // By convention, tag strings are a concatenation of
    // optionally space-separated key:"value" pairs.
    // Each key is a non-empty string consisting of non-control
    // characters other than space (U+0020 ' '), quote (U+0022 '"'),
    // and colon (U+003A ':').  Each value is quoted using U+0022 '"'
    // characters and Go string literal syntax.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  10. src/syscall/zerrors_solaris_amd64.go

    	6:   "no such device or address",
    	7:   "arg list too long",
    	8:   "exec format error",
    	9:   "bad file number",
    	10:  "no child processes",
    	11:  "resource temporarily unavailable",
    	12:  "not enough space",
    	13:  "permission denied",
    	14:  "bad address",
    	15:  "block device required",
    	16:  "device busy",
    	17:  "file exists",
    	18:  "cross-device link",
    	19:  "no such device",
    	20:  "not a directory",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
Back to top