Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for tag_set (0.22 sec)

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

        assertEquals(StringLength.COMPARATOR, keySet.comparator());
        assertEquals(Sets.<@Nullable String>newHashSet(null, "tree"), keySet.headSet("yahoo"));
        assertEquals(Sets.newHashSet("google"), keySet.tailSet("yahoo"));
        assertEquals(Sets.newHashSet("tree"), keySet.subSet("ask", "yahoo"));
      }
    
      @GwtIncompatible // SerializableTester
      public void testExplicitComparatorSerialization() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

            // we can't currently control the order between tags and taglets (limitation on our side)
            javadoc.text =~ /(?ms)Custom Taglet.*custom taglet value/
        }
    
        @Issue(["GRADLE-2520", "https://github.com/gradle/gradle/issues/4993"])
        @Requires(UnitTestPreconditions.Jdk9OrEarlier)
        def canCombineLocalOptionWithOtherOptions() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Maps.java

          }
    
          @Override
          public SortedSet<E> tailSet(@ParametricNullness E fromElement) {
            return removeOnlySortedSet(super.tailSet(fromElement));
          }
    
          @Override
          public NavigableSet<E> tailSet(@ParametricNullness E fromElement, boolean inclusive) {
            return removeOnlyNavigableSet(super.tailSet(fromElement, inclusive));
          }
    
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Maps.java

          }
    
          @Override
          public SortedSet<E> tailSet(@ParametricNullness E fromElement) {
            return removeOnlySortedSet(super.tailSet(fromElement));
          }
    
          @Override
          public NavigableSet<E> tailSet(@ParametricNullness E fromElement, boolean inclusive) {
            return removeOnlyNavigableSet(super.tailSet(fromElement, inclusive));
          }
    
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/BaseGradleRunnerIntegrationTest.groovy

                        .max()
                        ?: MIN_TESTED_VERSION
                }
    
                return ((minFeatureVersions + minSpecVersion) as SortedSet).tailSet(MIN_TESTED_VERSION)
            }
    
            @Sortable(includes = ['gradleVersion'])
            private static class TestedGradleDistribution {
    
                private static
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

            then: "the test task is executed"
            result.assertTaskExecuted(":test")
    
            and: "only the fast tests are run"
            def xmlResults = getTestResultsFileAsXml(dslDir, "org.gradle.junitplatform.TagTest")
            assertTestsRunCount(xmlResults, 1)
            assertTestRun(xmlResults, "fastTest()")
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("testing/testng-groups")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/DerivedCollectionGenerators.java

          if (from == Bound.NO_BOUND && to == Bound.EXCLUSIVE) {
            return set.headSet(lastExclusive);
          } else if (from == Bound.INCLUSIVE && to == Bound.NO_BOUND) {
            return set.tailSet(firstInclusive);
          } else if (from == Bound.INCLUSIVE && to == Bound.EXCLUSIVE) {
            return set.subSet(firstInclusive, lastExclusive);
          } else {
            throw new IllegalArgumentException();
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/TreeBasedTableTest.java

      }
    
      public void testRowKeySetTailSet() {
        sortedTable = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        Set<String> set = sortedTable.rowKeySet().tailSet("cat");
        assertEquals(Collections.singleton("foo"), set);
        set.clear();
        assertTrue(set.isEmpty());
        assertEquals(Collections.singleton("bar"), sortedTable.rowKeySet());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/DerivedCollectionGenerators.java

          if (from == Bound.NO_BOUND && to == Bound.EXCLUSIVE) {
            return set.headSet(lastExclusive);
          } else if (from == Bound.INCLUSIVE && to == Bound.NO_BOUND) {
            return set.tailSet(firstInclusive);
          } else if (from == Bound.INCLUSIVE && to == Bound.EXCLUSIVE) {
            return set.subSet(firstInclusive, lastExclusive);
          } else {
            throw new IllegalArgumentException();
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

        private static final String OPTION_DOENCODING = "docencoding";
        private static final String OPTION_KEYWORDS = "keywords";
        private static final String OPTION_TAG = "tag";
        private static final String OPTION_TAGLET = "taglet";
        private static final String OPTION_TAGLETPATH = "tagletpath";
        private static final String OPTION_DOCFILESSUBDIRS = "docfilessubdirs";
        private static final String OPTION_EXCLUDEDOCFILESSUBDIR = "excludedocfilessubdir";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top