Searched refs:configure (Results 1 - 25 of 75) sorted by relevance

123

/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/spi/orb/
H A DORBConfigurator.java27 /** Interface used to configure an ORB instance. The DataCollector dc has all
28 * available config info available. The configure method may constructor a
30 * and parse this information. The configure method may also register ORB
35 void configure( DataCollector dc, ORB orb ) ; method in interface:ORBConfigurator
/openjdk9/
H A Dconfigure25 # This is a thin wrapper which will call the real configure script, and
35 bash ${-:+-$-} -c ". $this_script_dir/common/autoconf/configure" $this_script_dir/configure CHECKME $this_script_dir "$@"
/openjdk9/common/autoconf/
H A Dconfigure27 echo "Not all features of configure will be available."
28 echo "Use the 'configure' script in the top-level directory instead."
32 # The TOPDIR variable is passed on to configure.ac.
56 ### Test that the generated configure is up-to-date
72 for file in $conf_script_dir/configure.ac $conf_script_dir/*.m4 ; do
73 if test $file -nt $conf_script_dir/generated-configure.sh; then
74 echo "Warning: The configure source files is newer than the generated files."
79 if test -e $conf_custom_script_dir/generated-configure.sh; then
80 # If custom source configure is available, make sure it is up-to-date as well.
81 for file in $conf_script_dir/configure
[all...]
H A Dautogen.sh35 # Then replace "magic" variables in configure.ac and append the output
37 cat $script_dir/configure.ac | sed -e "s|@DATE_WHEN_GENERATED@|$TIMESTAMP|" | \
67 echo "You need autoconf installed to be able to regenerate the configure script"
75 echo "Generating generated-configure.sh"
76 generate_configure_script "$script_dir/generated-configure.sh" 'cat'
79 # We have custom sources available; also generate configure script
81 echo "Generating custom generated-configure.sh"
82 generate_configure_script "$custom_script_dir/generated-configure.sh" 'sed -e "s|#CUSTOM_AUTOCONF_INCLUDE|m4_include([$custom_hook])|"'
/openjdk9/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/
H A DStringWriter.java45 // configure write* (reset configure write*)*
61 StringWriter configure(CharSequence input, boolean huffman) { method in class:StringWriter
62 return configure(input, 0, input.length(), huffman);
65 StringWriter configure(CharSequence input, int start, int end, method in class:StringWriter
73 plainWriter.configure(input, start, end);
74 intWriter.configure(end - start, 7, 0b0000_0000);
77 intWriter.configure(Huffman.INSTANCE.lengthOf(input, start, end),
H A DIndexNameValueWriter.java52 intWriter.configure(index, prefix, pattern);
58 intWriter.configure(0, prefix, pattern);
59 nameWriter.configure(name, useHuffman);
64 valueWriter.configure(value, useHuffman);
H A DIndexedWriter.java36 intWriter.configure(index, 7, 0b1000_0000);
H A DIntegerReader.java47 public IntegerReader configure(int N) { method in class:IntegerReader
48 return configure(N, Integer.MAX_VALUE);
52 // Why is it important to configure 'maxValue' here. After all we can wait
61 public IntegerReader configure(int N, int maxValue) { method in class:IntegerReader
H A DSizeUpdateWriter.java38 intWriter.configure(size, 5, 0b0010_0000);
H A DDecoder.java252 integerReader.configure(7);
260 integerReader.configure(4);
267 integerReader.configure(6);
274 integerReader.configure(4);
278 integerReader.configure(5);
H A DISO_8859_1.java73 public Writer configure(CharSequence source, int start, int end) { method in class:ISO_8859_1.Writer
H A DIntegerWriter.java54 public IntegerWriter configure(int value, int N, int payload) { method in class:IntegerWriter
H A DStringReader.java65 intReader.configure(7);
/openjdk9/jdk/test/sun/security/tools/jarsigner/alt/test.dummy/org/test/dummy/
H A DDummyProvider.java34 public Provider configure(String configArg) { method in class:DummyProvider
/openjdk9/jdk/test/java/net/HttpURLConnection/SetAuthenticator/
H A DHTTPTestClient.java52 configure(conn, auth);
61 configure(conn, auth);
76 private static void configure(HttpURLConnection conn, Authenticator auth) method in class:HTTPTestClient
/openjdk9/jdk/src/jdk.httpserver/share/classes/com/sun/net/httpserver/
H A DHttpsConfigurator.java39 * This class is used to configure the https parameters for each incoming
41 * the {@link #configure(HttpsParameters)} method in order to change
51 * public void configure (HttpsParameters params) {
96 * Called by the HttpsServer to configure the parameters
98 * The implementation of configure() must call
106 * configure() may be overridden in order to modify this behavior.
112 public void configure (HttpsParameters params) { method in class:HttpsConfigurator
/openjdk9/jdk/test/java/net/httpclient/http2/jdk.incubator.httpclient/jdk/incubator/http/internal/hpack/
H A DBinaryPrimitivesTest.java92 w.reset().configure(expected, N, 1).write(buf);
96 r.reset().configure(N).read(buf);
114 w.reset().configure(expected, N, rnd.nextInt()).write(bb);
120 r.configure(N);
149 w.configure(expected, N, payload); // TODO: test for payload it can be read after written
158 r.configure(N).read(concat(buf));
193 .configure(CharBuffer.wrap(expected), 0, expected.length(), false)
234 writer.configure(expected, 0, expected.length(), false);
270 .configure(CharBuffer.wrap(expected), 0, expected.length(), false)
336 reader.configure(
[all...]
/openjdk9/jdk/test/sun/security/provider/SecureRandom/AbstractDrbg/java.base/sun/security/provider/
H A DS.java77 configure(params);
114 configure(params);
/openjdk9/make/
H A DUpdateBuildDocs.gmk38 $(info No pandoc executable was detected by configure)
/openjdk9/jdk/src/jdk.internal.le/share/classes/jdk/internal/jline/
H A DTerminalFactory.java131 public static synchronized void configure(final String type) { method in class:TerminalFactory
136 public static synchronized void configure(final Type type) { method in class:TerminalFactory
138 configure(type.name().toLowerCase());
/openjdk9/make/devkit/
H A DcreatePandocBundle.sh58 ./configure --prefix=$TMPDIR/pandoc/usr
/openjdk9/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/plugin/
H A DPlugin.java182 public default void configure(Map<String, String> config) { method in interface:Plugin
/openjdk9/jdk/src/jdk.internal.opt/share/classes/jdk/internal/joptsimple/
H A DOptionSpecTokenizer.java120 void configure( OptionParser parser ) { method in class:OptionSpecTokenizer
/openjdk9/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/
H A DExcludeFilesPlugin.java80 public void configure(Map<String, String> config) { method in class:ExcludeFilesPlugin
H A DExcludePlugin.java80 public void configure(Map<String, String> config) { method in class:ExcludePlugin

Completed in 159 milliseconds

123