Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for extender (0.08 sec)

  1. guava/src/com/google/common/collect/Maps.java

       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
          MapDifference<K, V> difference(
              Map<? extends K, ? extends V> left, Map<? extends K, ? extends V> right) {
        if (left instanceof SortedMap) {
          @SuppressWarnings("unchecked")
          SortedMap<K, ? extends V> sortedLeft = (SortedMap<K, ? extends V>) left;
          return difference(sortedLeft, right);
        }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
          MapDifference<K, V> difference(
              Map<? extends K, ? extends V> left, Map<? extends K, ? extends V> right) {
        if (left instanceof SortedMap) {
          @SuppressWarnings("unchecked")
          SortedMap<K, ? extends V> sortedLeft = (SortedMap<K, ? extends V>) left;
          return difference(sortedLeft, right);
        }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * @param <V5> the type returned by the fifth future
       */
      public static final class Combiner5<
              V1 extends @Nullable Object,
              V2 extends @Nullable Object,
              V3 extends @Nullable Object,
              V4 extends @Nullable Object,
              V5 extends @Nullable Object>
          extends Combiner {
        /**
         * A function that returns a value when applied to the values of the five futures passed to
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 08 19:36:35 UTC 2024
    - 98.5K bytes
    - Viewed (0)
  4. fastapi/routing.py

                        current_tags.extend(tags)
                    if route.tags:
                        current_tags.extend(route.tags)
                    current_dependencies: List[params.Depends] = []
                    if dependencies:
                        current_dependencies.extend(dependencies)
                    if route.dependencies:
                        current_dependencies.extend(route.dependencies)
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Oct 12 09:44:57 UTC 2024
    - 172.1K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/adminlte.min.js.map

    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 132.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

    /**
     * A file with this bit on as returned by <tt>getAttributes()</tt> or set
     * with <tt>setAttributes()</tt> is an archived file
     */
        public static final int ATTR_ARCHIVE    = 0x20;
    
        // extended file attribute encoding(others same as above)
        static final int ATTR_COMPRESSED       = 0x800;
        static final int ATTR_NORMAL           = 0x080;
        static final int ATTR_TEMPORARY        = 0x100;
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

                @deprecated Where to send the notification to - eg email address.
              </description>
            </field>
            <field>
              <name>configuration</name>
              <description>Extended configuration specific to this notifier goes here.</description>
              <type>Properties</type>
              <association xml.mapStyle="inline">
                <type>String</type>
                <multiplicity>*</multiplicity>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 09 11:07:31 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** @author Charles Fry */
    @SuppressWarnings("GuardedBy") // TODO(b/35466881): Fix or suppress.
    public class LocalCacheTest extends TestCase {
      private static class TestStringCacheGenerator extends TestStringMapGenerator {
        private final CacheBuilder<? super String, ? super String> builder;
    
        TestStringCacheGenerator(CacheBuilder<? super String, ? super String> builder) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 110.6K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/cache/LocalCacheTest.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** @author Charles Fry */
    @SuppressWarnings("GuardedBy") // TODO(b/35466881): Fix or suppress.
    public class LocalCacheTest extends TestCase {
      private static class TestStringCacheGenerator extends TestStringMapGenerator {
        private final CacheBuilder<? super String, ? super String> builder;
    
        TestStringCacheGenerator(CacheBuilder<? super String, ? super String> builder) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 112.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_TERM = "{labels.term}";
    
        /** The key of the message: Fields */
        public static final String LABELS_FIELDS = "{labels.fields}";
    
        /** The key of the message: Extended Query */
        public static final String LABELS_ex_q = "{labels.ex_q}";
    
        /** The key of the message: LDAP URL */
        public static final String LABELS_LDAP_PROVIDER_URL = "{labels.ldapProviderUrl}";
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
Back to top