Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 5,940 for stringAt (1.3 sec)

  1. src/io/multi_test.go

    package io_test
    
    import (
    	"bytes"
    	"crypto/sha1"
    	"errors"
    	"fmt"
    	. "io"
    	"runtime"
    	"strings"
    	"testing"
    	"time"
    )
    
    func TestMultiReader(t *testing.T) {
    	var mr Reader
    	var buf []byte
    	nread := 0
    	withFooBar := func(tests func()) {
    		r1 := strings.NewReader("foo ")
    		r2 := strings.NewReader("")
    		r3 := strings.NewReader("bar")
    		mr = MultiReader(r1, r2, r3)
    		buf = make([]byte, 20)
    		tests()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:32 UTC 2022
    - 10K bytes
    - Viewed (0)
  2. cmd/sts-errors.go

    // STSError structure
    type STSError struct {
    	Code           string
    	Description    string
    	HTTPStatusCode int
    }
    
    // STSErrorResponse - error response format
    type STSErrorResponse struct {
    	XMLName xml.Name `xml:"https://sts.amazonaws.com/doc/2011-06-15/ ErrorResponse" json:"-"`
    	Error   struct {
    		Type    string `xml:"Type"`
    		Code    string `xml:"Code"`
    		Message string `xml:"Message"`
    	} `xml:"Error"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. src/debug/dwarf/const.go

    	TagCallSite          Tag = 0x48
    	TagCallSiteParameter Tag = 0x49
    	TagSkeletonUnit      Tag = 0x4A
    	TagImmutableType     Tag = 0x4B
    )
    
    func (t Tag) GoString() string {
    	if t <= TagTemplateAlias {
    		return "dwarf.Tag" + t.String()
    	}
    	return "dwarf." + t.String()
    }
    
    // Location expression operators.
    // The debug info encodes value locations like 8(R3)
    // as a sequence of these op codes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. Makefile

    	@echo "Installing msgp" && go install -v github.com/tinylib/msgp@v1.1.10-0.20240227114326-6d6f813fff1b
    	@echo "Installing stringer" && go install -v golang.org/x/tools/cmd/stringer@latest
    
    crosscompile: ## cross compile minio
    	@(env bash $(PWD)/buildscripts/cross-compile.sh)
    
    verifiers: lint check-gen
    
    check-gen: ## check for updated autogenerated files
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

        }
    
        Macro macro(String name, IncludeType type, String value, List<?> args) {
            if (!args.empty) {
                return new MacroWithComplexExpression(name, type, value, args.collect { it instanceof Expression ? it : expression(it as String) })
            }
            return new MacroWithSimpleExpression(name, type, value)
        }
    
        MacroFunction macroFunction(String name, int parameters = 0, String value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  6. src/math/big/doc.go

    the first operand, named x:
    
    	func (x *Int) Sign() int
    
    Various methods support conversions between strings and corresponding
    numeric values, and vice versa: *[Int], *[Rat], and *[Float] values implement
    the Stringer interface for a (default) string representation of the value,
    but also provide SetString methods to initialize a value from a string in
    a variety of supported formats (see the respective SetString documentation).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. logger/sql.go

    	default:
    		return false
    	}
    }
    
    // ExplainSQL generate SQL string with given parameters, the generated SQL is expected to be used in logger, execute it might introduce a SQL injection vulnerability
    func ExplainSQL(sql string, numericPlaceholder *regexp.Regexp, escaper string, avars ...interface{}) string {
    	var (
    		convertParams func(interface{}, int)
    		vars          = make([]string, len(avars))
    	)
    
    	convertParams = func(v interface{}, idx int) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 21 08:00:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. docs/tr/docs/tutorial/query-params.md

    * Editör desteği (şüphesiz)
    * Veri "<abbr title="HTTP isteği ile birlikte gelen string'i Python verisine dönüştürme">ayrıştırma</abbr>"
    * Veri doğrulama
    * Otomatik dokümantasyon
    
    ## Varsayılanlar
    
    Sorgu parametreleri, adres yolunun sabit bir parçası olmadıklarından dolayı isteğe bağlı ve varsayılan değere sahip olabilirler.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. src/html/template/exec_test.go

    	Str fmt.Stringer
    	Err error
    	// Pointers
    	PI  *int
    	PS  *string
    	PSI *[]int
    	NIL *int
    	// Function (not method)
    	BinaryFunc      func(string, string) string
    	VariadicFunc    func(...string) string
    	VariadicFuncInt func(int, ...string) string
    	NilOKFunc       func(*int) bool
    	ErrFunc         func() (string, error)
    	PanicFunc       func() string
    	// Template to test evaluation of templates.
    	Tmpl *Template
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

    #include <algorithm>
    #include <iterator>
    #include <memory>
    #include <string>
    #include <tuple>
    #include <utility>
    #include <vector>
    
    #include "absl/algorithm/container.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/str_join.h"
    #include "absl/strings/string_view.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/ADT/StringSet.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top