Searched refs:EOL (Results 1 - 25 of 586) sorted by relevance

1234567891011>>

/forgerock/opendj-b2.6/src/server/org/opends/server/tools/
H A DJavaPropertiesTool.java32 import static org.opends.server.util.ServerConstants.EOL;
500 buf.append("#!/bin/sh"+EOL+EOL);
505 "# See if the environment variables for java home are set"+EOL+
506 "# in the path and try to figure it out."+EOL+
507 "if test ! -f \"${OPENDJ_JAVA_BIN}\""+EOL+
508 "then"+EOL+
509 " if test ! -d \"${OPENDJ_JAVA_HOME}\""+EOL+
510 " then"+EOL+
511 " if test ! -f \"${OPENDS_JAVA_BIN}\""+EOL
[all...]
/forgerock/opendj2/src/server/org/opends/server/tools/
H A DJavaPropertiesTool.java31 import static org.opends.server.util.ServerConstants.EOL;
483 buf.append("#!/bin/sh"+EOL+EOL);
488 "# See if the environment variables for java home are set"+EOL+
489 "# in the path and try to figure it out."+EOL+
490 "if test ! -f \"${OPENDJ_JAVA_BIN}\""+EOL+
491 "then"+EOL+
492 " if test ! -d \"${OPENDJ_JAVA_HOME}\""+EOL+
493 " then"+EOL+
494 " if test ! -f \"${OPENDS_JAVA_BIN}\""+EOL
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/tools/
H A DJavaPropertiesTool.java32 import static org.opends.server.util.ServerConstants.EOL;
500 buf.append("#!/bin/sh"+EOL+EOL);
505 "# See if the environment variables for java home are set"+EOL+
506 "# in the path and try to figure it out."+EOL+
507 "if test ! -f \"${OPENDJ_JAVA_BIN}\""+EOL+
508 "then"+EOL+
509 " if test ! -d \"${OPENDJ_JAVA_HOME}\""+EOL+
510 " then"+EOL+
511 " if test ! -f \"${OPENDS_JAVA_BIN}\""+EOL
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/tools/
H A DJavaPropertiesTool.java31 import static org.opends.server.util.ServerConstants.EOL;
483 buf.append("#!/bin/sh"+EOL+EOL);
488 "# See if the environment variables for java home are set"+EOL+
489 "# in the path and try to figure it out."+EOL+
490 "if test ! -f \"${OPENDJ_JAVA_BIN}\""+EOL+
491 "then"+EOL+
492 " if test ! -d \"${OPENDJ_JAVA_HOME}\""+EOL+
493 " then"+EOL+
494 " if test ! -f \"${OPENDS_JAVA_BIN}\""+EOL
[all...]
/forgerock/opendj-b2.6/src/build-tools/org/opends/build/tools/
H A DGenerateRpm.java212 sb.append("%define _topdir " + topDirAbsolutePath + EOL);
213 sb.append("%define _arch noarch" + EOL);
214 sb.append("%define _prefix " + prefix + EOL);
215 sb.append("%define _pre " + opendsDir + EOL);
216 sb.append("%define __os_install_post %{nil}" + EOL);
217 sb.append(EOL);
218 sb.append("# =========================" + EOL);
219 sb.append("# Header" + EOL);
220 sb.append("# =========================" + EOL);
221 sb.append("# Short Description" + EOL);
[all...]
/forgerock/opendj2.6.2/src/build-tools/org/opends/build/tools/
H A DGenerateRpm.java212 sb.append("%define _topdir " + topDirAbsolutePath + EOL);
213 sb.append("%define _arch noarch" + EOL);
214 sb.append("%define _prefix " + prefix + EOL);
215 sb.append("%define _pre " + opendsDir + EOL);
216 sb.append("%define __os_install_post %{nil}" + EOL);
217 sb.append(EOL);
218 sb.append("# =========================" + EOL);
219 sb.append("# Header" + EOL);
220 sb.append("# =========================" + EOL);
221 sb.append("# Short Description" + EOL);
[all...]
/forgerock/opendj2-jel-hg/src/build-tools/org/opends/build/tools/
H A DGenerateRpm.java212 sb.append("%define _topdir " + topDirAbsolutePath + EOL);
213 sb.append("%define _arch noarch" + EOL);
214 sb.append("%define _prefix " + prefix + EOL);
215 sb.append("%define _pre " + opendsDir + EOL);
216 sb.append("%define __os_install_post %{nil}" + EOL);
217 sb.append(EOL);
218 sb.append("# =========================" + EOL);
219 sb.append("# Header" + EOL);
220 sb.append("# =========================" + EOL);
221 sb.append("# Short Description" + EOL);
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/tools/
H A DJavaPropertiesTool.java479 buf.append("#!/bin/sh").append(EOL).append(EOL);
483 buf.append("# See if the environment variables for java home are set").append(EOL)
484 .append("# in the path and try to figure it out.").append(EOL)
485 .append("if test ! -f \"${OPENDJ_JAVA_BIN}\"").append(EOL)
486 .append("then").append(EOL)
487 .append(" if test ! -d \"${OPENDJ_JAVA_HOME}\"").append(EOL)
488 .append(" then").append(EOL)
489 .append(" if test ! -f \"${OPENDS_JAVA_BIN}\"").append(EOL)
490 .append(" then").append(EOL)
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DCommonEntryCacheTestCase.java109 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL +
117 " in the cache. Cache contents:" + ServerConstants.EOL +
124 " in the cache. Cache contents:" + ServerConstants.EOL +
143 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL +
151 " in the cache. Cache contents:" + ServerConstants.EOL +
158 " in the cache. Cache contents:" + ServerConstants.EOL +
177 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL +
185 " in the cache. Cache contents:" + ServerConstants.EOL +
192 " in the cache. Cache contents:" + ServerConstants.EOL +
211 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DCommonEntryCacheTestCase.java108 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL +
116 " in the cache. Cache contents:" + ServerConstants.EOL +
123 " in the cache. Cache contents:" + ServerConstants.EOL +
142 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL +
150 " in the cache. Cache contents:" + ServerConstants.EOL +
157 " in the cache. Cache contents:" + ServerConstants.EOL +
176 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL +
184 " in the cache. Cache contents:" + ServerConstants.EOL +
191 " in the cache. Cache contents:" + ServerConstants.EOL +
210 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DCommonEntryCacheTestCase.java109 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL +
117 " in the cache. Cache contents:" + ServerConstants.EOL +
124 " in the cache. Cache contents:" + ServerConstants.EOL +
143 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL +
151 " in the cache. Cache contents:" + ServerConstants.EOL +
158 " in the cache. Cache contents:" + ServerConstants.EOL +
177 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL +
185 " in the cache. Cache contents:" + ServerConstants.EOL +
192 " in the cache. Cache contents:" + ServerConstants.EOL +
211 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DCommonEntryCacheTestCase.java108 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL +
116 " in the cache. Cache contents:" + ServerConstants.EOL +
123 " in the cache. Cache contents:" + ServerConstants.EOL +
142 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL +
150 " in the cache. Cache contents:" + ServerConstants.EOL +
157 " in the cache. Cache contents:" + ServerConstants.EOL +
176 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL +
184 " in the cache. Cache contents:" + ServerConstants.EOL +
191 " in the cache. Cache contents:" + ServerConstants.EOL +
210 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL
[all...]
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DCommonEntryCacheTestCase.java109 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL +
117 " in the cache. Cache contents:" + ServerConstants.EOL +
124 " in the cache. Cache contents:" + ServerConstants.EOL +
143 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL +
151 " in the cache. Cache contents:" + ServerConstants.EOL +
158 " in the cache. Cache contents:" + ServerConstants.EOL +
177 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL +
185 " in the cache. Cache contents:" + ServerConstants.EOL +
192 " in the cache. Cache contents:" + ServerConstants.EOL +
211 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/extensions/
H A DCommonEntryCacheTestCase.java104 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL +
112 " in the cache. Cache contents:" + ServerConstants.EOL +
119 " in the cache. Cache contents:" + ServerConstants.EOL +
138 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL +
146 " in the cache. Cache contents:" + ServerConstants.EOL +
153 " in the cache. Cache contents:" + ServerConstants.EOL +
172 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL +
180 " in the cache. Cache contents:" + ServerConstants.EOL +
187 " in the cache. Cache contents:" + ServerConstants.EOL +
206 "Expected empty cache. " + "Cache contents:" + ServerConstants.EOL
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/tools/
H A DJavaPropertiesTool.java35 import static org.opends.server.util.ServerConstants.EOL;
675 buf.append("goto ").append(javaHomeLabel1).append(EOL).append(EOL)
676 .append(':').append(CHECK_ENV_JAVA_HOME).append(EOL)
678 .append("%\" == \"\" goto checkOpendjJavaHome").append(EOL)
680 .append("%\" goto checkOpendjJavaHome").append(EOL)
681 .append("goto ").append(javaArgsLabel1).append(EOL).append(EOL)
682 .append(":checkOpendjJavaHome").append(EOL);
687 .append("%\" == \"\" goto ").append(javaHomeLabel2).append(EOL)
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/core/
H A DPasswordPolicyFactory.java529 buffer.append(EOL);
535 buffer.append(EOL);
542 buffer.append(EOL);
548 buffer.append(EOL);
556 buffer.append(EOL);
562 buffer.append(EOL);
568 buffer.append(EOL);
574 buffer.append(EOL);
578 buffer.append(EOL);
582 buffer.append(EOL);
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/
H A DSearchRequestProtocolOp.java274 buffer.append(indentBuf).append("Search Request").append(EOL);
275 buffer.append(indentBuf).append(" Base DN: ").append(baseDN).append(EOL);
276 buffer.append(indentBuf).append(" Scope: ").append(scope).append(EOL);
277 buffer.append(indentBuf).append(" Dereference Policy: ").append(dereferencePolicy).append(EOL);
278 buffer.append(indentBuf).append(" Size Limit: ").append(sizeLimit).append(EOL);
279 buffer.append(indentBuf).append(" Time Limit: ").append(timeLimit).append(EOL);
280 buffer.append(indentBuf).append(" Types Only: ").append(typesOnly).append(EOL);
285 buffer.append(EOL);
287 buffer.append(indentBuf).append(" Attributes:").append(EOL);
293 buffer.append(indentBuf).append(" ").append(attribute).append(EOL);
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/
H A DTestListener.java39 import static org.opends.server.util.ServerConstants.EOL;
153 private static final String DIVIDER_LINE = "-------------------------------------------------------------------------------" + EOL;
191 reportStream.println(center("----------------") + EOL);
198 reportStream.println(EOL + DIVIDER_LINE + DIVIDER_LINE + EOL + EOL);
200 reportStream.println(EOL + EOL);
207 reportStream.println(EOL + DIVIDER_LINE + DIVIDER_LINE + EOL
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/
H A DTestListener.java39 import static org.opends.server.util.ServerConstants.EOL;
153 private static final String DIVIDER_LINE = "-------------------------------------------------------------------------------" + EOL;
191 reportStream.println(center("----------------") + EOL);
198 reportStream.println(EOL + DIVIDER_LINE + DIVIDER_LINE + EOL + EOL);
200 reportStream.println(EOL + EOL);
207 reportStream.println(EOL + DIVIDER_LINE + DIVIDER_LINE + EOL
[all...]
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/
H A DTestListener.java39 import static org.opends.server.util.ServerConstants.EOL;
153 private static final String DIVIDER_LINE = "-------------------------------------------------------------------------------" + EOL;
191 reportStream.println(center("----------------") + EOL);
198 reportStream.println(EOL + DIVIDER_LINE + DIVIDER_LINE + EOL + EOL);
200 reportStream.println(EOL + EOL);
207 reportStream.println(EOL + DIVIDER_LINE + DIVIDER_LINE + EOL
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/
H A DTestListener.java143 private static final String DIVIDER_LINE = "-------------------------------------------------------------------------------" + EOL;
183 reportStream.println(center("----------------") + EOL);
190 reportStream.println(EOL + DIVIDER_LINE + DIVIDER_LINE + EOL + EOL);
192 reportStream.println(EOL + EOL);
198 reportStream.println(EOL + DIVIDER_LINE + DIVIDER_LINE + EOL + EOL);
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/
H A DTestListener.java143 private static final String DIVIDER_LINE = "-------------------------------------------------------------------------------" + EOL;
183 reportStream.println(center("----------------") + EOL);
190 reportStream.println(EOL + DIVIDER_LINE + DIVIDER_LINE + EOL + EOL);
192 reportStream.println(EOL + EOL);
198 reportStream.println(EOL + DIVIDER_LINE + DIVIDER_LINE + EOL + EOL);
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/
H A DTestListener.java143 private static final String DIVIDER_LINE = "-------------------------------------------------------------------------------" + EOL;
188 reportStream.println(center("----------------") + EOL);
195 reportStream.println(EOL + DIVIDER_LINE + DIVIDER_LINE + EOL + EOL);
197 reportStream.println(EOL + EOL);
203 reportStream.println(EOL + DIVIDER_LINE + DIVIDER_LINE + EOL + EOL);
[all...]
/forgerock/opendj-v3/opendj-config/src/test/java/org/forgerock/opendj/config/
H A DValidateConfigDefinitionsTest.java50 private static final String EOL = System.getProperty("line.separator"); field in class:ValidateConfigDefinitionsTest
96 + " instead of " + ldapObjectclassName).append(EOL + EOL);
107 + " has the following problems: " + EOL + errors);
172 + expectedLdapAttr + " instead of " + ldapAttrName).append(EOL + EOL);
182 + ldapAttrName + ", but this attribute is not in the schema ").append(EOL + EOL);
190 + " is declared as single-valued.").append(EOL + EOL);
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/admin/
H A DValidateConfigDefinitionsTest.java101 " instead of " + ldapObjectclassName).append(EOL + EOL);
111 Assert.fail("The configuration definition for " + objectDef.getName() + " has the following problems: " + EOL +
193 ", the LDAP attribute must be " + expectedLdapAttr + " instead of " + ldapAttrName).append(EOL + EOL);
203 " to use ldap attribute " + ldapAttrName + ", but this attribute is not in the schema ").append(EOL + EOL);
210 " is declared as single-valued.").append(EOL + EOL);
219 " is declared as mandatory in the schema.").append(EOL
[all...]

Completed in 58 milliseconds

1234567891011>>