Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 9,054 for runN (0.06 sec)

  1. docs/site-replication/run-sse-kms-object-replication.sh

    Poorna <******@****.***> 1716056341 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. test/fixedbugs/issue45706.go

    package p
    
    var i int
    var arr []*int
    var f func() int
    
    func g() {
    	for i, *(arr[f()]) = range []int{} {
    	}
    }
    
    func h() {
    	var x int
    	var f func() int
    	var arr []int
    	var arr2 [][0]rune
    	for arr[x], arr2[arr[f()]][x] = range "" {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 23 20:57:54 UTC 2021
    - 405 bytes
    - Viewed (0)
  3. test/fixedbugs/issue15039.go

    // run
    
    // Copyright 2016 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.
    
    package main
    
    func main() {
    	const fffd = "\uFFFD"
    
    	// runtime.intstring used to convert int64 to rune without checking
    	// for truncation.
    	u := uint64(0x10001f4a9)
    	big := string(u)
    	if big != fffd {
    		panic("big != bad")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 10:28:23 UTC 2016
    - 545 bytes
    - Viewed (0)
  4. src/encoding/base64/base64.go

    type Encoding struct {
    	encode    [64]byte   // mapping of symbol index to symbol byte value
    	decodeMap [256]uint8 // mapping of symbol byte value to symbol index
    	padChar   rune
    	strict    bool
    }
    
    const (
    	StdPadding rune = '=' // Standard padding character
    	NoPadding  rune = -1  // No padding
    )
    
    const (
    	decodeMapInitialize = "" +
    		"\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/http/dry-run-allow-and-deny-out2.yaml

    Yangmin Zhu <******@****.***> 1617651067 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 05 19:31:07 UTC 2021
    - 507 bytes
    - Viewed (0)
  6. pkg/proxy/util/linebuffer_test.go

    			}
    		})
    	}
    }
    
    // obtained from https://stackoverflow.com/a/22892986
    var letters = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
    
    func randSeq() string {
    	b := make([]rune, 30)
    	for i := range b {
    		b[i] = letters[rand.Intn(len(letters))]
    	}
    	return string(b)
    }
    
    func TestWriteCountLines(t *testing.T) {
    	testCases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 12:38:25 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdmethods/stdmethods.go

    	"ReadFrom":      {[]string{"=io.Reader"}, []string{"int64", "error"}},              // io.ReaderFrom
    	"ReadRune":      {[]string{}, []string{"rune", "int", "error"}},                    // io.RuneReader
    	"Scan":          {[]string{"=fmt.ScanState", "rune"}, []string{"error"}},           // fmt.Scanner
    	"Seek":          {[]string{"=int64", "int"}, []string{"int64", "error"}},           // io.Seeker
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. test/fixedbugs/issue7316.go

    package main
    
    import "fmt"
    
    const tpl = `
    func init() {
    	var i %s
    	j := %s(i)
    	_ = %s(j)
    }
    `
    
    func main() {
    	fmt.Println("package main")
    	ntypes := []string{
    		"byte", "rune", "uintptr",
    		"float32", "float64",
    		"int", "int8", "int16", "int32", "int64",
    		"uint", "uint8", "uint16", "uint32", "uint64",
    	}
    	for i, from := range ntypes {
    		for _, to := range ntypes[i:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 777 bytes
    - Viewed (0)
  9. tools/go-stress-test

    # * -stress.runs: exit successfully after this many runs. Default 1000.
    # * -stress.time: exit successfully after this much time has passed. Default 10s.
    
    set -u
    
    red='\e[0;31m'
    green='\e[0;32m'
    yellow='\e[0;33m'
    clr='\e[0m'
    
    binary="${1}"
    RUN="."
    COUNT=1
    RUNS=1000
    TIME=10s
    while [[ "$#" -gt 0 ]]; do
        case $1 in
            -test.v=true) VERBOSE=true ;;
            -test.run=*) RUN="${1#-test.run=}" ;;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 04 23:04:41 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  10. pkg/util/async/bounded_frequency_runner.go

    //
    // Examples:
    //
    // NewBoundedFrequencyRunner("name", fn, time.Second, 5*time.Second, 1)
    // - fn will have at least 1 second between runs
    // - fn will have no more than 5 seconds between runs
    //
    // NewBoundedFrequencyRunner("name", fn, 3*time.Second, 10*time.Second, 3)
    // - fn will have at least 3 seconds between runs, with up to 3 burst runs
    // - fn will have no more than 10 seconds between runs
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 9.4K bytes
    - Viewed (0)
Back to top