Searched refs:load (Results 176 - 200 of 860) sorted by relevance

1234567891011>>

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/
H A DDebugHandlersFactory.java42 * Loads {@link DebugHandlersFactory}s on demand via {@link GraalServices#load(Class)}.
47 return GraalServices.load(DebugHandlersFactory.class).iterator();
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/xs/
H A DXSLoader.java28 * An interface that provides a method to load XML Schema documents. This
35 * behavior of the load methods. The configuration may support the
92 public XSModel load(LSInput is); method in interface:XSLoader
/openjdk10/jdk/test/java/lang/instrument/
H A DRedefineBigClass.sh73 -Xlog:redefine+class+load=debug,redefine+class+load+exceptions=info ${NMT} \
H A DRetransformBigClass.sh73 -Xlog:redefine+class+load=debug,redefine+class+load+exceptions=info ${NMT} \
/openjdk10/jdk/test/java/security/KeyStore/
H A DCheckInputStream.java27 * @summary The input stream supplied to KeyStore.load should remain open.
43 keystore.load(inStream, PASSWORD);
H A DPBETest.java80 KeyStore keystore = load(KEYSTORE_TYPE, KEYSTORE, PASSWORD);
93 KeyStore keystore2 = load(NEW_KEYSTORE_TYPE, null, null);
125 keystore2 = load(NEW_KEYSTORE_TYPE, filename, PASSWORD);
149 private static KeyStore load(String type, String path, char[] password) method in class:PBETest
157 keystore.load(inStream, password);
162 keystore.load(null, null);
/openjdk10/jdk/test/javax/swing/plaf/synth/6771547/
H A DSynthTest.java42 laf.load(in, SynthTest.class);
/openjdk10/nashorn/test/script/basic/
H A Dfileline.js41 load(__DIR__ + "loadedfile.js");
H A DJDK-8010924.js32 load("nashorn:mozilla_compat.js");
52 engine.eval("load('nashorn:mozilla_compat.js')");
H A Dcompile-octane.js40 load(__DIR__ + 'octane-payload.js');
121 //load base into the new global so we get BenchmarkSuite etc
122 newGlobal.load(base);
124 //load all files in the single benchmark
135 newGlobal.load(new java.io.File(path + file).toURL());
/openjdk10/nashorn/test/script/maptests/
H A Dpoint.js45 load(__DIR__ + "maputil.js");
H A Dproto.js30 load(__DIR__ + "maputil.js");
/openjdk10/nashorn/samples/
H A Ddatepick.js39 load("fx:controls.js");
/openjdk10/nashorn/test/script/nosecurity/treeapi/
H A Ddefaultparams.js32 load(__DIR__ + "utils.js")
H A DobjectLiteral.js33 load(__DIR__ + "utils.js")
H A Drest.js32 load(__DIR__ + "utils.js")
H A Ddestructuring_params.js32 load(__DIR__ + "utils.js")
/openjdk10/jdk/src/java.management/share/classes/javax/management/loading/
H A DDefaultLoaderRepository.java37 * It provides the necessary methods to load classes using the registered
59 * Go through the list of class loaders and try to load the requested
75 return load(null, className);
80 * class loader, then try to load
98 return load(loader, className);
101 private static Class<?> load(ClassLoader without, String className) method in class:DefaultLoaderRepository
/openjdk10/jdk/test/java/util/ServiceLoader/
H A DReloadTest.java50 ServiceLoader<ScriptEngineFactory> sl = load(ScriptEngineFactory.class);
66 ServiceLoader<ScriptEngineFactory> sl = load(ScriptEngineFactory.class);
74 ServiceLoader<ScriptEngineFactory> sl = load(ScriptEngineFactory.class);
83 ServiceLoader<ScriptEngineFactory> sl = load(ScriptEngineFactory.class);
91 ServiceLoader<ScriptEngineFactory> sl = load(ScriptEngineFactory.class);
/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/
H A DTimeouts.java63 load();
127 * @param stream Stream to load timeouts from.
134 defaults.load(stream);
140 * @param fileName File to load timeouts from.
148 defaults.load(fileName);
162 defaults.load();
336 * @param stream Stream to load timeouts from.
337 * @see org.netbeans.jemmy.Timeouts#load(String)
338 * @see org.netbeans.jemmy.Timeouts#load()
341 public void load(InputStrea method in class:Timeouts
364 public void load(String fileName) method in class:Timeouts
380 public void load() method in class:Timeouts
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/
H A DXML11EntityScanner.java70 // load more characters, if needed
72 load(0, true, true);
98 // load more characters, if needed
100 load(0, true, true);
114 load(1, false, false);
151 // load more characters, if needed
153 load(0, true, true);
177 if (load(length, false, false)) {
198 if (load(length, false, false)) {
225 if (load(lengt
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/nio/channels/spi/
H A DAsynchronousChannelProvider.java75 static final AsynchronousChannelProvider provider = load();
77 private static AsynchronousChannelProvider load() { method in class:AsynchronousChannelProvider.ProviderHolder
114 ServiceLoader.load(AsynchronousChannelProvider.class,
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/catalog/
H A DCatalogManager.java73 catalog.load();
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/
H A DMediaTracker.java111 * // First wait for the background image to fully load
298 * If the value of the {@code load} flag is {@code true},
306 * @param load if {@code true}, start loading any
316 public boolean checkAll(boolean load) { argument
317 return checkAll(load, true);
320 private synchronized boolean checkAll(boolean load, boolean verify) { argument
324 if ((cur.getStatus(load, verify) & DONE) == 0) {
459 * If the value of {@code load} is {@code true}, then
462 * @param load if {@code true}, start loading
472 public int statusAll(boolean load) { argument
476 statusAll(boolean load, boolean verify) argument
533 checkID(int id, boolean load) argument
537 checkID(int id, boolean load, boolean verify) argument
708 statusID(int id, boolean load) argument
712 statusID(int id, boolean load, boolean verify) argument
[all...]
/openjdk10/jdk/test/java/time/test/java/time/chrono/
H A DTestServiceLoader.java80 ServiceLoader<Chronology> loader = ServiceLoader.load(Chronology.class, null);

Completed in 144 milliseconds

1234567891011>>