Searched refs:index (Results 76 - 100 of 1574) sorted by relevance

1234567891011>>

/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/calendar/assets/
H A Dcalendar-core.css28 z-index:0;
45 z-index:1;
53 z-index:1;
59 z-index:1;
70 z-index:1;
76 z-index:1;
/forgerock/openam/openam-core/src/main/java/com/iplanet/ums/util/
H A DGuidUtils.java63 int index = dn.indexOf("o=");
64 if (index > -1) {
65 return (new Guid(dn.substring(index, dn.length())));
/forgerock/openam/openam-distribution/src/main/amserver/scripts/sql/
H A Damhadbcreate.sql11 create index sunwam_session_id on sunwam_session(id);
12 create index sunwam_session_exp_time on sunwam_session(expiration_time);
13 create index sunwam_session_uuid on sunwam_session(uuid);
14 create index sunwam_session_sessionstate on sunwam_session(sessionstate);
23 create index sunwam_session_ext_id on sunwam_session_ext(id);
24 create index sunwam_session_ext_exp_time on sunwam_session_ext(expiration_time);
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DTimeDocumentFilter.java71 int index = text.indexOf(":");
72 if (index == -1)
78 // index value is relative to offset
79 if (index > 0)
81 fb.remove(offset, index);
83 if (index < length - 1)
85 fb.remove(offset + index + 1, length - index -1);
101 int index = t.indexOf(":");
103 if (index !
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DTimeDocumentFilter.java70 int index = text.indexOf(":");
71 if (index == -1)
77 // index value is relative to offset
78 if (index > 0)
80 fb.remove(offset, index);
82 if (index < length - 1)
84 fb.remove(offset + index + 1, length - index -1);
100 int index = t.indexOf(":");
102 if (index !
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DTimeDocumentFilter.java71 int index = text.indexOf(":");
72 if (index == -1)
78 // index value is relative to offset
79 if (index > 0)
81 fb.remove(offset, index);
83 if (index < length - 1)
85 fb.remove(offset + index + 1, length - index -1);
101 int index = t.indexOf(":");
103 if (index !
[all...]
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DTimeDocumentFilter.java70 int index = text.indexOf(":");
71 if (index == -1)
77 // index value is relative to offset
78 if (index > 0)
80 fb.remove(offset, index);
82 if (index < length - 1)
84 fb.remove(offset + index + 1, length - index -1);
100 int index = t.indexOf(":");
102 if (index !
[all...]
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DTimeDocumentFilter.java71 int index = text.indexOf(":");
72 if (index == -1)
78 // index value is relative to offset
79 if (index > 0)
81 fb.remove(offset, index);
83 if (index < length - 1)
85 fb.remove(offset + index + 1, length - index -1);
101 int index = t.indexOf(":");
103 if (index !
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/components/
H A DTimeDocumentFilter.java67 int index = text.indexOf(":");
68 if (index == -1)
74 // index value is relative to offset
75 if (index > 0)
77 fb.remove(offset, index);
79 if (index < length - 1)
81 fb.remove(offset + index + 1, length - index -1);
95 int index = t.indexOf(":");
97 if (index !
[all...]
/forgerock/opendj2/src/server/org/opends/server/backends/jeb/
H A DVerifyConfig.java90 * Add the name of an index to those indexes to be verified for completeness.
91 * @param index The name of an index to be verified for completeness.
93 public void addCompleteIndex(String index) argument
95 completeList.add(index);
108 * Add the name of an index to those indexes to be verified for cleanliness.
109 * @param index The name of an index to be verified for cleanliness.
111 public void addCleanIndex(String index) argument
113 cleanList.add(index);
[all...]
H A DState.java82 * Return the key associated with the index in the state database.
84 * @param index The index we need the key for.
88 private DatabaseEntry keyForIndex(DatabaseContainer index) argument
92 index.getName().replace(entryContainer.getDatabasePrefix(), "");
102 * @param index The index storing the trusted state info.
106 public boolean removeIndexTrustState(Transaction txn, DatabaseContainer index) argument
109 DatabaseEntry key = keyForIndex(index);
120 * Fetch index stat
126 getIndexTrustState(Transaction txn, DatabaseContainer index) argument
152 putIndexTrustState(Transaction txn, DatabaseContainer index, boolean trusted) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/
H A DVerifyConfig.java91 * Add the name of an index to those indexes to be verified for completeness.
92 * @param index The name of an index to be verified for completeness.
94 public void addCompleteIndex(String index) argument
96 completeList.add(index);
109 * Add the name of an index to those indexes to be verified for cleanliness.
110 * @param index The name of an index to be verified for cleanliness.
112 public void addCleanIndex(String index) argument
114 cleanList.add(index);
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/
H A DVerifyConfig.java91 * Add the name of an index to those indexes to be verified for completeness.
92 * @param index The name of an index to be verified for completeness.
94 public void addCompleteIndex(String index) argument
96 completeList.add(index);
109 * Add the name of an index to those indexes to be verified for cleanliness.
110 * @param index The name of an index to be verified for cleanliness.
112 public void addCleanIndex(String index) argument
114 cleanList.add(index);
[all...]
H A DState.java83 * Return the key associated with the index in the state database.
85 * @param index The index we need the key for.
89 private DatabaseEntry keyForIndex(DatabaseContainer index) argument
93 index.getName().replace(entryContainer.getDatabasePrefix(), "");
103 * @param index The index storing the trusted state info.
107 public boolean removeIndexTrustState(Transaction txn, DatabaseContainer index) argument
110 DatabaseEntry key = keyForIndex(index);
121 * Fetch index stat
127 getIndexTrustState(Transaction txn, DatabaseContainer index) argument
153 putIndexTrustState(Transaction txn, DatabaseContainer index, boolean trusted) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/
H A DVerifyConfig.java90 * Add the name of an index to those indexes to be verified for completeness.
91 * @param index The name of an index to be verified for completeness.
93 public void addCompleteIndex(String index) argument
95 completeList.add(index);
108 * Add the name of an index to those indexes to be verified for cleanliness.
109 * @param index The name of an index to be verified for cleanliness.
111 public void addCleanIndex(String index) argument
113 cleanList.add(index);
[all...]
H A DState.java82 * Return the key associated with the index in the state database.
84 * @param index The index we need the key for.
88 private DatabaseEntry keyForIndex(DatabaseContainer index) argument
92 index.getName().replace(entryContainer.getDatabasePrefix(), "");
102 * @param index The index storing the trusted state info.
106 public boolean removeIndexTrustState(Transaction txn, DatabaseContainer index) argument
109 DatabaseEntry key = keyForIndex(index);
120 * Fetch index stat
126 getIndexTrustState(Transaction txn, DatabaseContainer index) argument
152 putIndexTrustState(Transaction txn, DatabaseContainer index, boolean trusted) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/
H A DVerifyConfig.java91 * Add the name of an index to those indexes to be verified for completeness.
92 * @param index The name of an index to be verified for completeness.
94 public void addCompleteIndex(String index) argument
96 completeList.add(index);
109 * Add the name of an index to those indexes to be verified for cleanliness.
110 * @param index The name of an index to be verified for cleanliness.
112 public void addCleanIndex(String index) argument
114 cleanList.add(index);
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/ums/
H A DIMembership.java57 public Guid getMemberIDAt(int index) throws UMSException; argument
/forgerock/openidm-v4/openidm-zip/src/main/resources/samples/multiplepasswords/script/
H A DonCreate-user-custom.js34 for (var index in historyFields) {
35 var field = historyFields[index];
/forgerock/openam/openam-core/src/main/java/com/iplanet/ums/
H A DIMembership.java57 public Guid getMemberIDAt(int index) throws UMSException; argument
/forgerock/opendj2/src/server/org/opends/server/replication/service/
H A DReplInputStream.java45 private int index; field in class:ReplInputStream
107 index = 0;
113 receivedLength = bytes.length - index;
125 System.arraycopy(bytes, index, b, off, copiedLength);
126 index += copiedLength;
128 if (index == bytes.length)
/forgerock/opendj2-hg/src/server/org/opends/server/replication/service/
H A DReplInputStream.java45 private int index; field in class:ReplInputStream
107 index = 0;
113 receivedLength = bytes.length - index;
125 System.arraycopy(bytes, index, b, off, copiedLength);
126 index += copiedLength;
128 if (index == bytes.length)
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/service/
H A DReplInputStream.java45 private int index; field in class:ReplInputStream
107 index = 0;
113 receivedLength = bytes.length - index;
125 System.arraycopy(bytes, index, b, off, copiedLength);
126 index += copiedLength;
128 if (index == bytes.length)
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/task/
H A DDeleteIndexTask.java61 * The task that is launched when an index must be deleted.
83 for (final AbstractIndexDescriptor index : indexesToDelete)
85 backendSet.add(index.getBackend().getBackendID());
161 for (final AbstractIndexDescriptor index : indexesToDelete)
182 final List<String> args = getObfuscatedCommandLineArguments(getDSConfigCommandLineArguments(index));
184 printEquivalentCommandLine(getConfigCommandLineName(index), args,
194 if (isVLVIndex(index))
197 Utilities.getProgressWithPoints(INFO_CTRL_PANEL_DELETING_VLV_INDEX.get(index.getName()),
203 Utilities.getProgressWithPoints(INFO_CTRL_PANEL_DELETING_INDEX.get(index.getName()),
210 deleteIndex(getInfo().getDirContext(), index);
250 isVLVIndex(AbstractIndexDescriptor index) argument
264 deleteIndex(AbstractIndexDescriptor index) argument
290 deleteIndex(final InitialLdapContext ctx, final AbstractIndexDescriptor index) argument
300 removeBackendIndex(final PluggableBackendCfgClient backend, final AbstractIndexDescriptor index) argument
335 getConfigCommandLineName(AbstractIndexDescriptor index) argument
379 getDSConfigCommandLineArguments(AbstractIndexDescriptor index) argument
[all...]
/forgerock/openam-v13/openam-server-only/src/main/webapp/com_sun_web_ui/js/
H A Dorderablelist.js56 // get the selected list index
57 index = this.selectedList.selectedIndex;
66 if (index != -1) {
67 this.updateMoveButtons(index);
78 // determine the new selected index of the selected list
79 var index = this.selectedList.selectedIndex;
96 this.updateMoveButtons(index);
104 // get the first selected index in the selected list
105 var index = this.selectedList.selectedIndex;
107 // index t
[all...]

Completed in 85 milliseconds

1234567891011>>