Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Misiti (0.27 sec)

  1. android/guava-tests/test/com/google/common/reflect/TypeVisitorTest.java

          void visitParameterizedType(ParameterizedType t) {
            visit(t.getActualTypeArguments());
          }
    
          @Override
          void visitTypeVariable(TypeVariable<?> t) {
            visit(t.getBounds());
          }
        }.visit(type);
      }
    
      private static void assertVisited(Type type) {
        TypeVisitor visitor = new BaseTypeVisitor();
        try {
          visitor.visit(type);
          fail("Type not visited");
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 3.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/TypeToken.java

            visit(type.getLowerBounds());
            visit(type.getUpperBounds());
          }
    
          @Override
          void visitParameterizedType(ParameterizedType type) {
            visit(type.getActualTypeArguments());
            visit(type.getOwnerType());
          }
    
          @Override
          void visitGenericArrayType(GenericArrayType type) {
            visit(type.getGenericComponentType());
          }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 53.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/reflect/TypeVisitorTest.java

          void visitParameterizedType(ParameterizedType t) {
            visit(t.getActualTypeArguments());
          }
    
          @Override
          void visitTypeVariable(TypeVariable<?> t) {
            visit(t.getBounds());
          }
        }.visit(type);
      }
    
      private static void assertVisited(Type type) {
        TypeVisitor visitor = new BaseTypeVisitor();
        try {
          visitor.visit(type);
          fail("Type not visited");
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 3.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/TypeVisitor.java

    abstract class TypeVisitor {
    
      private final Set<Type> visited = Sets.newHashSet();
    
      /**
       * Visits the given types. Null types are ignored. This allows subclasses to call {@code
       * visit(parameterizedType.getOwnerType())} safely without having to check nulls.
       */
      public final void visit(@Nullable Type... types) {
        for (Type type : types) {
          if (type == null || !visited.add(type)) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Apr 16 21:10:04 GMT 2021
    - 3.7K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    question.  `What sort of people live about here?'
    
      `In THAT direction,' the Cat said, waving its right paw round,
    `lives a Hatter:  and in THAT direction,' waving the other paw,
    `lives a March Hare.  Visit either you like:  they're both mad.'
    
      `But I don't want to go among mad people,' Alice remarked.
    
      `Oh, you can't help that,' said the Cat:  `we're all mad here.
    I'm mad.  You're mad.'
    
    Plain Text
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/cache/CacheBuilderTest.java

        int nTasks = 1000;
        int nSeededEntries = 100;
        Set<String> expectedKeys = Sets.newHashSetWithExpectedSize(nTasks + nSeededEntries);
        // seed the map, so its segments have a count>0; otherwise, clear() won't visit the in-progress
        // entries
        for (int i = 0; i < nSeededEntries; i++) {
          String s = "b" + i;
          cache.getUnchecked(s);
          expectedKeys.add(s);
        }
        computationShouldWait.set(true);
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Oct 03 20:10:02 GMT 2023
    - 23.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/TypeResolver.java

            map(new TypeVariableKey(vars[i]), typeArgs[i]);
          }
          visit(rawClass);
          visit(parameterizedType.getOwnerType());
        }
    
        @Override
        void visitTypeVariable(TypeVariable<?> t) {
          visit(t.getBounds());
        }
    
        @Override
        void visitWildcardType(WildcardType t) {
          visit(t.getUpperBounds());
        }
    
        private void map(TypeVariableKey var, Type arg) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 24.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/reflect/Types.java

            result.set(t.getGenericComponentType());
          }
    
          @Override
          void visitClass(Class<?> t) {
            result.set(t.getComponentType());
          }
        }.visit(type);
        return result.get();
      }
    
      /**
       * Returns {@code ? extends X} if any of {@code bounds} is a subtype of {@code X[]}; or null
       * otherwise.
       */
      @CheckForNull
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 17 16:33:44 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/HashBiMap.java

            private int indexToRemove = ABSENT;
            private int expectedModCount = biMap.modCount;
    
            // Calls to setValue on inverse entries can move already-visited entries to the end.
            // Make sure we don't visit those.
            private int remaining = biMap.size;
    
            private void checkForComodification() {
              if (biMap.modCount != expectedModCount) {
                throw new ConcurrentModificationException();
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 06 16:06:58 GMT 2023
    - 36.4K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    question.  `What sort of people live about here?'
    
      `In THAT direction,' the Cat said, waving its right paw round,
    `lives a Hatter:  and in THAT direction,' waving the other paw,
    `lives a March Hare.  Visit either you like:  they're both mad.'
    
      `But I don't want to go among mad people,' Alice remarked.
    
      `Oh, you can't help that,' said the Cat:  `we're all mad here.
    I'm mad.  You're mad.'
    
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
Back to top