Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for transitivity (0.33 sec)

  1. guava-testlib/test/com/google/common/testing/EqualsTesterTest.java

          tester.testEquals();
        } catch (AssertionFailedError e) {
          assertErrorMessage(e, "bar [group 1, item 2] must be Object#equals to baz [group 1, item 3]");
          return;
        }
        fail("should failed because transitivity is broken");
      }
    
      public void testUnequalObjectsInEqualityGroup() {
        EqualsTester tester = new EqualsTester().addEqualityGroup(named("foo"), named("bar"));
        try {
          tester.testEquals();
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Apr 17 15:49:06 GMT 2023
    - 12.9K bytes
    - Viewed (0)
  2. android/guava-testlib/test/com/google/common/testing/EqualsTesterTest.java

          tester.testEquals();
        } catch (AssertionFailedError e) {
          assertErrorMessage(e, "bar [group 1, item 2] must be Object#equals to baz [group 1, item 3]");
          return;
        }
        fail("should failed because transitivity is broken");
      }
    
      public void testUnequalObjectsInEqualityGroup() {
        EqualsTester tester = new EqualsTester().addEqualityGroup(named("foo"), named("bar"));
        try {
          tester.testEquals();
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 17 15:49:06 GMT 2023
    - 12.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

         * dependency management entries in transitive dependency POMs. Maven 4 enables "transitivity" by default, hence
         * unlike Maven2, obeys dependency management entries deep in dependency graph as well.
         * <p>
         * Default: {@code "true"}.
         *
         * @since 4.0.0
         */
        private static final String MAVEN_RESOLVER_DEPENDENCY_MANAGER_TRANSITIVITY_KEY =
                "maven.resolver.dependencyManagerTransitivity";
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  4. src/README.vendor

        go mod tidy
        go mod vendor
    
    Use caution when passing '-u' to 'go get'. The '-u' flag updates
    modules providing all transitively imported packages, not only
    the module providing the target package.
    
    Note that 'go mod vendor' only copies packages that are transitively
    imported by packages in the current module. If a new package is needed,
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 02 02:20:05 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  5. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

     * of project dependencies. This optimizes module loading during runtime, as we will only load external
     * modules that are not loaded transitively by other project modules.
     *
     * We perform this filtering, since if we simply include all external dependencies, regardless of whether
     * they are already loaded transitively, there is a measurable performance impact during module-loading.
     */
    fun computeExternalDependenciesNotAccessibleFromProjectDependencies(
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Mar 28 20:26:58 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  6. maven-artifact/src/main/java/org/apache/maven/artifact/handler/ArtifactHandler.java

     * <li>Information on how to use the artifact as a dependency: whether to add it to the classpath, whether to load its
     * dependencies transitively</li>
     * </ul>
     *
     */
    public interface ArtifactHandler {
        @Deprecated
        String ROLE = ArtifactHandler.class.getName();
    
        /**
         * Returns the file name extension of the artifact;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/project/inheritance/t04/ProjectInheritanceTest.java

    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Verifies the version of a dependency listed in a parent's
     * dependencyManagement section is chosen over another version of the same
     * dependency, listed transitively.
     *
     */
    @Deprecated
    class ProjectInheritanceTest extends AbstractProjectInheritanceTestCase {
        // ----------------------------------------------------------------------
        //
        // p1 inherits from p0
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  8. guava-gwt/pom.xml

             configurations downstream, and GWT uses the runtime configuration for
             its builds. Thus, GWT doesn't get j2objc-annotations transitively, in
             contrast to the other deps of `guava`, which it does get transitively.
             (Arguably we should redeclare *all* the `guava` deps here.) -->
        <dependency>
          <groupId>com.google.j2objc</groupId>
          <artifactId>j2objc-annotations</artifactId>
    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)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineFunctionAnalyzer.kt

        private val inlineFunctionsWithBody: MutableSet<KtDeclarationWithBody> = mutableSetOf()
    
        /**
         * Collects all inline function calls in an [element] (usually a file) and follows each transitively.
         */
        fun analyze(element: KtElement) {
            val project = element.project
            val nextInlineFunctions = HashSet<KtDeclarationWithBody>()
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Aug 29 23:55:31 GMT 2023
    - 5.1K bytes
    - Viewed (0)
  10. guava-testlib/pom.xml

        </dependency>
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <!-- *not* <scope>test</scope>; <scope>compile</scope> is right so that guava-testlib users get junit transitively. -->
          <version>4.13.2</version>
        </dependency>
        <dependency>
          <!--
          Do not include Truth in non-test scope! Doing so creates a problematic dependency cycle.
          -->
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jul 31 18:55:22 GMT 2023
    - 3.1K bytes
    - Viewed (0)
Back to top