Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 255 for regexec (0.21 sec)

  1. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetector.java

            File tmpDir = temporaryFileProvider.createTemporaryDirectory("jvm", "probe");
            File probe = writeProbeClass(tmpDir);
            ExecHandleBuilder exec = execHandleFactory.newExec();
            exec.setWorkingDir(probe.getParentFile());
            exec.executable(javaExecutable(jdkPath));
            try {
                ByteArrayOutputStream out = new ByteArrayOutputStream();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 02:32:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java

            }
        }
    
        public void addClient(final String regex, final CrawlerClient client) {
            if (StringUtil.isBlank(regex)) {
                throw new CrawlerSystemException("A regular expression is null.");
            }
            if (client == null) {
                throw new CrawlerSystemException("CrawlerClient is null.");
            }
            clientMap.put(Pattern.compile(regex), client);
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. pkg/bootstrap/testdata/stats_compression_gzip_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
    - 17.3K bytes
    - Viewed (0)
Back to top