Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 268 for Words (0.06 sec)

  1. internal/s3select/sql/parser_test.go

    	cases := []string{
    		"S3Object",
    		"S3Object.id",
    		"S3Object.book.title",
    		"S3Object.id[1]",
    		"S3Object.id['abc']",
    		"S3Object.id['ab']",
    		"S3Object.words.*.id",
    		"S3Object.words.name[*].val",
    		"S3Object.words.name[*].val[*]",
    		"S3Object.words.name[*].val.*",
    	}
    	for i, tc := range cases {
    		err := p.ParseString(tc, &j)
    		if err != nil {
    			t.Fatalf("%d: %v", i, err)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. 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)
  6. 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)
  7. src/runtime/cpuprof.go

    	"unsafe"
    )
    
    const (
    	maxCPUProfStack = 64
    
    	// profBufWordCount is the size of the CPU profile buffer's storage for the
    	// header and stack of each sample, measured in 64-bit words. Every sample
    	// has a required header of two words. With a small additional header (a
    	// word or two) and stacks at the profiler's maximum length of 64 frames,
    	// that capacity can support 1900 samples or 19 thread-seconds at a 100 Hz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. test/abi/too_big_to_ssa.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    )
    
    var sink *string
    
    type toobig struct {
    	// 6 words will not SSA but will fit in registers
    	a, b, c string
    }
    
    //go:registerparams
    //go:noinline
    func H(x toobig) string {
    	return x.a + " " + x.b + " " + x.c
    }
    
    //go:registerparams
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 833 bytes
    - Viewed (0)
  9. src/crypto/internal/bigmod/nat_asm.go

    import "internal/cpu"
    
    // amd64 assembly uses ADCX/ADOX/MULX if ADX is available to run two carry
    // chains in the flags in parallel across the whole operation, and aggressively
    // unrolls loops. arm64 processes four words at a time.
    //
    // It's unclear why the assembly for all other architectures, as well as for
    // amd64 without ADX, perform better than the compiler output.
    // TODO(filippo): file cmd/compile performance issue.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 07:52:41 UTC 2023
    - 942 bytes
    - Viewed (0)
  10. src/crypto/internal/boring/doc.go

    // When enabled is false, all functions in this package panic.
    //
    // BoringCrypto is only available on linux/amd64 and linux/arm64 systems.
    const Enabled = available
    
    // A BigInt is the raw words from a BigInt.
    // This definition allows us to avoid importing math/big.
    // Conversion between BigInt and *big.Int is in crypto/internal/boring/bbig.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 05:28:51 UTC 2023
    - 826 bytes
    - Viewed (0)
Back to top