Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for Locher (0.16 sec)

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

                if (!(o instanceof CacheKey)) {
                    return false;
                }
    
                CacheKey other = (CacheKey) o;
    
                return ids.equals(other.ids)
                        && files.equals(other.files)
                        && timestamps.equals(other.timestamps)
                        && sizes.equals(other.sizes);
            }
    
            @Override
            public String toString() {
                return files.toString();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 4.7K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/licenses/MIT-slf4j-api-2.0.11.txt

     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
     LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
     OF CONTRACT, TORT OR OTHERWISE,  ARISING FROM, OUT OF OR IN CONNECTION
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Jan 09 06:36:58 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/apache/maven/wagon/wagon-webdav/1.0-beta-2/wagon-webdav-1.0-beta-2.jar

    damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all 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 License. However, in accepting such...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 16.9K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/resolver/filter/InversionArtifactFilter.java

                return true;
            }
    
            if (!(obj instanceof InversionArtifactFilter)) {
                return false;
            }
    
            InversionArtifactFilter other = (InversionArtifactFilter) obj;
    
            return toInvert.equals(other.toInvert);
        }
    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)
  5. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/AndArtifactFilter.java

            if (this == obj) {
                return true;
            }
    
            if (!(obj instanceof AndArtifactFilter)) {
                return false;
            }
    
            AndArtifactFilter other = (AndArtifactFilter) obj;
    
            return filters.equals(other.filters);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/IncludesArtifactFilter.java

            if (obj == null || getClass() != obj.getClass()) {
                return false;
            }
    
            IncludesArtifactFilter other = (IncludesArtifactFilter) obj;
    
            return patterns.equals(other.patterns);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  7. maven-builder-support/src/main/java/org/apache/maven/building/StringSource.java

                return false;
            }
    
            if (!StringSource.class.equals(obj.getClass())) {
                return false;
            }
    
            StringSource other = (StringSource) obj;
            return this.content.equals(other.content);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/unrecognized-jline-3.25.1.txt

    notice, this list of conditions and the following disclaimer.
    
    Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer
    in the documentation and/or other materials provided with
    the distribution.
    
    Neither the name of JLine nor the names of its contributors
    may be used to endorse or promote products derived from this
    software without specific prior written permission.
    
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Jan 29 15:51:24 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/plugin-exec-w-and-wo-id/wo-plugin-mgmt/pom.xml

      <artifactId>test1</artifactId>
      <version>0.1</version>
    
      <name>Maven Integration Test :: MNG-4000</name>
      <description>
        Test that plugin executions without id are not lost among other plugin executions.
      </description>
    
      <build>
        <!-- NOTE: This test does not use plugin management for the IT plugin. -->
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCollectorRequest.java

             * This must not be confused with {@link #root(DependencyCoordinate)}: The root dependency, like any
             * other specified dependency, will be subject to dependency collection/resolution, i.e. should have an artifact
             * descriptor and a corresponding artifact file. The root artifact on the other hand is only used
             * as a label for the root node of the graph in case no root dependency was specified. As such, the configured
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 11.7K bytes
    - Viewed (0)
Back to top