Searched refs:rotation (Results 1 - 7 of 7) sorted by relevance

/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/add/
H A DScanActivity.java175 int rotation = 0;
178 rotation = 0;
181 rotation = 90;
184 rotation = 180;
187 rotation = 270;
194 result = (mCameraInfo.orientation + rotation) % 360;
199 result = (mCameraInfo.orientation - rotation + 360) % 360;
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/debug/file/impl/
H A DDebugConfigurationFromProperties.java77 String rotation = rotationConfig.getProperty(DebugConstants.CONFIG_DEBUG_LOGFILE_ROTATION);
78 if (!StringUtils.isEmpty(rotation)) {
80 rotationInterval = Integer.parseInt(rotation);
84 rotation + "'. Please check the configuration file '" +
132 throw new InvalidDebugConfigurationException("File size rotation needs to be greater than " +
133 "zero. File size rotation = '" + getRotationFileSizeInByte() + "'", null);
137 throw new InvalidDebugConfigurationException("Log size rotation is enabled (File size rotation = " +
141 // Check the rotation and suffix consistency
145 "compatible with the file size rotation enabl
[all...]
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/debug/file/impl/
H A DDebugConfigurationFromProperties.java79 String rotation = rotationConfig.getProperty(DebugConstants.CONFIG_DEBUG_LOGFILE_ROTATION);
80 if (!StringUtils.isEmpty(rotation)) {
82 rotationInterval = Integer.parseInt(rotation);
86 rotation + "'. Please check the configuration file '" +
134 throw new InvalidDebugConfigurationException("File size rotation needs to be greater than " +
135 "zero. File size rotation = '" + getRotationFileSizeInByte() + "'", null);
139 throw new InvalidDebugConfigurationException("Log size rotation is enabled (File size rotation = " +
143 // Check the rotation and suffix consistency
147 "compatible with the file size rotation enabl
[all...]
/forgerock/openam-v13/openam-shared/src/test/java/com/sun/identity/shared/debug/
H A DDebugRotationTest.java86 System.out.println("Test rotation for date : '" + dateFormat.format(calRandomDate.getTime()) + "'");
87 rotation(fakeInitTime);
104 System.out.println("Test rotation for date : '" + dateFormat.format(calDSTMarch.getTime()) + "'");
105 rotation(fakeInitTime);
122 System.out.println("Test rotation for date : '" + dateFormat.format(calDSTOctober.getTime()) + "'");
124 rotation(fakeInitTime);
127 private void rotation(long fakeInitTime) throws Exception { method in class:DebugRotationTest
213 failAndPrintFolderStatusReport("A log rotation file is created before the log rotation ended. " +
/forgerock/openam/openam-shared/src/test/java/com/sun/identity/shared/debug/
H A DDebugRotationTest.java87 System.out.println("Test rotation for date : '" + dateFormat.format(calRandomDate.getTime()) + "'");
88 rotation(fakeInitTime);
105 System.out.println("Test rotation for date : '" + dateFormat.format(calDSTMarch.getTime()) + "'");
106 rotation(fakeInitTime);
123 System.out.println("Test rotation for date : '" + dateFormat.format(calDSTOctober.getTime()) + "'");
125 rotation(fakeInitTime);
128 private void rotation(long fakeInitTime) throws Exception { method in class:DebugRotationTest
214 failAndPrintFolderStatusReport("A log rotation file is created before the log rotation ended. " +
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/log/handlers/
H A DFileHandler.java104 * By default the size based rotation is enabled
297 String rotation = lmanager.getProperty(LogConstants.LOGFILE_ROTATION);
299 if (rotation != null) {
300 rotationInterval = Integer.parseInt(rotation);
303 //if we cannot parse it, then we use the size based rotation
/forgerock/openam/openam-core/src/main/java/com/sun/identity/log/handlers/
H A DFileHandler.java105 * By default the size based rotation is enabled
298 String rotation = lmanager.getProperty(LogConstants.LOGFILE_ROTATION);
300 if (rotation != null) {
301 rotationInterval = Integer.parseInt(rotation);
304 //if we cannot parse it, then we use the size based rotation

Completed in 71 milliseconds