Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 379 for Words (0.17 sec)

  1. doc/next/6-stdlib/99-minor/unicode/utf16/44940.md

    The [RuneLen] function returns the number of 16-bit words in
    the UTF-16 encoding of the rune. It returns -1 if the rune
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 162 bytes
    - Viewed (0)
  2. src/runtime/memmove_loong64.s

    	BNE	R7, out
    
    	// if less than 8 bytes, do byte copying
    	SGTU	$8, R6, R7
    	BNE	R7, out
    
    	// do one byte at a time until 8-aligned
    	AND	$7, R4, R8
    	BEQ	R8, words
    	MOVB	(R5), R7
    	ADDV	$1, R5
    	MOVB	R7, (R4)
    	ADDV	$1, R4
    	JMP	-6(PC)
    
    words:
    	// do 8 bytes at a time if there is room
    	ADDV	$-7, R9, R6 // R6 is end pointer-7
    
    	PCALIGN	$16
    	SGTU	R6, R4, R8
    	BEQ	R8, out
    	MOVV	(R5), R7
    	ADDV	$8, R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/runtime/memmove_mips64x.s

    	BNE	R4, out
    
    	// if less than 8 bytes, do byte copying
    	SGTU	$8, R3, R4
    	BNE	R4, out
    
    	// do one byte at a time until 8-aligned
    	AND	$7, R1, R5
    	BEQ	R5, words
    	MOVB	(R2), R4
    	ADDV	$1, R2
    	MOVB	R4, (R1)
    	ADDV	$1, R1
    	JMP	-6(PC)
    
    words:
    	// do 8 bytes at a time if there is room
    	ADDV	$-7, R6, R3 // R3 is end pointer-7
    
    	SGTU	R3, R1, R5
    	BEQ	R5, out
    	MOVV	(R2), R4
    	ADDV	$8, R2
    	MOVV	R4, (R1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  4. .typos.toml

        "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.*",
        "MIIDBTCCAe2gAwIBAgIQWHw7h.*",
        'http\.Header\{"X-Amz-Server-Side-Encryptio":',
        "ZoEoZdLlzVbOlT9rbhD7ZN7TLyiYXSAlB79uGEge",
    ]
    
    [default.extend-words]
    "encrypter" = "encrypter"
    "kms" = "kms"
    "requestor" = "requestor"
    
    [default.extend-identifiers]
    "HashiCorp" = "HashiCorp"
    
    [type.go.extend-identifiers]
    "bui" = "bui"
    "dm2nd" = "dm2nd"
    "ot" = "ot"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 18 15:15:02 UTC 2024
    - 854 bytes
    - Viewed (0)
  5. src/math/big/natconv.go

    	if leafSize == 0 || m <= leafSize {
    		return nil
    	}
    
    	// determine k where (bb**leafSize)**(2**k) >= sqrt(x)
    	k := 1
    	for words := leafSize; words < m>>1 && k < len(cacheBase10.table); words <<= 1 {
    		k++
    	}
    
    	// reuse and extend existing table of divisors or create new table as appropriate
    	var table []divisor // for b == 10, table overlaps with cacheBase10.table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
  6. pkg/util/strcase/camelcase.go

    		t = append(t, 'X')
    		i++
    	}
    	// Invariant: if the next letter is lower case, it must be converted
    	// to upper case.
    	// That is, we process a word at a time, where words are marked by _, - or
    	// upper case letter. Digits are treated as words.
    	for ; i < len(s); i++ {
    		c := s[i]
    		if isWordSeparator(c) {
    			// Skip the separate and capitalize the next letter.
    			continue
    		}
    		if isASCIIDigit(c) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 28 19:48:10 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/kotlinDsl/containers-api/kotlin/build.gradle.kts

    tasks.register<Copy>("myCopy1")         // <4>
    
    tasks.named("assemble") {               // <5>
        dependsOn(":myTask1")
    }
    tasks.register("myTask2") {             // <6>
        description = "Some meaningful words"
    }
    
    tasks.named<Test>("test") {             // <7>
        testLogging.showStackTraces = true
    }
    tasks.register<Copy>("myCopy2") {       // <8>
        from("source")
        into("destination")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 597 bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

            }
    
            return this.length;
        }
    
    
        /*
         * We overload this because we want readAndXWireFormat to
         * read the parameter words and bytes. This is so when
         * commands are batched together we can recursivly call
         * readAndXWireFormat without reading the non-existent header.
         */
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Nov 28 10:56:27 UTC 2022
    - 14.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/kotlinDsl/containers-delegated-properties/kotlin/build.gradle.kts

    val myCopy1 by tasks.registering(Copy::class)
    
    val assemble by tasks.existing {
        dependsOn(myTask1)  // <1>
    }
    val myTask2 by tasks.registering {
        description = "Some meaningful words"
    }
    
    val test by tasks.existing(Test::class) {
        testLogging.showStackTraces = true
    }
    val myCopy2 by tasks.registering(Copy::class) {
        from("source")
        into("destination")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 579 bytes
    - Viewed (0)
  10. src/runtime/memmove_ppc64x.s

    	SLD	$56, LEN, TMP
    	LXVL	SRC, TMP, V0
    	STXVL	V0, TGT, TMP
    	RET
    #endif
    mcopy:
    	ANDCC	$7, LEN, BYTES	// R7: bytes to copy
    	SRD	$3, LEN, DWORDS	// R6: double words to copy
    	MOVFL	CR0, CR3	// save CR from ANDCC
    	CMP	DWORDS, $0, CR1	// CR1[EQ] set if no double words to copy
    
    	// Determine overlap by subtracting dest - src and comparing against the
    	// length.  This catches the cases where src and dest are in different types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top