Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 735 for m_regex (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/library/regex.go

    //	"123 abc 456".findAll('[0-9]*', 1) // returns ['123']
    //	"123 abc 456".findAll('xyz') // returns []
    func Regex() cel.EnvOption {
    	return cel.Lib(regexLib)
    }
    
    var regexLib = &regex{}
    
    type regex struct{}
    
    func (*regex) LibraryName() string {
    	return "k8s.regex"
    }
    
    var regexLibraryDecls = map[string][]cel.FunctionOpt{
    	"find": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. tests/testdata/config/rule-regex-route.yaml

    kind: DestinationRule
    metadata:
      name: regex
      namespace: testns
    spec:
      host: regex.extsvc.com
      subsets:
        - name: v1
          labels:
            version: v1
        - name: v2
          labels:
            version: v2
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: regex-route
      namespace: testns
    spec:
      hosts:
        - regex.extsvc.com
      http:
        - match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 28 21:38:06 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputs.kt

            } else {
                paths.split(PATHS_SEPARATOR).joinToString("|") {
                    wildcardsToRegexPatternString(normalizeFilePattern(it))
                }.toRegex(if (!isCaseSensitive) EnumSet.of(RegexOption.IGNORE_CASE) else emptySet())
            }
    
        private
        companion object {
            const val PATHS_SEPARATOR = ";"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/transforms/tac_filter.cc

          filtered_ops.push_back(func);
        }
        return;
      }
    
      llvm::Regex op_regex(tac_filter.op_filter().op_name_pattern());
      module.walk([&](Operation* op) {
        auto named_loc = mlir::dyn_cast<NameLoc>(op->getLoc());
        if (!named_loc) {
          return;
        }
        if (!op_regex.match(named_loc.getName())) {
          return;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. maven-settings-builder/src/main/java/org/apache/maven/settings/validation/DefaultSettingsValidator.java

    /**
     */
    @Named
    @Singleton
    public class DefaultSettingsValidator implements SettingsValidator {
    
        private static final String ID = "[\\w.-]+";
        private static final Pattern ID_REGEX = Pattern.compile(ID);
    
        private final SettingsBuilder settingsBuilder;
    
        @Inject
        public DefaultSettingsValidator(SettingsBuilder settingsBuilder) {
            this.settingsBuilder = settingsBuilder;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. build-logic/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

                        .replace("\"sha1\":\\s+\"\\w+\"".toRegex(), "\"sha1\": \"\"")
                        .replace("\"sha256\":\\s+\"\\w+\"".toRegex(), "\"sha256\": \"\"")
                        .replace("\"md5\":\\s+\"\\w+\"".toRegex(), "\"md5\": \"\"")
                    it.writeText(content)
                }
            }
        }
    
        // For local consumption by tests
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. build-logic/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts

                    .replace("\"sha1\":\\s+\"\\w+\"".toRegex(), "\"sha1\": \"\"")
                    .replace("\"sha256\":\\s+\"\\w+\"".toRegex(), "\"sha256\": \"\"")
                    .replace("\"md5\":\\s+\"\\w+\"".toRegex(), "\"md5\": \"\"")
                it.writeText(content)
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/builder/testdata/http/allow-host-before-111-out.yaml

                        safeRegexMatch:
                          regex: (?i)example\.com
                    - header:
                        name: :authority
                        safeRegexMatch:
                          regex: (?i)prefix\.example\..*
                    - header:
                        name: :authority
                        safeRegexMatch:
                          regex: (?i).*\.example\.com
                    - header:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 18 00:14:10 UTC 2023
    - 1.6K 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. pilot/pkg/security/authz/builder/testdata/http/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: Tue Oct 17 16:35:46 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top