Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 523 for spacer (0.13 sec)

  1. src/cmd/vendor/golang.org/x/term/terminal.go

    		t.cursorY = 0
    		t.maxLine = 0
    	case keyDeleteWord:
    		// Delete zero or more spaces and then one or more characters.
    		t.eraseNPreviousChars(t.countToLeftWord())
    	case keyDeleteLine:
    		// Delete everything from the current cursor position to the
    		// end of line.
    		for i := t.pos; i < len(t.line); i++ {
    			t.queue(space)
    			t.advanceCursor(1)
    		}
    		t.line = t.line[:t.pos]
    		t.moveCursorToPos(t.pos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  2. src/runtime/mkpreempt.go

    	lfp.restore()
    	label("nofp2:")
    	l.restore()
    
    	p("MOVW %d(R13), R14", lfp.stack)     // sigctxt.pushCall pushes LR on stack, restore it
    	p("MOVW.P %d(R13), R15", lfp.stack+4) // load PC, pop frame (including the space pushed by sigctxt.pushCall)
    	p("UNDEF")                            // shouldn't get here
    }
    
    func genARM64() {
    	// Add integer registers R0-R26
    	// R27 (REGTMP), R28 (g), R29 (FP), R30 (LR), R31 (SP) are special
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  3. src/html/template/content_test.go

    			},
    		},
    		{
    			`<img srcset="{{.}}">`,
    			[]string{
    				`#ZgotmplZ`,
    				`#ZgotmplZ`,
    				// Commas are not escaped.
    				`Hello,#ZgotmplZ`,
    				// Leading spaces are not percent escapes.
    				` dir=%22ltr%22`,
    				// Spaces after commas are not percent escaped.
    				`#ZgotmplZ, World!%22%29;`,
    				`Hello,#ZgotmplZ`,
    				`greeting=H%69%2c&amp;addressee=%28World%29`,
    				// Metadata is not escaped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 13.5K bytes
    - Viewed (0)
  4. src/strconv/quote.go

    // the same definition as [unicode.IsPrint]: letters, numbers, punctuation,
    // symbols and ASCII space.
    func IsPrint(r rune) bool {
    	// Fast check for Latin-1
    	if r <= 0xFF {
    		if 0x20 <= r && r <= 0x7E {
    			// All the ASCII is printable from space through DEL-1.
    			return true
    		}
    		if 0xA1 <= r && r <= 0xFF {
    			// Similarly for ¡ through ÿ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/build.go

    			return false
    		}
    	}
    	return true
    }
    
    // splitQuoted splits the string s around each instance of one or more consecutive
    // white space characters while taking into account quotes and escaping, and
    // returns an array of substrings of s or an empty list if s contains only white space.
    // Single quotes and double quotes are recognized to prevent splitting within the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  6. src/runtime/mstats.go

    	// HeapSys is bytes of heap memory obtained from the OS.
    	//
    	// HeapSys measures the amount of virtual address space
    	// reserved for the heap. This includes virtual address space
    	// that has been reserved but not yet used, which consumes no
    	// physical memory, but tends to be small, as well as virtual
    	// address space for which the physical memory has been
    	// returned to the OS after it became unused (see HeapReleased
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

         * <p>
         *     * English default sentence-break algorithm - Stops at a period followed by a space or a HTML block tag, such as  &lt;P&gt;.
         * <p>
         *     * Breakiterator sentence-break algorithm - In general, stops at a period,
         *       question mark or exclamation mark followed by a space if the next word starts with a capital letter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/modular_filesystem_registration.cc

            "Filesystem allows creation of readonly memory regions but no "
            "operations on them have been supplied.");
    
      return OkStatus();
    }
    
    // Copies a function table from plugin memory space to core memory space.
    //
    // This has three benefits:
    //   * allows having newer plugins than the current core TensorFlow: the
    //     additional entries in the plugin's table are just discarded;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 07 22:08:43 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. fastapi/security/oauth2.py

                ),
            ],
            scope: Annotated[
                str,
                Form(),
                Doc(
                    """
                    A single string with actually several scopes separated by spaces. Each
                    scope is also a string.
    
                    For example, a single string with:
    
                    ```python
                    "items:read items:write users:read profile openid"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. src/runtime/stubs.go

    // frameSize, and regArgs.
    //
    // Arguments passed on the stack and space for return values passed on the stack
    // must be laid out at the space pointed to by stackArgs (with total length
    // stackArgsSize) according to the ABI.
    //
    // stackRetOffset must be some value <= stackArgsSize that indicates the
    // offset within stackArgs where the return value space begins.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top