| /forgerock/opendj2/src/server/org/opends/server/admin/ |
| H A D | DurationUnit.java | 50 HOURS((long) 60 * 60 * 1000, "h", "hours"), 161 String hours = m1.group(6); 177 if (hours != null) { 178 duration += Long.valueOf(hours) * HOURS.getDuration(); 243 * comprised of one or more of the number of weeks, days, hours,
|
| /forgerock/opendj-b2.6/src/server/org/opends/server/admin/ |
| H A D | DurationUnit.java | 51 HOURS((long) 60 * 60 * 1000, "h", "hours"), 162 String hours = m1.group(6); 178 if (hours != null) { 179 duration += Long.valueOf(hours) * HOURS.getDuration(); 244 * comprised of one or more of the number of weeks, days, hours,
|
| /forgerock/opendj2/ext/ant/lib/ |
| H A D | ant.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |
| /forgerock/opendj-b2.6/tests/staf-tests/shared/python/ |
| H A D | common.py | 118 self.hours=0 121 self.hours,self.minutes,self.seconds=clocktime.split(':') 122 return int(self.hours)*7200+int(self.minutes)*60+int(self.seconds)
|
| /forgerock/opendj-b2.6/ext/ant/lib/ |
| H A D | ant.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |
| /forgerock/opendj2/tests/staf-tests/shared/python/ |
| H A D | common.py | 117 self.hours=0 120 self.hours,self.minutes,self.seconds=clocktime.split(':') 121 return int(self.hours)*7200+int(self.minutes)*60+int(self.seconds)
|
| /forgerock/opendj2.6.2/src/server/org/opends/server/admin/ |
| H A D | DurationUnit.java | 51 HOURS((long) 60 * 60 * 1000, "h", "hours"), 162 String hours = m1.group(6); 178 if (hours != null) { 179 duration += Long.valueOf(hours) * HOURS.getDuration(); 244 * comprised of one or more of the number of weeks, days, hours,
|
| /forgerock/opendj2.6.2/ext/ant/lib/ |
| H A D | ant.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |
| /forgerock/opendj2.6.2/tests/staf-tests/shared/python/ |
| H A D | common.py | 118 self.hours=0 121 self.hours,self.minutes,self.seconds=clocktime.split(':') 122 return int(self.hours)*7200+int(self.minutes)*60+int(self.seconds)
|
| /forgerock/opendj2-jel-hg/tests/staf-tests/shared/python/ |
| H A D | common.py | 118 self.hours=0 121 self.hours,self.minutes,self.seconds=clocktime.split(':') 122 return int(self.hours)*7200+int(self.minutes)*60+int(self.seconds)
|
| /forgerock/opendj2-hg/tests/staf-tests/shared/python/ |
| H A D | common.py | 117 self.hours=0 120 self.hours,self.minutes,self.seconds=clocktime.split(':') 121 return int(self.hours)*7200+int(self.minutes)*60+int(self.seconds)
|
| /forgerock/opendj2-hg/ext/ant/lib/ |
| H A D | ant.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |
| /forgerock/opendj2-hg/src/server/org/opends/server/admin/ |
| H A D | DurationUnit.java | 50 HOURS((long) 60 * 60 * 1000, "h", "hours"), 161 String hours = m1.group(6); 177 if (hours != null) { 178 duration += Long.valueOf(hours) * HOURS.getDuration(); 243 * comprised of one or more of the number of weeks, days, hours,
|
| /forgerock/opendj2-jel-hg/src/server/org/opends/server/admin/ |
| H A D | DurationUnit.java | 51 HOURS((long) 60 * 60 * 1000, "h", "hours"), 162 String hours = m1.group(6); 178 if (hours != null) { 179 duration += Long.valueOf(hours) * HOURS.getDuration(); 244 * comprised of one or more of the number of weeks, days, hours,
|
| /forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/ldap/ |
| H A D | LDAPAuthUtils.java | 1463 int hours = (sec%(24*60*60)) / 3600; 1467 if (hours <= 0 && minutes <= 0 && seconds <= 0) { 1472 expTime.append(hours).append(SPACE).append(bundle.getString("hours")).append(COLON).append(SPACE);
|
| /forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/utils/ |
| H A D | TimeDuration.java | 96 long hours; 113 hours = timeInSeconds / 3600; 114 timeInSeconds = timeInSeconds - (hours * 3600); 119 return (days + "d:" + hours + "h:" + minutes + "m:" + seconds + "s:" 121 } else if (hours > 0) { 122 return (hours + "h:" + minutes + "m:" + seconds + "s:"
|
| /forgerock/openam-v13/openam-shared/src/test/java/com/sun/identity/shared/ |
| H A D | DateUtilsTest.java | 167 private Date utcDate(int year, int month, int date, int hours, int minutes, int seconds, int milliseconds) { argument 169 calendar.set(year, month, date, hours, minutes, seconds);
|
| /forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/policy/ |
| H A D | TimeConditionHelper.java | 224 String hours = (bStart) ? (String)propModel.getValue(STARTHOUR) : 231 hours = hours.trim(); 234 if ((hours.length() > 0) && (minutes.length() > 0)) { 236 int hr = Integer.parseInt(hours); 244 hours = (hr < 10) ? "0" + hr : Integer.toString(hr); 248 set.add(hours + ":" + minutes); 388 String hours = strTime.substring(0, idx); 392 int hr = Integer.parseInt(hours);
|
| /forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/ |
| H A D | DurationUnit.java | 43 HOURS(60 * 60 * 1000, "h", "hours"), 136 String hours = m1.group(6); 152 if (hours != null) { 153 duration += Long.valueOf(hours) * HOURS.getDuration(); 214 * number of weeks, days, hours, minutes, seconds, and milliseconds. Here
|
| /forgerock/opendj-v3/opendj-server-legacy/ext/ant/lib/ |
| H A D | ant.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |
| /forgerock/openidm-v4/openidm-util/src/main/java/org/forgerock/openidm/util/ |
| H A D | ConfigMacroUtil.java | 287 period = Hours.hours(value);
|
| /forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/utils/ |
| H A D | TimeDuration.java | 98 long hours; 115 hours = timeInSeconds / 3600; 116 timeInSeconds = timeInSeconds - (hours * 3600); 121 return (days + "d:" + hours + "h:" + minutes + "m:" + seconds + "s:" 123 } else if (hours > 0) { 124 return (hours + "h:" + minutes + "m:" + seconds + "s:"
|
| /forgerock/openam/openam-shared/src/test/java/com/sun/identity/shared/ |
| H A D | DateUtilsTest.java | 167 private Date utcDate(int year, int month, int date, int hours, int minutes, int seconds, int milliseconds) { argument 169 calendar.set(year, month, date, hours, minutes, seconds);
|
| /forgerock/openam/openam-console/src/main/java/com/sun/identity/console/policy/ |
| H A D | TimeConditionHelper.java | 224 String hours = (bStart) ? (String)propModel.getValue(STARTHOUR) : 231 hours = hours.trim(); 234 if ((hours.length() > 0) && (minutes.length() > 0)) { 236 int hr = Integer.parseInt(hours); 244 hours = (hr < 10) ? "0" + hr : Integer.toString(hr); 248 set.add(hours + ":" + minutes); 388 String hours = strTime.substring(0, idx); 392 int hr = Integer.parseInt(hours);
|
| /forgerock/openam/openam-core/src/main/java/org/forgerock/openam/ldap/ |
| H A D | LDAPAuthUtils.java | 1464 int hours = (sec % (24 * 60 * 60)) / 3600; 1470 if (hours > 0) { 1471 expTime.append(SPACE).append(hours).append(SPACE).append(bundle.getString("hours")); 1473 } else if (hours > 0) { 1474 expTime.append(hours).append(SPACE).append(bundle.getString("hours"));
|