Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 385 for m_regex (0.33 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. .idea/inspectionProfiles/idea_default.xml

        <inspection_tool class="JUnitTestClassNamingConvention" enabled="true" level="WARNING" enabled_by_default="true">
          <option name="m_regex" value="[A-Z][A-Za-z0-9]*Test" />
          <option name="m_minLength" value="8" />
          <option name="m_maxLength" value="64" />
        </inspection_tool>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 09 20:59:03 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerificationConfiguration.java

                result = 31 * result + (regex ? 1 : 0);
                result = 31 * result + (reason != null ? reason.hashCode() : 0);
                return result;
            }
    
            public int internalCompareTo(TrustCoordinates other) {
                int regexComparison = Boolean.compare(isRegex(), other.isRegex());
                if (regexComparison != 0) {
                    return regexComparison;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. operator/pkg/patch/patch_test.go

        - v3
        - v3_regex
        name: n2
      c:
    `,
    		},
    		{
    			desc: "DeleteListEntry",
    			path: `a.b.[name:n1]`,
    			want: `
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: istio-citadel
      namespace: istio-system
    a:
      b:
      - list:
        - v1
        - v2
        - v3_regex
        name: n2
      c:
    `,
    		},
    		{
    			desc: "DeleteListEntryValue",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 29 08:32:11 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  7. 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)
  8. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-out.yaml

                          safeRegex:
                            regex: .*/ns/ns/.*
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/.*ns-suffix/.*
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/ns-prefix.*/.*
                    - authenticated:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 11.1K 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. operator/pkg/tpath/tree_test.go

      - name: n1
        value: v1
      - name: n2
        list:
        - v1
        - v2
        - v3_regex
        - foo
    `,
    		},
    		{
    			desc:      "ModifyListEntryValue",
    			path:      `a.b.[name:n1].value`,
    			value:     `v2`,
    			wantFound: true,
    			want: `
    a:
      b:
      - name: n1
        value: v2
      - list:
        - v1
        - v2
        - v3_regex
        name: n2
    `,
    		},
    		{
    			desc:      "ModifyListEntryValueQuoted",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 15.6K bytes
    - Viewed (0)
Back to top