Searched refs:maxRecords (Results 1 - 3 of 3) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/log/handlers/
H A DLogReadDBHandler.java71 private int maxRecords = 0; field in class:LogReadDBHandler
177 this.maxRecords = Integer.parseInt(maxRecordsStr);
181 "DBlogRecRead: maxRecords error (" + maxRecordsStr +
184 this.maxRecords = LogConstants.MAX_RECORDS_DEFAULT_INT;
284 if (numberOfRows > this.maxRecords) {
313 if (numberOfRows > this.maxRecords) {
314 rowsToAlloc = this.maxRecords;
324 // then we just have to get the "this.maxRecords" records.
331 if (numberOfRows > this.maxRecords) {
332 skipThisManyRecords = numberOfRows - this.maxRecords;
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/log/handlers/
H A DLogReadDBHandler.java71 private int maxRecords = 0; field in class:LogReadDBHandler
177 this.maxRecords = Integer.parseInt(maxRecordsStr);
181 "DBlogRecRead: maxRecords error (" + maxRecordsStr +
184 this.maxRecords = LogConstants.MAX_RECORDS_DEFAULT_INT;
284 if (numberOfRows > this.maxRecords) {
313 if (numberOfRows > this.maxRecords) {
314 rowsToAlloc = this.maxRecords;
324 // then we just have to get the "this.maxRecords" records.
331 if (numberOfRows > this.maxRecords) {
332 skipThisManyRecords = numberOfRows - this.maxRecords;
[all...]
/forgerock/openidm-v4/openidm-scheduler/src/main/java/org/forgerock/openidm/scheduler/impl/
H A DTaskScannerJob.java126 Integer maxRecords = taskScannerContext.getMaxRecords();
127 if (maxRecords == null) {
130 taskScannerContext.setNumberOfTasksToProcess(Math.min(results.size(), maxRecords));
136 List<JsonValue> resultSets = splitResultsOverThreads(results, taskScannerContext.getNumberOfThreads(), maxRecords);

Completed in 31 milliseconds