Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 365 for regexec (0.14 sec)

  1. 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)
  2. 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)
  3. src/runtime/debuglog_test.go

    package runtime_test
    
    import (
    	"fmt"
    	"internal/testenv"
    	"regexp"
    	"runtime"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    )
    
    func skipDebugLog(t *testing.T) {
    	if !runtime.DlogEnabled {
    		t.Skip("debug log disabled (rebuild with -tags debuglog)")
    	}
    }
    
    func dlogCanonicalize(x string) string {
    	begin := regexp.MustCompile(`(?m)^>> begin log \d+ <<\n`)
    	x = begin.ReplaceAllString(x, "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 16:59:26 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptor.java

            checkNotNull(groupRegex, "Group regex cannot be null");
            checkNotNull(moduleNameRegex, "Module name regex cannot be null");
            checkNotNull(versionRegex, "Version regex cannot be null");
            addInclude(groupRegex, moduleNameRegex, versionRegex, MatcherKind.REGEX);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  5. fastapi/params.py

                        "strict": strict,
                        "json_schema_extra": current_json_schema_extra,
                    }
                )
                kwargs["pattern"] = pattern or regex
            else:
                kwargs["regex"] = pattern or regex
                kwargs.update(**current_json_schema_extra)
            use_kwargs = {k: v for k, v in kwargs.items() if v is not _Unset}
    
            super().__init__(**use_kwargs)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/http/extended-td-aliases-source-principal-out.yaml

                          safeRegex:
                            regex: .*/ns/istio-system/.*
                - orIds:
                    ids:
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .+
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: spiffe://.*/ns/foo/sa/all-td
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. pkg/kubelet/volume_host.go

    	return kvh.kubelet.nodeName
    }
    
    func (kvh *kubeletVolumeHost) GetEventRecorder() record.EventRecorder {
    	return kvh.kubelet.recorder
    }
    
    func (kvh *kubeletVolumeHost) GetExec(pluginName string) utilexec.Interface {
    	return kvh.exec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    signals=$(
    	echo '#include <signal.h>' | $CC -x c - -E -dM $ccflags |
    	awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print $2 }' |
    	grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT' |
    	sort
    )
    
    # Again, writing regexps to a file.
    echo '#include <errno.h>' | $CC -x c - -E -dM $ccflags |
    	awk '$1=="#define" && $2 ~ /^E[A-Z0-9_]+$/ { print "^\t" $2 "[ \t]*=" }' |
    	sort >_error.grep
    echo '#include <signal.h>' | $CC -x c - -E -dM $ccflags |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (2)
  9. istioctl/pkg/kubeinject/kubeinject_test.go

    // limitations under the License.
    package kubeinject
    
    import (
    	"fmt"
    	"regexp"
    	"strings"
    	"testing"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/util/testutil"
    )
    
    func TestKubeInject(t *testing.T) {
    	cases := []testutil.TestCase{
    		{ // case 0
    			Args:           []string{},
    			ExpectedRegexp: regexp.MustCompile(`filename not specified \(see --filename or -f\)`),
    			WantException:  true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. pkg/config/validation/virtualservice_test.go

    		{name: "regex without headers match ?", route: &networking.HTTPRoute{
    			Redirect: &networking.HTTPRedirect{
    				Uri:       "/",
    				Authority: "foo.biz",
    			},
    			Match: []*networking.HTTPMatchRequest{{
    				WithoutHeaders: map[string]*networking.StringMatch{
    					"header": {
    						MatchType: &networking.StringMatch_Regex{Regex: "?"},
    					},
    				},
    			}},
    		}, valid: false},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top