Home
last modified time | relevance | path

Searched refs:tagMatcher (Results 1 – 8 of 8) sorted by relevance

/dports/devel/awless/awless-0.1.11/cloud/match/
H A Dmatchers.go115 type tagMatcher struct { struct
119 func (m tagMatcher) Match(r cloud.Resource) bool { argument
132 func Tag(key, val string) tagMatcher {
133 return tagMatcher{key: key, value: val}
/dports/sysutils/kubectl/kubernetes-1.22.2/cmd/kubeadm/app/util/image/
H A Dimage.go28tagMatcher = regexp.MustCompile(`^(?U:.*)(?::([[:word:]][[:word:].-]*))?(?:@sha256:[a-fA-F0-9]{64}… var
33 matches := tagMatcher.FindStringSubmatch(image)
/dports/security/py-python-openid/python-openid-2.2.5/openid/consumer/
H A Dhtml_parse.py126 def tagMatcher(tag_name, *close_tags):
137 html_find = tagMatcher('html')
138 head_find = tagMatcher('head', 'body')
/dports/security/py-python3-openid/python3-openid-3.2.0/openid/consumer/
H A Dhtml_parse.py127 def tagMatcher(tag_name, *close_tags): function
139 html_find = tagMatcher('html')
140 head_find = tagMatcher('head', 'body')
/dports/audio/ampache/ampache-php74-5.0.0/vendor/openid/php-openid/Auth/OpenID/
H A DParse.php144 function tagMatcher($tag_name, $close_tags = null) function in Auth_OpenID_Parse
197 return $this->tagMatcher('head', ['body', 'html']);
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/openid/php-openid/Auth/OpenID/
H A DParse.php140 function tagMatcher($tag_name, $close_tags = null) function in Auth_OpenID_Parse
193 return $this->tagMatcher('head', array('body', 'html'));
/dports/devel/eric6/eric6-21.11/eric/eric6/ThirdParty/Jasy/jasy/script/api/
H A DComment.py36 tagMatcher = re.compile(r"#([a-zA-Z][a-zA-Z0-9]+)(\((\S+)\))?(\s|$)") variable
568 return tagMatcher.sub(collectTags, text)
/dports/audio/amarok/amarok-3e11ccdd1417e70486eaaa84d8475182eec44c20/src/context/applets/wikipedia/plugin/
H A DWikipediaEngine.cpp666 const QStringMatcher tagMatcher( tagStart ); in wikiParse() local
667 while( ( matchIndex = tagMatcher.indexIn( wiki, matchIndex ) ) != -1 ) in wikiParse()