Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for regex (0.17 sec)

  1. build-logic-commons/code-quality-rules/src/main/resources/codenarc/codenarc-integtests.xml

                <property name='regex' value='^[A-Z][\$a-zA-Z0-9]*$'/>
            </rule-config>
            <rule-config name='FieldName'>
                <property name='finalRegex' value='^[a-z][a-zA-Z0-9]*$'/>
                <property name='staticFinalRegex' value='^logger$|^[A-Z][A-Z_0-9]*$|^serialVersionUID$'/>
            </rule-config>
            <rule-config name='MethodName'>
                <property name='regex' value='^[a-z][\$_a-zA-Z0-9]*$|^.*\s.*$'/>
    XML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  2. src/main/resources/crawler/transformer.xml

    		<property name="propertyMap">defaultPropertyMap</property>
    		<property name="childUrlRuleMap">htmlUrlRuleMap</property>
    		<!--
    		<property name="invalidUrlPattern">@java.util.regex.Pattern@compile("^\\s*javascript:|^\\s*mailto:|^\\s*irc:|^\\s*skype:|^\\s*callto:",@java.util.regex.Pattern@CASE_INSENSITIVE)</property>
    		 -->
    		<property name="convertUrlMap">
    			{"feed:" : "http:"}
    		</property>
    		<!-- segment -->
    		<postConstruct name="addFieldRule">
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Jan 10 03:35:10 GMT 2019
    - 1.6K bytes
    - Viewed (0)
  3. build-logic-commons/code-quality-rules/src/main/resources/codenarc/codenarc.xml

                <property name='regex' value='^[A-Z][\$a-zA-Z0-9]*$'/>
            </rule-config>
            <rule-config name='FieldName'>
                <property name='finalRegex' value='^[a-z][a-zA-Z0-9]*$'/>
                <property name='staticFinalRegex' value='^logger$|^[A-Z][A-Z_0-9]*$|^serialVersionUID$'/>
            </rule-config>
            <rule-config name='MethodName'>
                <property name='regex' value='^[a-z][\$_a-zA-Z0-9]*$|^.*\s.*$'/>
    XML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  4. .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" />
    XML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Apr 11 13:39:08 GMT 2024
    - 13K bytes
    - Viewed (0)
  5. android/pom.xml

                  <exclude>%regex[.*PackageSanityTests.*.class]</exclude>
                  <!-- FeatureUtilTest.*ExampleDerivedInterfaceTester, com.google.common.io.*Tester, incidentally FeatureSpecificTestSuiteBuilderTest.MyAbstractTester (but we don't care either way because it's not meant to run on its own but works OK if it does)... but not NullPointerTesterTest, etc. -->
                  <exclude>%regex[.*Tester.class]</exclude>
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Mar 12 20:26:18 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  6. apache-maven/src/assembly/src.xml

        <format>tar.gz</format>
      </formats>
      <fileSets>
        <fileSet>
          <directory>${project.basedir}/..</directory>
          <outputDirectory>/</outputDirectory>
          <excludes>
            <exclude>%regex[(?!((?!target/)[^/]+/)*src/).*target.*]</exclude>
            <exclude>**/*.log</exclude>
            <exclude>**/.gitignore</exclude>
            <exclude>**/.gitattributes</exclude>
            <exclude>init-git-svn.sh</exclude>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Apr 27 13:14:24 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  7. .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>
    XML
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Nov 09 20:59:03 GMT 2023
    - 32.4K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

      |   what is allowed in the field.
      |
      | o validators: there could be several levels of validation. Simple type validation could
      |   be done with a regex, but we need inter-field validation and rules which could be
      |   dealt with by something like drools.
      |
      | o i18n: would be good to be able to have names/descriptions/specifications
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Feb 26 17:04:44 GMT 2024
    - 115.5K bytes
    - Viewed (0)
  9. src/test/resources/data/gsaconfig.xml

    				<testwords><![CDATA[
    
                  ]]></testwords>
    			</collection>
    		</collections>
    		<globalparams>
    			<bad_urls><![CDATA[
    contains:/images/
    contains:?
    contains:\\.xml$
    # test
    regexp:/([^/]*)/\\1/\\1/
    .gif$
    .jpg$
    .jpeg$
    .png$
    regexpIgnoreCase:\\.dll$
    regexpIgnoreCase:\\.exe$
    /?S=A$
    /?S=D$
    contains:\001
    contains:\002
    contains:\003
    .html/$
    
              ]]></bad_urls>
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun May 13 06:51:57 GMT 2018
    - 1.7K bytes
    - Viewed (0)
Back to top