Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Equals (0.21 sec)

  1. api/maven-api-settings/src/main/mdo/settings.mdo

            if (sourceLevelSet) {
                throw new IllegalStateException("Cannot reset sourceLevel attribute; it is already set to: " + sourceLevel);
            } else if (!(USER_LEVEL.equals(sourceLevel) || PROJECT_LEVEL.equals(sourceLevel)  || GLOBAL_LEVEL.equals(sourceLevel))) {
                throw new IllegalArgumentException("sourceLevel must be one of: {" + USER_LEVEL + "," + PROJECT_LEVEL + "," + GLOBAL_LEVEL + "}");
            } else {
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  2. maven-compat/src/main/mdo/profiles.mdo

          </fields>
          <!-- prevent modello generation of an incorrect equals method. Could be avoided by using <identity/> tags to mark ID as the only identity field -->
          <codeSegments>
            <codeSegment>
              <version>1.0.0</version>
              <code><![CDATA[
                public boolean equals( Object obj )
                {
                    return super.equals( obj );
                }
              ]]></code>
            </codeSegment>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 03 21:08:35 GMT 2023
    - 13.8K bytes
    - Viewed (0)
  3. api/maven-api-metadata/src/main/mdo/metadata.mdo

                        v.getVersions().add( version );
                    }
                }
    
                if ( "null".equals( versioning.getLastUpdated() ) )
                {
                    versioning.setLastUpdated( null );
                }
    
                if ( "null".equals( v.getLastUpdated() ) )
                {
                    v.setLastUpdated( null );
                }
    
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 11 14:06:34 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/pom.xml

      <description>
        Test that during inheritance the merging/joining of subtrees with equal identifier doesn't crash if the parent
        POM has a non-empty element and the child POM has an empty element to join.
      </description>
    
      <properties>
        <prop0>test</prop0>
      </properties>
    
      <repositories>
        <repository>
          <id>equal-repo-id</id>
          <url>https://maven.apache.org/null</url>
          <snapshots>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 2.8K bytes
    - Viewed (0)
  5. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

            <!--</module>-->...
    XML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Dec 16 22:05:16 GMT 2022
    - 6.3K bytes
    - Viewed (0)
  6. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

         */
        public boolean equals(Object other) {
            if (this == other) {
                return true;
            } else if (!(other instanceof ToolchainModel)) {
                return false;
            } else {
                ToolchainModel that = (ToolchainModel) other;
                return java.util.Objects.equals(this.getType(), that.getType())
                    && java.util.Objects.equals(this.getProvides(), that.getProvides());
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  7. .idea/inspectionProfiles/Gradle.xml

    description="Replace checking element presense in array with a utility function" suppressId="manual_array_contains" problemDescriptor="Replace manual array-contains check with utility function" text="for ($TYPE$ $ITEM$ : $ARR$) {&#10;    if ($ITEM$.equals($TARGET$)) {&#10;       return $RES$;&#10;    }&#10;}" recursive="false" caseInsensitive="false" type="JAVA" pattern_context="default" reformatAccordingToStyle="true" shortenFQN="true" useStaticImport="true" replacement="if (org.gradle.util.inter...
    XML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Apr 11 13:39:08 GMT 2024
    - 13K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/sub/pom.xml

      <description>
        Test that during inheritance the merging/joining of subtrees with equal identifier doesn't crash if the parent
        POM has a non-empty element and the child POM has an empty element to join.
      </description>
    
      <properties/>
    
      <repositories>
        <repository>
          <id>equal-repo-id</id>
          <url>file:///${basedir}/null</url>
          <snapshots/>
          <releases/>
        </repository>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/build-extension-inheritance/sub/pom.xml

            <artifactId>b</artifactId>
            <version>0.1</version>
          </extension>
          <extension>
            <!-- project extensions should override inherited extension with equal gid:aid -->
            <groupId>org.apache.maven.its.mng3899</groupId>
            <artifactId>a</artifactId>
            <version>0.2</version>
          </extension>
        </extensions>
        <plugins>
          <plugin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/mdo/maven.mdo

              <version>4.1.0+</version>
              <code>
                <![CDATA[
        /**
         * @see java.lang.Object#equals(java.lang.Object)
         */
        public boolean equals(Object other) {
            if (other instanceof Plugin) {
                Plugin otherPlugin = (Plugin) other;
                return getKey().equals(otherPlugin.getKey());
            }
            return false;
        }
    
        /**
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
Back to top