Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 83 for tag_set (0.18 sec)

  1. android/guava/src/com/google/common/collect/ForwardingNavigableSet.java

      }
    
      @Override
      public NavigableSet<E> tailSet(@ParametricNullness E fromElement, boolean inclusive) {
        return delegate().tailSet(fromElement, inclusive);
      }
    
      /**
       * A sensible definition of {@link #tailSet(Object)} in terms of the {@link #tailSet(Object,
       * boolean)} method. If you override {@link #tailSet(Object, boolean)}, you may wish to override
       * {@link #tailSet(Object)} to forward to this implementation.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ForwardingSortedSet.java

        return delegate().subSet(fromElement, toElement);
      }
    
      @Override
      public SortedSet<E> tailSet(@ParametricNullness E fromElement) {
        return delegate().tailSet(fromElement);
      }
    
      /**
       * A sensible definition of {@link #contains} in terms of the {@code first()} method of {@link
       * #tailSet}. If you override {@link #tailSet}, you may wish to override {@link #contains} to
       * forward to this implementation.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/resources/org/gradle/api/tasks/javadoc/JavadocIntegrationTest/handlesTagsAndTaglets/src/taglet/java/CustomTaglet.java

        }
    
        public String toString(Tag tag) {
            return "<DT><B>Custom Taglet:</B></DT>\n<DD>" + tag.text() + "</DD>\n";
        }
    
        public String toString(Tag[] tags) {
            return toString(tags[0]);
        }
    
        public static void register(Map tagletMap) {
            CustomTaglet taglet = new CustomTaglet();
            tagletMap.put(taglet.getName(), taglet);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 998 bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/resources/org/gradle/api/tasks/javadoc/JavadocIntegrationTest/canCombineLocalOptionWithOtherOptions/build.gradle

    apply plugin: "java"
    
    sourceSets {
        taglet
    }
    
    dependencies {
        if (Jvm.current().toolsJar) {
            tagletImplementation files(Jvm.current().toolsJar)
        }
    }
    
    javadoc {
        dependsOn tagletClasses
        options {
            locale = 'de_DE'
            breakIterator = true
            taglets 'LocaleAwareTaglet'
            tagletPath sourceSets.taglet.java.destinationDirectory.get().asFile
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 428 bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        assertThat(set.tailSet(Integer.MIN_VALUE)).containsExactly(1, 2, 3).inOrder();
        assertThat(set.tailSet(1)).containsExactly(1, 2, 3).inOrder();
        assertThat(set.tailSet(2)).containsExactly(2, 3).inOrder();
        assertThat(set.tailSet(3)).containsExactly(3).inOrder();
        assertThat(set.tailSet(Integer.MIN_VALUE, false)).containsExactly(1, 2, 3).inOrder();
        assertThat(set.tailSet(1, false)).containsExactly(2, 3).inOrder();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. src/encoding/asn1/common.go

    	TagInteger         = 2
    	TagBitString       = 3
    	TagOctetString     = 4
    	TagNull            = 5
    	TagOID             = 6
    	TagEnum            = 10
    	TagUTF8String      = 12
    	TagSequence        = 16
    	TagSet             = 17
    	TagNumericString   = 18
    	TagPrintableString = 19
    	TagT61String       = 20
    	TagIA5String       = 22
    	TagUTCTime         = 23
    	TagGeneralizedTime = 24
    	TagGeneralString   = 27
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/vet.txt

    # Package with external tests
    ! go vet m/vetpkg
    stderr 'Printf'
    
    # With tags
    ! go vet -tags tagtest m/vetpkg
    stderr 'c\.go.*Printf'
    
    # With flags on
    ! go vet -printf m/vetpkg
    stderr 'Printf'
    
    # With flags off
    go vet -printf=false m/vetpkg
    ! stderr .
    
    # With only test files (tests issue #23395)
    go vet m/onlytest
    ! stderr .
    
    # With only cgo files (tests issue #24193)
    [!cgo] skip
    [short] skip
    go vet m/onlycgo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 799 bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/SafeTreeSet.java

        return subSet(fromElement, true, toElement, false);
      }
    
      @Override
      public SortedSet<E> tailSet(E fromElement) {
        return tailSet(fromElement, true);
      }
    
      @Override
      public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
        return new SafeTreeSet<>(delegate.tailSet(checkValid(fromElement), inclusive));
      }
    
      @Override
      public Object[] toArray() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/resources/org/gradle/api/tasks/javadoc/JavadocIntegrationTest/handlesTagsAndTaglets/build.gradle

    apply plugin: "java"
    
    sourceSets {
        taglet
    }
    
    dependencies {
        if (Jvm.current().toolsJar) {
            tagletImplementation files(Jvm.current().toolsJar)
        }
    }
    
    javadoc {
        dependsOn tagletClasses
    
        options {
            tags 'author'
            tags 'deprecated'
            tags 'customtag:t:"Custom Tag:"'
            taglets 'CustomTaglet'
            tagletPath sourceSets.taglet.java.destinationDirectory.get().asFile
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 459 bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/SafeTreeSet.java

        return subSet(fromElement, true, toElement, false);
      }
    
      @Override
      public SortedSet<E> tailSet(E fromElement) {
        return tailSet(fromElement, true);
      }
    
      @Override
      public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
        return new SafeTreeSet<>(delegate.tailSet(checkValid(fromElement), inclusive));
      }
    
      @Override
      public Object[] toArray() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top