Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 145 for Trune (0.08 sec)

  1. .github/workflows/multipart/migrate.sh

    	docker-compose -f docker-compose-site2.yaml rm -s -f || true
    	for volume in $(docker volume ls -q | grep minio); do
    		docker volume rm ${volume} || true
    	done
    
    	docker system prune -f || true
    	docker volume prune -f || true
    	docker volume rm $(docker volume ls -q -f dangling=true) || true
    }
    
    cleanup
    
    if [ ! -f ./mc ]; then
    	wget --quiet -O mc https://dl.minio.io/client/mc/release/linux-amd64/mc &&
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/strconv/example_test.go

    }
    
    func ExampleAppendQuoteRune() {
    	b := []byte("rune:")
    	b = strconv.AppendQuoteRune(b, '☺')
    	fmt.Println(string(b))
    
    	// Output:
    	// rune:'☺'
    }
    
    func ExampleAppendQuoteRuneToASCII() {
    	b := []byte("rune (ascii):")
    	b = strconv.AppendQuoteRuneToASCII(b, '☺')
    	fmt.Println(string(b))
    
    	// Output:
    	// rune (ascii):'\u263a'
    }
    
    func ExampleAppendQuoteToASCII() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 22:57:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. pkg/util/filesystem/util_windows_test.go

    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    )
    
    func TestIsUnixDomainSocketPipe(t *testing.T) {
    	generatePipeName := func(suffixLen int) string {
    		letter := []rune("abcdef0123456789")
    		b := make([]rune, suffixLen)
    		for i := range b {
    			b[i] = letter[rand.Intn(len(letter))]
    		}
    		return "\\\\.\\pipe\\test-pipe" + string(b)
    	}
    	testFile := generatePipeName(4)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:10:26 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. test/fixedbugs/issue65957.dir/main.go

    // Copyright 2024 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
    
    import (
    	"./a"
    	"reflect"
    )
    
    var s = []rune{0, 1, 2, 3}
    
    func main() {
    	m := map[any]int{}
    	k := reflect.New(reflect.ArrayOf(4, reflect.TypeOf(int32(0)))).Elem().Interface()
    	m[k] = 1
    	a.F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 05:32:14 UTC 2024
    - 368 bytes
    - Viewed (0)
  5. hack/update-yamlfmt.sh

      find . -not \( \
          \( \
            -wholename './.git' \
            -o -wholename './_output' \
            -o -wholename './release' \
            -o -wholename './target' \
            -o -wholename '*/vendor/*' \
          \) -prune \
        \) -name 'OWNERS*'
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/defers/defers.go

    		case *ast.CallExpr:
    			if analysisutil.IsFunctionNamed(typeutil.StaticCallee(pass.TypesInfo, v), "time", "Since") {
    				pass.Reportf(v.Pos(), "call to time.Since is not deferred")
    			}
    		case *ast.FuncLit:
    			return false // prune
    		}
    		return true
    	}
    
    	inspect := pass.ResultOf[inspect.Analyzer].(*inspector.Inspector)
    
    	nodeFilter := []ast.Node{
    		(*ast.DeferStmt)(nil),
    	}
    
    	inspect.Preorder(nodeFilter, func(n ast.Node) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_cl.cc

        llvm::cl::init(""));
    
    // TODO(b/134792656): If pruning is moved into TF dialect as a pass
    // we should remove this.
    // NOLINTNEXTLINE
    opt<bool> prune_unused_nodes(
        "tf-prune-unused-nodes",
        llvm::cl::desc("Prune unused nodes in the input graphdef"),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> convert_legacy_fed_inputs(
        "tf-convert-legacy-fed-inputs",
        llvm::cl::desc(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 10 20:59:50 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/list.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package markdown
    
    import (
    	"bytes"
    	"fmt"
    	"strings"
    )
    
    type List struct {
    	Position
    	Bullet rune
    	Start  int
    	Loose  bool
    	Items  []Block // always *Item
    }
    
    type Item struct {
    	Position
    	Blocks []Block
    	width  int
    }
    
    func (b *List) PrintHTML(buf *bytes.Buffer) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. 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) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 12:38:25 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. hack/verify-gofmt.sh

            -o -wholename './target' \
            -o -wholename '*/third_party/*' \
            -o -wholename '*/vendor/*' \
            -o -wholename '*/testdata/*' \
            -o -wholename '*/bindata.go' \
          \) -prune \
        \) -name '*.go'
    }
    
    # gofmt exits with non-zero exit code if it finds a problem unrelated to
    # formatting (e.g., a file does not parse correctly). Without "|| true" this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top