Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for Mosher (0.31 sec)

  1. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    the Licensed Patents. The patent license shall not apply to any other combinations
    which include the Contribution. No hardware per se is licensed hereunder.
    
    c) Recipient understands that although each Contributor grants the licenses
    to its Contributions set forth herein, no assurances are provided by any Contributor
    that the Program does not infringe the patent or other intellectual property
    rights of any other entity. Each Contributor disclaims any liability to Recipient
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Sep 17 05:50:12 GMT 2018
    - 11.1K 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 May 05 03:35:11 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  3. LICENSE

          other commercial damages or losses), even if such Contributor
          has been advised of the possibility of such damages.
    
       9. Accepting Warranty or Additional Liability. While redistributing
          the Work or Derivative Works thereof, You may choose to offer,
          and charge a fee for, acceptance of support, warranty, indemnity,
          or other liability obligations and/or rights consistent with this
    Plain Text
    - Registered: Wed May 01 00:11:10 GMT 2024
    - Last Modified: Thu Feb 20 19:53:57 GMT 2020
    - 11.1K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelTransformerContext.java

                    return true;
                }
                if (!(obj instanceof GAKey)) {
                    return false;
                }
    
                GAKey other = (GAKey) obj;
                return Objects.equals(artifactId, other.artifactId) && Objects.equals(groupId, other.groupId);
            }
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/resolver/filter/TypeArtifactFilter.java

            if (this == obj) {
                return true;
            }
    
            if (!(obj instanceof TypeArtifactFilter)) {
                return false;
            }
    
            TypeArtifactFilter other = (TypeArtifactFilter) obj;
    
            return type.equals(other.type);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/ScopeArtifactFilter.java

                return true;
            }
    
            if (!(obj instanceof ScopeArtifactFilter)) {
                return false;
            }
    
            ScopeArtifactFilter other = (ScopeArtifactFilter) obj;
    
            return Objects.equals(scope, other.scope);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  7. .github/pull_request_template.md

           for the change (usually before you start working on it).  Trivial changes like typos do not
           require a JIRA issue. Your pull request should address just this issue, without
           pulling in other changes.
     - [ ] Each commit in the pull request should have a meaningful subject line and body.
     - [ ] Format the pull request title like `[MNG-XXX] SUMMARY`,
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Dec 20 13:14:27 GMT 2022
    - 1.9K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DefaultProjectRealmCache.java

                    return true;
                }
    
                if (!(o instanceof CacheKey)) {
                    return false;
                }
    
                CacheKey other = (CacheKey) o;
    
                return extensionRealms.equals(other.extensionRealms);
            }
    
            @Override
            public String toString() {
                return extensionRealms.toString();
            }
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 3.7K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/unrecognized-javax.annotation-api-1.3.2.txt

        with other software or devices.
    
        2.2. Contributor Grant.
    
        Conditioned upon Your compliance with Section 3.1 below and subject
        to third party intellectual property claims, each Contributor hereby
        grants You a world-wide, royalty-free, non-exclusive license:
    
        (a) under intellectual property rights (other than patent or
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue May 11 18:59:18 GMT 2021
    - 38.5K bytes
    - Viewed (0)
  10. 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())
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 8.5K bytes
    - Viewed (0)
Back to top