- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 947 for 1final (0.04 sec)
-
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java
checkVersionsHaveSameOrder("1final", "1"); checkVersionsHaveSameOrder("1Ga", "1"); checkVersionsHaveSameOrder("1GA", "1"); checkVersionsHaveSameOrder("1RELEASE", "1"); checkVersionsHaveSameOrder("1release", "1"); checkVersionsHaveSameOrder("1RELeaSE", "1"); checkVersionsHaveSameOrder("1Final", "1"); checkVersionsHaveSameOrder("1FinaL", "1");
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/jcifs/util/SecureCredentialStorage.java
private static final Logger log = LoggerFactory.getLogger(SecureCredentialStorage.class); private static final String ENCRYPTION_ALGORITHM = "AES/GCM/NoPadding"; private static final String KEY_ALGORITHM = "AES"; private static final String KEY_DERIVATION_ALGORITHM = "PBKDF2WithHmacSHA256"; private static final int KEY_SIZE = 256; private static final int GCM_TAG_SIZE = 128;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/crypto/CachedCipher.java
*/ public byte[] encrypto(final byte[] data, final Key key) { final Cipher cipher = pollEncryptoCipher(key); byte[] encrypted; try { encrypted = cipher.doFinal(data); } catch (final IllegalBlockSizeException e) { throw new IllegalBlockSizeRuntimeException(e); } catch (final BadPaddingException e) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 11.5K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/Invokable.java
* {@code final} keyword. For example, it could be private, or it could be declared by a final * class. To tell whether a method is overridable, use {@link Invokable#isOverridable}. */ public final boolean isFinal() { return Modifier.isFinal(getModifiers()); } /** Returns true if the method is abstract. */ public final boolean isAbstract() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 18.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/MacHashFunctionTest.java
public class MacHashFunctionTest extends TestCase { private static final ImmutableSet<String> INPUTS = ImmutableSet.of("", "Z", "foobar"); private static final SecretKey MD5_KEY = new SecretKeySpec("secret key".getBytes(UTF_8), "HmacMD5"); private static final SecretKey SHA1_KEY = new SecretKeySpec("secret key".getBytes(UTF_8), "HmacSHA1"); private static final SecretKey SHA256_KEY =
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Dec 27 16:19:35 UTC 2024 - 13.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2SigningDigest.java
private static final Logger log = LoggerFactory.getLogger(Smb2SigningDigest.class); /** * */ private static final int SIGNATURE_OFFSET = 48; private static final int SIGNATURE_LENGTH = 16; private final Mac digest; private final ReentrantLock signingLock = new ReentrantLock(); private byte[] signingKey; private final String algorithmName;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java
assertTrue("ACCESS_CONTROL_ALLOW_HEADERS should be final", Modifier.isFinal(headersField.getModifiers())); Field methodsField = CorsHandler.class.getDeclaredField("ACCESS_CONTROL_ALLOW_METHODS"); assertTrue("ACCESS_CONTROL_ALLOW_METHODS should be final", Modifier.isFinal(methodsField.getModifiers())); Field privateNetworkField = CorsHandler.class.getDeclaredField("ACCESS_CONTROL_ALLOW_PRIVATE_NETWORK");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
* @param preauthHash * preauth integrity hash for SMB 3.1.1 (optional) */ public Smb2EncryptionContext(final int cipherId, final DialectVersion dialect, final byte[] encryptionKey, final byte[] decryptionKey, final SecureKeyManager keyManager, final byte[] sessionKey, final byte[] preauthHash) { this.cipherId = cipherId; this.dialect = dialect; this.keyManager = keyManager;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/MethodUtil.java
public static <T> T invoke(final Method method, final Object target, final Object... args) throws InvocationTargetRuntimeException, IllegalAccessRuntimeException { assertArgumentNotNull("method", method); try { return (T) method.invoke(target, args); } catch (final InvocationTargetException ex) { final Throwable t = ex.getCause();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
} } private final NtlmPasswordAuthenticator auth; private int ntlmsspFlags; private final String workstation; private boolean isEstablished = false; private byte[] serverChallenge = null; private byte[] masterKey = null; private final String netbiosName = null; private final boolean requireKeyExchange; private final AtomicInteger signSequence = new AtomicInteger(0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 17.3K bytes - Viewed (0)