Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for regexec (0.3 sec)

  1. src/regexp/syntax/parse.go

    	numRegexp   int               // number of regexps allocated
    	numRunes    int               // number of runes in char classes
    	repeats     int64             // product of all repetitions seen
    	height      map[*Regexp]int   // regexp height, for height limit check
    	size        map[*Regexp]int64 // regexp compiled size, for size limit check
    }
    
    func (p *parser) newRegexp(op Op) *Regexp {
    	re := p.free
    	if re != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. fastapi/param_functions.py

            ),
        ] = None,
        pattern: Annotated[
            Optional[str],
            Doc(
                """
                RegEx pattern for strings.
                """
            ),
        ] = None,
        regex: Annotated[
            Optional[str],
            Doc(
                """
                RegEx pattern for strings.
                """
            ),
            deprecated(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  3. gradle/verification-metadata.xml

                <trusting group="^com[.]diffplug($|([.].*))" regex="true"/>
                <trusting group="^org[.]jetbrains($|([.].*))" regex="true"/>
                <trusting group="^org[.]rnorth($|([.].*))" regex="true"/>
             </trusted-key>
             <trusted-key id="8A10792983023D5D14C93B488D7F1BEC1E2ECAE7" group="^com[.]fasterxml($|([.].*))" regex="true"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    	}
    }
    
    // doGrepCount counts the number of times a regexp is seen in a buffer.
    func (tg *testgoData) doGrepCount(match string, b *bytes.Buffer) int {
    	tg.t.Helper()
    	if !tg.ran {
    		tg.t.Fatal("internal testsuite error: doGrepCount called before run")
    	}
    	re := regexp.MustCompile(match)
    	c := 0
    	for _, ln := range bytes.Split(b.Bytes(), []byte{'\n'}) {
    		if re.Match(ln) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. pkg/kubelet/server/server_test.go

    	}
    	return s, nil
    }
    
    func (fk *fakeKubelet) GetExec(_ context.Context, podFullName string, podUID types.UID, containerName string, cmd []string, streamOpts remotecommandserver.Options) (*url.URL, error) {
    	if fk.getExecCheck != nil {
    		fk.getExecCheck(podFullName, podUID, containerName, cmd, streamOpts)
    	}
    	// Always use testContainerID
    	resp, err := fk.streamingRuntime.GetExec(&runtimeapi.ExecRequest{
    		ContainerId: testContainerID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package describe
    
    import (
    	"context"
    	"encoding/json"
    	"fmt"
    	"io"
    	"regexp"
    	"sort"
    	"strconv"
    	"strings"
    
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		return remote.ErrContainerStatusNil
    	}
    	return m.ReadLogs(ctx, status.GetLogPath(), containerID.ID, logOptions, stdout, stderr)
    }
    
    // GetExec gets the endpoint the runtime will serve the exec request from.
    func (m *kubeGenericRuntimeManager) GetExec(ctx context.Context, id kubecontainer.ContainerID, cmd []string, stdin, stdout, stderr, tty bool) (*url.URL, error) {
    	req := &runtimeapi.ExecRequest{
    		ContainerId: id.ID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // <stddef.h>.
    # include <regex.h>  // NOLINT
    
    # define GTEST_USES_POSIX_RE 1
    
    #elif GTEST_OS_WINDOWS
    
    // <regex.h> is not available on Windows.  Use our own simple regex
    // implementation instead.
    # define GTEST_USES_SIMPLE_RE 1
    
    #else
    
    // <regex.h> may not be available on this platform.  Use our own
    // simple regex implementation instead.
    # define GTEST_USES_SIMPLE_RE 1
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route_test.go

    		{Match: &envoyroute.RouteMatch{PathSpecifier: &envoyroute.RouteMatch_SafeRegex{
    			SafeRegex: &matcher.RegexMatcher{
    				Regex: ".*?regex12",
    			},
    		}}},
    		{Match: &envoyroute.RouteMatch{
    			PathSpecifier: &envoyroute.RouteMatch_SafeRegex{
    				SafeRegex: &matcher.RegexMatcher{
    					Regex: "*",
    				},
    			},
    			Headers: []*envoyroute.HeaderMatcher{
    				{
    					Name: "foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  10. src/testing/testing.go

    	matchList = flag.String("test.list", "", "list tests, examples, and benchmarks matching `regexp` then exit")
    	match = flag.String("test.run", "", "run only tests and examples matching `regexp`")
    	skip = flag.String("test.skip", "", "do not list or run tests matching `regexp`")
    	memProfile = flag.String("test.memprofile", "", "write an allocation profile to `file`")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top