Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 406 for regexec (0.29 sec)

  1. src/regexp/testdata/testregex.c

    				goto compile;
    			}
    
    #if _REG_nexec
    		execute:
    			if (nexec >= 0)
    				fun = "regnexec";
    			else
    #endif
    				fun = "regexec";
    			
    			for (i = 0; i < elementsof(match); i++)
    				match[i] = state.NOMATCH;
    
    #if _REG_nexec
    			if (nexec >= 0)
    			{
    				eret = regnexec(&preg, s, nexec, nmatch, match, eflags);
    				s[nexec] = 0;
    			}
    			else
    #endif
    			{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  2. src/regexp/exec_test.go

    //
    //	strings
    //	"abc"
    //	"123x"
    //	regexps
    //	"[a-z]+"
    //	0-3;0-3
    //	-;-
    //	"([0-9])([0-9])([0-9])"
    //	-;-
    //	-;0-3 0-1 1-2 2-3
    //
    // The stanza begins by defining a set of strings, quoted
    // using Go double-quote syntax, one per line. Then the
    // regexps section gives a sequence of regexps to run on
    // the strings. In the block that follows a regexp, each line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/library/regex.go

    //	"123 abc 456".findAll('[0-9]*', 1) // returns ['123']
    //	"123 abc 456".findAll('xyz') // returns []
    func Regex() cel.EnvOption {
    	return cel.Lib(regexLib)
    }
    
    var regexLib = &regex{}
    
    type regex struct{}
    
    func (*regex) LibraryName() string {
    	return "k8s.regex"
    }
    
    var regexLibraryDecls = map[string][]cel.FunctionOpt{
    	"find": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/ingress/testdata/simple.yaml

                  number: 4202
          # Regex ending with .*
          - path: /regex1.*
            backend:
              service:
                name: service1
                port:
                  number: 4203
          # Regex ending with *
          - path: /regex2*
            backend:
              service:
                name: service1
                port:
                  number: 4204
          # Regex ending with /*
          - path: /regex3/*
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/server/filters/cors_test.go

    	}
    	if regexes[0].MatchString("Something that doesn't endsWithMe.") {
    		t.Errorf("Wrong regex returned: '%v': %v", uncompiledRegexes[0], regexes[0])
    	}
    	if !regexes[1].MatchString("startingWithMe is very important") {
    		t.Errorf("Wrong regex returned: '%v': %v", uncompiledRegexes[1], regexes[1])
    	}
    	if regexes[1].MatchString("not startingWithMe should fail") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 20 19:15:51 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. src/regexp/testdata/re2-search.txt

    "hello\ngoodbye\n"
    regexps
    "h.*o"
    -;-;-;-
    -;0-5;-;0-5
    "^(?:h.*o)$"
    -;-;-;-
    -;-;-;-
    "^(?:h.*o)"
    -;-;-;-
    -;0-5;-;0-5
    "(?:h.*o)$"
    -;-;-;-
    -;-;-;-
    strings
    ""
    "goodbye\nhello\n"
    regexps
    "h.*o"
    -;-;-;-
    -;8-13;-;8-13
    "^(?:h.*o)$"
    -;-;-;-
    -;-;-;-
    "^(?:h.*o)"
    -;-;-;-
    -;-;-;-
    "(?:h.*o)$"
    -;-;-;-
    -;-;-;-
    strings
    ""
    "hello world"
    regexps
    "h.*o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 42.4K bytes
    - Viewed (0)
  8. 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)
  9. src/internal/profile/filter.go

    		im = im || ignored
    		if focused && !ignored {
    			samples = append(samples, s)
    		}
    	}
    	p.Sample = samples
    	return
    }
    
    // focusedSample checks a sample against focus and ignore regexps.
    // Returns whether the focus/ignore regexps match any tags.
    func focusedSample(s *Sample, focus, ignore TagMatch) (fm, im bool) {
    	fm = focus == nil
    	for key, vals := range s.Label {
    		for _, val := range vals {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. cmd/dependencycheck/dependencycheck.go

    		log.Fatalf("Must specify restricted regex pattern")
    	}
    	depsPattern, err := regexp.Compile(*restrict)
    	if err != nil {
    		log.Fatalf("Error compiling restricted dependencies regex: %v", err)
    	}
    	var excludePattern *regexp.Regexp
    	if *exclude != "" {
    		excludePattern, err = regexp.Compile(*exclude)
    		if err != nil {
    			log.Fatalf("Error compiling excluded package regex: %v", err)
    		}
    	}
    	b, err := os.ReadFile(args[0])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 3K bytes
    - Viewed (0)
Back to top