Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 536 for NegExp (0.6 sec)

  1. src/strconv/ftoa_test.go

    	name    string
    	float   float64
    	fmt     byte
    	prec    int
    	bitSize int
    }{
    	{"Decimal", 33909, 'g', -1, 64},
    	{"Float", 339.7784, 'g', -1, 64},
    	{"Exp", -5.09e75, 'g', -1, 64},
    	{"NegExp", -5.11e-95, 'g', -1, 64},
    	{"LongExp", 1.234567890123456e-78, 'g', -1, 64},
    
    	{"Big", 123456789123456789123456789, 'g', -1, 64},
    	{"BinaryExp", -1, 'b', -1, 64},
    
    	{"32Integer", 33909, 'g', -1, 32},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 24 23:50:20 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  2. src/regexp/regexp.go

    	} else {
    		regexp.prefix, regexp.prefixComplete, regexp.prefixEnd = onePassPrefix(prog)
    	}
    	if regexp.prefix != "" {
    		// TODO(rsc): Remove this allocation by adding
    		// IndexString to package bytes.
    		regexp.prefixBytes = []byte(regexp.prefix)
    		regexp.prefixRune, _ = utf8.DecodeRuneInString(regexp.prefix)
    	}
    
    	n := len(prog.Inst)
    	i := 0
    	for matchSize[i] != 0 && matchSize[i] < n {
    		i++
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  3. src/regexp/syntax/regexp.go

    package syntax
    
    // Note to implementers:
    // In this package, re is always a *Regexp and r is always a rune.
    
    import (
    	"slices"
    	"strconv"
    	"strings"
    	"unicode"
    )
    
    // A Regexp is a node in a regular expression syntax tree.
    type Regexp struct {
    	Op       Op // operator
    	Flags    Flags
    	Sub      []*Regexp  // subexpressions, if any
    	Sub0     [1]*Regexp // storage for short Sub
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/internal/lazyregexp/lazyre.go

    // Package lazyregexp is a thin wrapper over regexp, allowing the use of global
    // regexp variables without forcing them to be compiled at init.
    package lazyregexp
    
    import (
    	"os"
    	"regexp"
    	"strings"
    	"sync"
    )
    
    // Regexp is a wrapper around [regexp.Regexp], where the underlying regexp will be
    // compiled the first time it is needed.
    type Regexp struct {
    	str  string
    	once sync.Once
    	rx   *regexp.Regexp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/internal/lazyregexp/lazyre.go

    // Package lazyregexp is a thin wrapper over regexp, allowing the use of global
    // regexp variables without forcing them to be compiled at init.
    package lazyregexp
    
    import (
    	"os"
    	"regexp"
    	"strings"
    	"sync"
    )
    
    // Regexp is a wrapper around regexp.Regexp, where the underlying regexp will be
    // compiled the first time it is needed.
    type Regexp struct {
    	str  string
    	once sync.Once
    	rx   *regexp.Regexp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 27 23:49:01 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  6. src/regexp/example_test.go

    	fmt.Println(matched, err)
    	matched, err = regexp.MatchString(`bar.*`, "seafood")
    	fmt.Println(matched, err)
    	matched, err = regexp.MatchString(`a(b`, "seafood")
    	fmt.Println(matched, err)
    	// Output:
    	// true <nil>
    	// false <nil>
    	// false error parsing regexp: missing closing ): `a(b`
    }
    
    func ExampleQuoteMeta() {
    	fmt.Println(regexp.QuoteMeta(`Escaping symbols like: .+*?()|[]{}^$`))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/cors.go

    }
    
    // Takes a list of strings and compiles them into a list of regular expressions
    func compileRegexps(regexpStrings []string) ([]*regexp.Regexp, error) {
    	regexps := []*regexp.Regexp{}
    	for _, regexpStr := range regexpStrings {
    		r, err := regexp.Compile(regexpStr)
    		if err != nil {
    			return []*regexp.Regexp{}, err
    		}
    		regexps = append(regexps, r)
    	}
    	return regexps, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 15 13:59:10 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  8. pkg/test/echo/parse.go

    	hostFieldRegex           = regexp.MustCompile(string(HostField) + "=(.*)")
    	hostnameFieldRegex       = regexp.MustCompile(string(HostnameField) + "=(.*)")
    	requestHeaderFieldRegex  = regexp.MustCompile(string(RequestHeaderField) + "=(.*)")
    	responseHeaderFieldRegex = regexp.MustCompile(string(ResponseHeaderField) + "=(.*)")
    	URLFieldRegex            = regexp.MustCompile(string(URLField) + "=(.*)")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 22:25:46 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  9. src/internal/profile/prune.go

    	var keep, drop *regexp.Regexp
    	var err error
    
    	if p.DropFrames != "" {
    		if drop, err = regexp.Compile("^(" + p.DropFrames + ")$"); err != nil {
    			return fmt.Errorf("failed to compile regexp %s: %v", p.DropFrames, err)
    		}
    		if p.KeepFrames != "" {
    			if keep, err = regexp.Compile("^(" + p.KeepFrames + ")$"); err != nil {
    				return fmt.Errorf("failed to compile regexp %s: %v", p.KeepFrames, err)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/profile/prune.go

    package profile
    
    import (
    	"fmt"
    	"regexp"
    	"strings"
    )
    
    var (
    	reservedNames = []string{"(anonymous namespace)", "operator()"}
    	bracketRx     = func() *regexp.Regexp {
    		var quotedNames []string
    		for _, name := range append(reservedNames, "(") {
    			quotedNames = append(quotedNames, regexp.QuoteMeta(name))
    		}
    		return regexp.MustCompile(strings.Join(quotedNames, "|"))
    	}()
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
Back to top