Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 365 for regexec (0.12 sec)

  1. src/html/template/js_test.go

    	tests := []struct {
    		jsCtx jsCtx
    		s     string
    	}{
    		// Statement terminators precede regexps.
    		{jsCtxRegexp, ";"},
    		// This is not airtight.
    		//     ({ valueOf: function () { return 1 } } / 2)
    		// is valid JavaScript but in practice, devs do not do this.
    		// A block followed by a statement starting with a RegExp is
    		// much more common:
    		//     while (x) {...} /foo/.test(x) || panic()
    		{jsCtxRegexp, "}"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/a.out.go

    	REG_MSR
    	REG_FPSCR
    	REG_CR
    
    	REG_SPECIAL = REG_CR0
    
    	REG_CRBIT0 = REG_CR0LT // An alias for a Condition Register bit 0
    
    	REG_SPR0 = obj.RBasePPC64 + 1024 // first of 1024 registers
    
    	REG_XER = REG_SPR0 + 1
    	REG_LR  = REG_SPR0 + 8
    	REG_CTR = REG_SPR0 + 9
    
    	REGZERO = REG_R0 /* set to zero */
    	REGSP   = REG_R1
    	REGSB   = REG_R2
    	REGRET  = REG_R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/binutils/disasm.go

    package binutils
    
    import (
    	"bytes"
    	"io"
    	"regexp"
    	"strconv"
    	"strings"
    
    	"github.com/google/pprof/internal/plugin"
    	"github.com/ianlancetaylor/demangle"
    )
    
    var (
    	nmOutputRE                = regexp.MustCompile(`^\s*([[:xdigit:]]+)\s+(.)\s+(.*)`)
    	objdumpAsmOutputRE        = regexp.MustCompile(`^\s*([[:xdigit:]]+):\s+(.*)`)
    	objdumpOutputFileLine     = regexp.MustCompile(`^;?\s?(.*):([0-9]+)`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-out.yaml

                          safeRegex:
                            regex: .*/ns/ns/.*
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/.*ns-suffix/.*
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/ns-prefix.*/.*
                    - authenticated:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. samples/addons/prometheus.yaml

          - role: endpoints
          relabel_configs:
          - action: keep
            regex: true
            source_labels:
            - __meta_kubernetes_service_annotation_prometheus_io_scrape
          - action: drop
            regex: true
            source_labels:
            - __meta_kubernetes_service_annotation_prometheus_io_scrape_slow
          - action: replace
            regex: (https?)
            source_labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-out.yaml

                                regex: .+
                - orIds:
                    ids:
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/ns/.*
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/ns-prefix-.*/.*
                    - authenticated:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    #  define EXPECT_DEBUG_DEATH(statement, regex) \
      GTEST_EXECUTE_STATEMENT_(statement, regex)
    
    #  define ASSERT_DEBUG_DEATH(statement, regex) \
      GTEST_EXECUTE_STATEMENT_(statement, regex)
    
    # else
    
    #  define EXPECT_DEBUG_DEATH(statement, regex) \
      EXPECT_DEATH(statement, regex)
    
    #  define ASSERT_DEBUG_DEATH(statement, regex) \
      ASSERT_DEATH(statement, regex)
    
    # endif  // NDEBUG for EXPECT_DEBUG_DEATH
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java

            clientFactory.close();
        }
    
        public void addIncludeFilter(final String regexp) {
            if (StringUtil.isNotBlank(regexp)) {
                urlFilter.addInclude(regexp);
            }
        }
    
        public void addExcludeFilter(final String regexp) {
            if (StringUtil.isNotBlank(regexp)) {
                urlFilter.addExclude(regexp);
            }
        }
    
        public void stop() {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. src/os/tempfile_test.go

    		}
    		defer Remove(name)
    
    		re := regexp.MustCompile(wantRePat)
    		if !re.MatchString(name) {
    			t.Errorf("MkdirTemp(%q, %q) created bad name\n\t%q\ndid not match pattern\n\t%q", dir, pattern, name, wantRePat)
    		}
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.pattern, func(t *testing.T) {
    			wantRePat := "^" + regexp.QuoteMeta(filepath.Join(dir, tt.wantPrefix)) + "[0-9]+" + regexp.QuoteMeta(tt.wantSuffix) + "$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:37 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. pkg/bootstrap/testdata/tracing_zipkin_golden.json

            "regex": "^mongo\\.(.+?)\\.(collection|cmd|cx_|op_|delays_|decoding_)(.*?)$"
          },
          {
            "regex": "(cache\\.(.+?)\\.)",
            "tag_name": "cache"
          },
          {
            "regex": "(component\\.(.+?)\\.)",
            "tag_name": "component"
          },
          {
            "regex": "(tag\\.(.+?);\\.)",
            "tag_name": "tag"
          },
          {
            "regex": "(wasm_filter\\.(.+?)\\.)",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top