- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 447 for regexp (0.04 sec)
-
cni/pkg/nodeagent/podcgroupns.go
} /// mostly copy pasted from spire below: // regexes listed here have to exclusively match a cgroup path // the regexes must include two named groups "poduid" and "containerid" // if the regex needs to exclude certain substrings, the "mustnotmatch" group can be used // nolint: lll var cgroupREs = []*regexp.Regexp{ // the regex used to parse out the pod UID and container ID from a
Registered: 2024-11-06 22:53 - Last Modified: 2024-04-12 21:47 - 11K bytes - Viewed (0) -
src/main/webapp/css/admin/respond.min.js
atch(c.regex.only)&&RegExp.$2||"all",rules:m.length-1,hasquery:k.indexOf("(")>-1,minw:k.match(c.regex.minw)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:k.match(c.regex.maxw)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}u()},w=function(){if(d.length){var b=d.shift();f(b.href,function(c){v(c,b.href,b.media),o[b.href]=!0,a.setTimeout(function(){w()},0)})}},x=function(){for(var b=0;b<s.length;b++){var c=s[b],e=c.href,f=c.media,g=c.rel&&"stylesheet"===c.rel.toLowerCase();e&&g&&!o[e]&&(c.styleSheet&&c.sty...
Registered: 2024-10-31 13:40 - Last Modified: 2015-10-08 12:14 - 4.3K bytes - Viewed (0) -
misc/go_android_exec/exitcode_test.go
t.Errorf("want output %q, got %q", want, got) } if want := 1; want != code { t.Errorf("want exit code %d, got %d", want, code) } } func TestExitCodeMissing(t *testing.T) { var wantErr *regexp.Regexp check := func(text string) { t.Helper() var out strings.Builder f, exitStr := newExitCodeFilter(&out) if want := "exitcode="; want != exitStr {
Registered: 2024-11-05 11:13 - Last Modified: 2023-05-03 14:54 - 2.1K bytes - Viewed (0) -
istioctl/pkg/dashboard/dashboard_test.go
WantException: false, }, { // case 4 Args: strings.Split("envoy --browser=false", " "), ExpectedRegexp: regexp.MustCompile(".*Error: specify a pod or --selector"), WantException: true, }, { // case 5 Args: strings.Split("envoy --browser=false pod-123456-7890", " "), ExpectedRegexp: regexp.MustCompile("http://localhost:3456"), WantException: false,
Registered: 2024-11-06 22:53 - Last Modified: 2023-11-21 01:17 - 4.3K bytes - Viewed (0) -
logger/sql_test.go
Registered: 2024-11-03 09:35 - Last Modified: 2024-03-21 08:00 - 8.4K bytes - Viewed (0) -
tests/table_test.go
if !regexp.MustCompile("SELECT \\* FROM `user`").MatchString(r.Statement.SQL.String()) { t.Errorf("Table with escape character, got %v", r.Statement.SQL.String()) } r = dryDB.Table("user as u").Select("name").Find(&User{}).Statement if !regexp.MustCompile("SELECT .name. FROM user as u WHERE .u.\\..deleted_at. IS NULL").MatchString(r.Statement.SQL.String()) {
Registered: 2024-11-03 09:35 - Last Modified: 2024-03-09 09:31 - 10.6K bytes - Viewed (0) -
tests/sql_builder_test.go
sql := DB.Dialector.Explain(stmt.SQL.String(), stmt.Vars...) if !regexp.MustCompile(`.*age.*=8,`).MatchString(sql) { t.Errorf("Failed to generate sql, got %v", sql) } stmt = dryRunDB.Model(&user).Where("id = ?", 1).Updates(map[string]interface{}{"age": ageUint64(10241024)}).Statement sql = DB.Dialector.Explain(stmt.SQL.String(), stmt.Vars...) if !regexp.MustCompile(`.*age.*=10241024,`).MatchString(sql) {
Registered: 2024-11-03 09:35 - Last Modified: 2024-01-12 08:42 - 16.7K bytes - Viewed (0) -
docs/debugging/pprofgoparser/main.go
Registered: 2024-11-03 19:28 - Last Modified: 2024-03-06 11:43 - 3.4K bytes - Viewed (0) -
istioctl/pkg/validate/validate_test.go
Registered: 2024-11-06 22:53 - Last Modified: 2024-08-02 16:18 - 21.4K bytes - Viewed (0) -
tests/query_test.go
if !regexp.MustCompile("SELECT .*id.*name.*updated_at.*created_at.* FROM .*users").MatchString(result.Statement.SQL.String()) { t.Fatalf("SQL should include selected names, but got %v", result.Statement.SQL.String()) } result = DB.Session(&gorm.Session{DryRun: true}).Model(&User{}).Find(&User{}, user.ID)
Registered: 2024-11-03 09:35 - Last Modified: 2024-06-24 09:42 - 50.4K bytes - Viewed (0)