Searched defs:first (Results 1 - 8 of 8) sorted by relevance

/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/authentication/
H A DEisBackendPrincipal.java135 * @param first first String
139 private boolean isEqual(String first, String second) { argument
140 if (first == null && second == null) {
143 if (first == null || second == null) {
146 return (second.equals(first));
/glassfish-3.1.2/installer/src/main/java/org/glassfish/installer/conf/
H A DPasswordFile.java117 private static char[] concat(char[] first, char[] second) { argument
118 char[] result = Arrays.copyOf(first, first.length + second.length);
119 System.arraycopy(second, 0, result, first.length, second.length);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/util/
H A DExtension.java303 * Return <code>true</code> if the first version number is greater than
306 * @param first First version number (dotted decimal)
311 private boolean isNewer(String first, String second) argument
314 if ((first == null) || (second == null))
316 if (first.equals(second))
319 StringTokenizer fTok = new StringTokenizer(first, ".", true);
/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/impl/
H A DRoundRobinPolicy.java65 * The list of endpoints are randomized the very first time.
80 * bootstrapping(i.e. when the client first starts up.) This list will comprise
83 * This list will be used to make the first lookup call. During the first
216 // text address that appears in the first list.
217 private List<ClusterInstanceInfo> merge( List<ClusterInstanceInfo> first, argument
221 result.addAll( first ) ;
224 if (!containsMatchingAddress(first, si.host(), si.port() )) {
475 boolean first = true ;
477 if (first) {
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/loader/
H A DWebappLoader.java106 * these repositories will be consulted first to locate the class. If it
120 private static boolean first = true; field in class:WebappLoader
645 if (first) {
646 first = false;
1142 boolean first = true;
1147 if (!first) {
1150 first = false;
1172 if (!first) {
1175 first = false;
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/base/
H A DResultSetWrapper.java89 * before the first row; the first call to the method
90 * <code>next</code> makes the first row the current row; the
131 * Note that you must first call one of the getter methods
149 * @param columnIndex the first column is 1, the second is 2, ...
163 * @param columnIndex the first column is 1, the second is 2, ...
177 * @param columnIndex the first column is 1, the second is 2, ...
191 * @param columnIndex the first column is 1, the second is 2, ...
205 * @param columnIndex the first column is 1, the second is 2, ...
219 * @param columnIndex the first colum
993 public boolean first() throws SQLException { method in class:ResultSetWrapper
[all...]
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc30/
H A Djdbc30.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/sql/ javax/sql/ConnectionEventListener.class ConnectionEventListener. ...
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc40/
H A Djdbc40.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/sql/ javax/sql/StatementEvent.class StatementEvent. ...

Completed in 56 milliseconds