Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 140 for informer (0.04 sec)

  1. guava-tests/test/com/google/common/collect/IteratorsTest.java

        assertEquals("Iterators.consumingIterator(...)", consumingIterator.toString());
    
        assertThat(list).containsExactly("a", "b").inOrder();
    
        assertTrue(consumingIterator.hasNext());
        assertThat(list).containsExactly("a", "b").inOrder();
        assertEquals("a", consumingIterator.next());
        assertThat(list).contains("b");
    
        assertTrue(consumingIterator.hasNext());
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 28 18:44:53 UTC 2025
    - 56.7K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/graph/ValueGraphTest.java

        graph.putEdgeValue(1, 2, "1-2");
    
        assertThat(graph.incidentEdges(2))
            .containsExactly(
                EndpointPair.ordered(2, 1), EndpointPair.ordered(2, 3), EndpointPair.ordered(1, 2))
            .inOrder();
      }
    
      @Test
      public void incidentEdges_stableIncidentEdgeOrder_preservesIncidentEdgesOrder_undirected() {
        graph = ValueGraphBuilder.undirected().incidentEdgeOrder(ElementOrder.stable()).build();
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 07 15:57:03 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/PluginUpgradeStrategy.java

                    new PluginUpgradeInfo("org.codehaus.mojo", "exec-maven-plugin", "3.2.0"));
            upgrades.put(
                    DEFAULT_MAVEN_PLUGIN_GROUP_ID + ":maven-enforcer-plugin",
                    new PluginUpgradeInfo(DEFAULT_MAVEN_PLUGIN_GROUP_ID, "maven-enforcer-plugin", "3.0.0"));
            upgrades.put(
                    "org.codehaus.mojo:flatten-maven-plugin",
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 37K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeGoal.java

     * When {@code --plugins} option is enabled (or by default), upgrades plugins known to fail with Maven 4:
     * <ul>
     *   <li><strong>maven-exec-plugin</strong>: Upgrades to version 3.2.0 or higher</li>
     *   <li><strong>maven-enforcer-plugin</strong>: Upgrades to version 3.0.0 or higher</li>
     *   <li><strong>flatten-maven-plugin</strong>: Upgrades to version 1.2.7 or higher</li>
     *   <li><strong>maven-shade-plugin</strong>: Upgrades to version 3.5.0 or higher</li>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProblemCollector.java

         * method returns {@code true}, it means that element count of stream returned by method {@link #problems()}
         * and the counter returned by {@link #totalProblemsReported()} are not equal (latter is bigger than former).
         *
         * @return true if the problem collector has overflowed and some problems were not preserved
         */
        boolean problemsOverflow();
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jul 18 17:30:19 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/io/FilesTest.java

        w.println("");
        w.println(" world  ");
        w.println("");
        w.close();
        Files.readLines(temp, UTF_8, collect);
        assertThat(collect.getResult()).containsExactly("hello", "", " world  ", "").inOrder();
    
        LineProcessor<List<String>> collectNonEmptyLines =
            new LineProcessor<List<String>>() {
              final List<String> collector = new ArrayList<>();
    
              @Override
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 28 18:44:53 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

                            break;
                        }
                    }
                }
            }
    
            if (version != null) {
                // if LATEST worked out of the box, remain silent as today, otherwise inform user about search result
                if (searchPerformed) {
                    logger.info("Selected plugin {}:{}:{}", request.getGroupId(), request.getArtifactId(), version);
                }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jan 29 08:17:07 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/MultimapsTest.java

                immutableEntry("a", 4),
                immutableEntry("a", 16),
                immutableEntry("b", 9),
                immutableEntry("b", 9),
                immutableEntry("c", 36))
            .inOrder();
      }
    
      @GwtIncompatible(value = "untested")
      public void testTransformValuesIsView() {
        Multimap<String, String> multimap = LinkedListMultimap.create();
        multimap.put("a", "a");
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 28 16:03:47 UTC 2025
    - 38.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/primitives/BytesTest.java

        List<Byte> list = Bytes.asList(array);
        list.set(0, (byte) 2);
        assertThat(array).isEqualTo(new byte[] {(byte) 2, (byte) 1});
        array[1] = (byte) 3;
        assertThat(list).containsExactly((byte) 2, (byte) 3).inOrder();
      }
    
      public void testAsList_toArray_roundTrip() {
        byte[] array = {(byte) 0, (byte) 1, (byte) 2};
        List<Byte> list = Bytes.asList(array);
        byte[] newArray = Bytes.toArray(list);
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/FilteredCollectionsTestUtil.java

            NavigableSet<Integer> unfiltered = createUnfiltered(filtered);
    
            assertThat(filtered.descendingSet())
                .containsExactlyElementsIn(unfiltered.descendingSet())
                .inOrder();
          }
        }
    
        public void testPollFirst() {
          for (List<Integer> contents : SAMPLE_INPUTS) {
            NavigableSet<Integer> filtered = filter(createUnfiltered(contents), EVEN);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 13.1K bytes
    - Viewed (0)
Back to top