Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for ll (0.26 sec)

  1. misc/chrome/gophertool/README.txt

    To install:
    
    1) chrome://extensions/
    2) click "[+] Developer Mode" in top right
    3) "Load unpacked extension..."
    4) pick $GOROOT/misc/chrome/gophertool
    
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon May 23 21:27:51 GMT 2011
    - 194 bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/mips64.s

    //	}
    	MOVW	foo<>+3(SB), R2
    	MOVW	(R11), R22	// 8d760000
    	MOVW	1(R9), R24	// 8d380001
    	MOVW	-17(R24), R8	// 8f08ffef
    	MOVWU	(R11), R22	// 9d760000
    	MOVWU	1(R9), R24	// 9d380001
    	MOVWU	-17(R24), R8	// 9f08ffef
    	LL	(R1), R2	// c0220000
    
    //	LMOVH addr ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MOVH	foo<>+3(SB), R2
    	MOVH	(R20), R7	// 86870000
    	MOVH	54(R11), R26	// 857a0036
    	MOVH	-42(R3), R20	// 8474ffd6
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 08 12:17:12 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    <p>
    In <a href="https://www.unicode.org/versions/Unicode8.0.0/">The Unicode Standard 8.0</a>,
    Section 4.5 "General Category" defines a set of character categories.
    Go treats all characters in any of the Letter categories Lu, Ll, Lt, Lm, or Lo
    as Unicode letters, and those in the Number category Nd as Unicode digits.
    </p>
    
    <h3 id="Letters_and_digits">Letters and digits</h3>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/loong64enc1.s

    	MOVW	1(R5), R4		// a4048028
    	MOVWU	1(R5), R4		// a404802a
    	MOVV	1(R5), R4		// a404c028
    	MOVB	1(R5), R4		// a4040028
    	MOVBU	1(R5), R4		// a404002a
    	MOVWL	1(R5), R4		// a404002e
    	MOVVL	1(R5), R4		// a404802e
    	LL	1(R5), R4		// a4040020
    	LLV	1(R5), R4		// a4040022
    	MOVW	$4(R4), R5		// 8510c002
    	MOVV	$4(R4), R5		// 8510c002
    	MOVW	$-1, R4			// 04fcff02
    	MOVV	$-1, R4			// 04fcff02
    	MOVW	$1, R4			// 0404c002
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 31 02:56:19 GMT 2023
    - 6.4K bytes
    - Viewed (0)
  5. src/archive/zip/reader.go

    	needCSize := f.CompressedSize == ^uint32(0)
    	needHeaderOffset := f.headerOffset == int64(^uint32(0))
    
    	// Best effort to find what we need.
    	// Other zip authors might not even follow the basic format,
    	// and we'll just ignore the Extra content in that case.
    	var modified time.Time
    parseExtras:
    	for extra := readBuf(f.Extra); len(extra) >= 4; { // need at least tag and size
    		fieldTag := extra.uint16()
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  6. doc/go_spec.html

    <p>
    In <a href="https://www.unicode.org/versions/Unicode8.0.0/">The Unicode Standard 8.0</a>,
    Section 4.5 "General Category" defines a set of character categories.
    Go treats all characters in any of the Letter categories Lu, Ll, Lt, Lm, or Lo
    as Unicode letters, and those in the Number category Nd as Unicode digits.
    </p>
    
    <h3 id="Letters_and_digits">Letters and digits</h3>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    				}
    			}
    		}
    	}
    	f.Preamble = strings.Join(linesOut, "\n")
    }
    
    // addToFlag appends args to flag.
    func (p *Package) addToFlag(flag string, args []string) {
    	if flag == "CFLAGS" {
    		// We'll also need these when preprocessing for dwarf information.
    		// However, discard any -g options: we need to be able
    		// to parse the debug info, so stick to what we expect.
    		for _, arg := range args {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  8. .gitattributes

    #
    # Windows .bat files are known to have multiple bugs when run with LF
    # endings, and so they are checked in with CRLF endings, with a test
    # in test/winbatch.go to catch problems. (See golang.org/issue/37791.)
    #
    # We'll prevent accidental CRLF line endings from entering the repo
    # via the git-codereview gofmt checks and tests.
    #
    # See golang.org/issue/9281.
    
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 08 15:31:43 GMT 2020
    - 639 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/issue26213/jni.h

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // It's going to be hard to include a whole real JVM to test this.
    // So we'll simulate a really easy JVM using just the parts we need.
    
    // This is the relevant part of jni.h.
    
    // On Android NDK16, jobject is defined like this in C and C++
    typedef void* jobject;
    
    typedef jobject jclass;
    C
    - Registered: Tue Mar 26 11:13:08 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 874 bytes
    - Viewed (0)
  10. api/go1.txt

    pkg unicode, var Lepcha *RangeTable
    pkg unicode, var Letter *RangeTable
    pkg unicode, var Limbu *RangeTable
    pkg unicode, var Linear_B *RangeTable
    pkg unicode, var Lisu *RangeTable
    pkg unicode, var Ll *RangeTable
    pkg unicode, var Lm *RangeTable
    pkg unicode, var Lo *RangeTable
    pkg unicode, var Logical_Order_Exception *RangeTable
    pkg unicode, var Lower *RangeTable
    pkg unicode, var Lt *RangeTable
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top