Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for fromClass (0.19 seconds)

  1. src/main/java/org/codelibs/core/lang/ClassUtil.java

         * @param fromClass
         *            The source class. Must not be {@literal null}.
         * @return Whether assignment is possible.
         * @see Class#isAssignableFrom(Class)
         */
        public static boolean isAssignableFrom(final Class<?> toClass, Class<?> fromClass) {
            assertArgumentNotNull("toClass", toClass);
            assertArgumentNotNull("fromClass", fromClass);
    
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Jul 31 08:16:49 GMT 2025
    - 25.6K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/reflect/TypeResolver.java

            populateTypeMappings(mappings, fromArrayType.getGenericComponentType(), componentType);
          }
    
          @Override
          void visitClass(Class<?> fromClass) {
            if (to instanceof WildcardType) {
              return; // Okay to say Foo is <?>
            }
            // Can't map from a raw class to anything other than itself or a wildcard.
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Sep 23 22:30:05 GMT 2025
    - 25.3K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/reflect/TypeToken.java

      }
    
      private boolean isSubtypeOfArrayType(GenericArrayType supertype) {
        if (runtimeType instanceof Class) {
          Class<?> fromClass = (Class<?>) runtimeType;
          if (!fromClass.isArray()) {
            return false;
          }
          return of(fromClass.getComponentType()).isSubtypeOf(supertype.getGenericComponentType());
        } else if (runtimeType instanceof GenericArrayType) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 53.8K bytes
    - Click Count (0)
  4. CHANGELOG/CHANGELOG-1.35.md

    - Fixed an issue where requests for a config `FromClass` in the `ResourceClaim` status were not referenced. ([#134793](https://github.com/kubernetes/kubernetes/pull/134793), [@LionelJouin](https://github.com/LionelJouin))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Mar 19 03:20:49 GMT 2026
    - 265.9K bytes
    - Click Count (0)
  5. CHANGELOG/CHANGELOG-1.33.md

    - Fix: The requests for a config FromClass in the status of a ResourceClaim were not referenced. ([#135105](https://github.com/kubernetes/kubernetes/pull/135105), [@LionelJouin](https://github.com/LionelJouin)) [SIG Node]
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Mar 19 03:17:58 GMT 2026
    - 369K bytes
    - Click Count (0)
  6. CHANGELOG/CHANGELOG-1.34.md

    - Fix: The requests for a config FromClass in the status of a ResourceClaim were not referenced. ([#135098](https://github.com/kubernetes/kubernetes/pull/135098), [@LionelJouin](https://github.com/LionelJouin)) [SIG Node]
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Mar 19 03:19:43 GMT 2026
    - 368.7K bytes
    - Click Count (2)
  7. CHANGELOG/CHANGELOG-1.32.md

    - Fix: The requests for a config FromClass in the status of a ResourceClaim were not referenced. ([#135109](https://github.com/kubernetes/kubernetes/pull/135109), [@LionelJouin](https://github.com/LionelJouin)) [SIG Node]
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Feb 26 23:58:21 GMT 2026
    - 470.5K bytes
    - Click Count (0)
Back to Top