Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for loadClass (0.12 sec)

  1. guava/src/com/google/common/base/FinalizableReferenceQueue.java

          } catch (SecurityException e) {
            logger.info("Not allowed to access system class loader.");
            return null;
          }
          if (systemLoader != null) {
            try {
              return systemLoader.loadClass(FINALIZER_CLASS_NAME);
            } catch (ClassNotFoundException e) {
              // Ignore. Finalizer is simply in a child class loader.
              return null;
            }
          } else {
            return null;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Jul 11 20:51:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

            final ClassLoader tccl = Thread.currentThread().getContextClassLoader();
            if (tccl != null) {
                try {
                    return tccl.loadClass(name);
                } catch (final Exception e) {
                    // drop through...
                } catch (final LinkageError e) {
                    // drop through...
                }
            }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/ClassPath.java

         *     For example, {@link NoClassDefFoundError}.
         */
        public Class<?> load() {
          try {
            return loader.loadClass(className);
          } catch (ClassNotFoundException e) {
            // Shouldn't happen, since the class name is read from the class path.
            throw new IllegalStateException(e);
          }
        }
    
        @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  4. test-site/activator-launch-1.3.2.jar

    void Enumeration$$anonfun$members$1(Enumeration, ListMap); } xsbt/boot/BootFilteredLoader.class package xsbt.boot; public final synchronized class BootFilteredLoader extends ClassLoader { private final ClassLoader excludedLoader; public final Class loadClass(String, boolean); public final java.util.Enumeration getResources(String); public final java.net.URL getResource(String); public void BootFilteredLoader(ClassLoader); } xsbt/boot/Update$$anonfun$useSecureResolvers$1.class package xsbt.boot; public...
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (0)
Back to top