Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for eq (0.15 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/CacheUtils.java

    import org.apache.maven.model.Plugin;
    
    /**
     */
    class CacheUtils {
    
        /**
         * @deprecated Use {@link Objects#equals(Object)}
         */
        @Deprecated
        public static <T> boolean eq(T s1, T s2) {
            return Objects.equals(s1, s2);
        }
    
        /**
         * @deprecated Use {@link Objects#hashCode(Object)}
         */
        @Deprecated
        public static int hash(Object obj) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/DelegatingLocalArtifactRepository.java

                return false;
            }
    
            DelegatingLocalArtifactRepository other = (DelegatingLocalArtifactRepository) obj;
    
            return eq(buildReactor, other.buildReactor)
                    && eq(ideWorkspace, other.ideWorkspace)
                    && eq(userLocalArtifactRepository, other.userLocalArtifactRepository);
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java

            }
            if (getClass() != obj.getClass()) {
                return false;
            }
    
            ArtifactRepository other = (ArtifactRepository) obj;
    
            return eq(getId(), other.getId());
        }
    
        protected static <T> boolean eq(T s1, T s2) {
            return Objects.equals(s1, s2);
        }
    
        public Authentication getAuthentication() {
            return authentication;
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 11K bytes
    - Viewed (0)
  4. apache-maven/src/assembly/shared/init

        fi
        wdir=`cd "$wdir/.."; pwd`
      done
      echo "$basedir"
    )
    }
    
    find_file_argument_basedir() {
    (
      basedir=`pwd`
    
      found_file_switch=0
      for arg in "$@"; do
        if [ ${found_file_switch} -eq 1 ]; then
          if [ -d "${arg}" ]; then
            basedir=`cd "${arg}" && pwd -P`
          elif [ -f "${arg}" ]; then
            basedir=`dirname "${arg}"`
            basedir=`cd "$basedir" && pwd -P`
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Mar 05 22:52:54 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  5. .github/workflows/maven.yml

                branch=${GITHUB_REF#refs/heads/}
              fi
              if [ $branch != "master" ]; then
                git ls-remote https://github.com/$user/$repo.git | grep "refs/heads/${branch}$" > /dev/null
                if [ $? -eq 0 ]; then
                  echo "Found a branch \"$branch\" in fork \"$user/$repo\", configuring this for the integration tests to be run against."
                  target_branch=$branch
                  target_user=$user
                else
    Others
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 4.5K bytes
    - Viewed (0)
Back to top