Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 963 for m_regex (0.13 sec)

  1. .idea/inspectionProfiles/Gradle.xml

          <extension name="InstanceMethodNamingConvention" enabled="true">
            <option name="m_regex" value="[a-z][A-Za-z\d]*" />
            <option name="m_minLength" value="2" />
            <option name="m_maxLength" value="999" />
          </extension>
          <extension name="StaticMethodNamingConvention" enabled="true">
            <option name="m_regex" value="[a-z][A-Za-z\d]*" />
            <option name="m_minLength" value="2" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsValidator.java

    import org.apache.maven.api.settings.Settings;
    
    /**
     */
    public class DefaultSettingsValidator {
    
        private static final String ID = "[\\w.-]+";
        private static final Pattern ID_REGEX = Pattern.compile(ID);
    
        private static final String ILLEGAL_REPO_ID_CHARS = "\\/:\"<>|?*"; // ILLEGAL_FS_CHARS
    
        public void validate(Settings settings, boolean isProjectSettings, List<BuilderProblem> problems) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. okhttp-logging-interceptor/src/test/java/okhttp3/logging/LoggingEventListenerTest.kt

          .assertLogMatch(Regex("""callStart: Request\{method=POST, url=$url\}"""))
          .assertLogMatch(Regex("""proxySelectStart: $url"""))
          .assertLogMatch(Regex("""proxySelectEnd: \[DIRECT]"""))
          .assertLogMatch(Regex("""dnsStart: ${url.host}"""))
          .assertLogMatch(Regex("""dnsEnd: \[.+]"""))
          .assertLogMatch(Regex("""connectStart: ${url.host}/.+ DIRECT"""))
          .assertLogMatch(Regex("""connectEnd: http/1.1"""))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/builder/testdata/http/extended-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: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriter.java

            writeNullableAttribute(VERSION, trustedArtifact.getVersion());
            writeNullableAttribute(FILE, trustedArtifact.getFileName());
            if (trustedArtifact.isRegex()) {
                writeAttribute(REGEX, "true");
            }
            writeNullableAttribute(REASON, trustedArtifact.getReason());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. 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)
Back to top