Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Equals (0.21 sec)

  1. .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$) {
    if ($ITEM$.equals($TARGET$)) {
       return $RES$;
    }
}" recursive="false" caseInsensitive="false" type="JAVA" pattern_context="default" reformatAccordingToStyle="true" shortenFQN="true" useStaticImport="true" replacement="if (org.gradle.util.inter...
    XML
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Thu Apr 11 13:39:08 GMT 2024
    - 13K bytes
    - Viewed (0)
  2. 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 May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K 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 May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 11 14:06:34 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  4. guava-gwt/pom.xml

              <artifactId>guava</artifactId>
            </exclusion>
          </exclusions>
        </dependency>
        <dependency>
          <groupId>org.checkerframework</groupId>
          <artifactId>checker-qual</artifactId>
        </dependency>
      </dependencies>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <excludes>
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Apr 11 15:00:55 GMT 2024
    - 19.8K bytes
    - Viewed (0)
  5. pom.xml

    				<exclusion>
    					<groupId>com.google.j2objc</groupId>
    					<artifactId>j2objc-annotations</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>org.checkerframework</groupId>
    					<artifactId>checker-qual</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>com.google.code.findbugs</groupId>
    					<artifactId>jsr305</artifactId>
    				</exclusion>
    				<exclusion>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
Back to top