- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 50 for getZone (0.06 sec)
-
src/main/java/jcifs/smb1/Config.java
* @param def the default value to return if the property is not found or cannot be parsed * @return the property value as a long, or the default value */ public static long getLong(final String key, long def) { final String s = prp.getProperty(key); if (s != null) { try { def = Long.parseLong(s); } catch (final NumberFormatException nfe) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java
private long getSerialVersionUID() { try { java.lang.reflect.Field field = FessMessages.class.getDeclaredField("serialVersionUID"); field.setAccessible(true); return field.getLong(null); } catch (Exception e) { fail("Failed to get serialVersionUID: " + e.getMessage()); return -1; } } // Test error message methods without parameters
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 28.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
final Smb2TransformHeader transformHeader = Smb2TransformHeader.decode(encryptedMessage, 0); final byte[] associatedData = transformHeader.getAssociatedData(); byte[] nonce = transformHeader.getNonce(); final byte[] authTag = transformHeader.getSignature(); // Extract ciphertext final int ciphertextLength = encryptedMessage.length - Smb2TransformHeader.TRANSFORM_HEADER_SIZE;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0) -
guava/src/com/google/common/math/Stats.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 24.8K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Longs.java
} return result; } /** * Returns the {@code long} value whose big-endian representation is stored in the first 8 bytes * of {@code bytes}; equivalent to {@code ByteBuffer.wrap(bytes).getLong()}. For example, the * input byte array {@code {0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19}} would yield the * {@code long} value {@code 0x1213141516171819L}. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 29.1K bytes - Viewed (0) -
src/main/resources/fess_label_it.properties
labels.key_match_boost=Valore di boost labels.key_match_urls=URL labels.key_match_title_details=Corrispondenza chiave labels.design_configuration=Design pagina labels.design_title_file_upload=File da caricare labels.design_title_file=Gestione file labels.design_file=Carica file labels.design_file_name=Nome file (opzionale) labels.design_button_upload=Carica labels.design_file_title_edit=Visualizza file pagina labels.design_edit_button=Modifica
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 43.4K bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
addressAsLong = getEmbeddedIPv4ClientAddress(ip6).hashCode(); } else { // Just extract the high 64 bits (assuming the rest is user-modifiable). addressAsLong = ByteBuffer.wrap(ip6.getAddress(), 0, 8).getLong(); } // Many strategies for hashing are possible. This might suffice for now. int coercedHash = Hashing.murmur3_32_fixed().hashLong(addressAsLong).asInt();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InetAddresses.java
addressAsLong = getEmbeddedIPv4ClientAddress(ip6).hashCode(); } else { // Just extract the high 64 bits (assuming the rest is user-modifiable). addressAsLong = ByteBuffer.wrap(ip6.getAddress(), 0, 8).getLong(); } // Many strategies for hashing are possible. This might suffice for now. int coercedHash = Hashing.murmur3_32_fixed().hashLong(addressAsLong).asInt();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
Class.forName("jcifs.smb1.Config"); } catch (final ClassNotFoundException cnfe) { logger.error("Failed to load jcifs.smb1.Config class", cnfe); } attrExpirationPeriod = Config.getLong("jcifs.smb1.smb.client.attrExpirationPeriod", DEFAULT_ATTR_EXPIRATION_PERIOD); ignoreCopyToException = Config.getBoolean("jcifs.smb1.smb.client.ignoreCopyToException", true); dfs = new Dfs(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0) -
lib/fips140/v1.0.0.zip
SetBytes. x {{ .Prefix }}MontgomeryDomainFiel } const {{ .Prefix }}ElementLen = {{ .BytesLen }} type {{ .Prefix }}UntypedFieldElement = {{ .FiatType }} // One sets e = 1, and returns e. func (e *{{ .Element }}) One() *{{ .Element }} { {{ .Prefix }}SetOne(&e.x) return e } // Equal returns 1 if e == t, and zero otherwise. func (e *{{ .Element }}) Equal(t *{{ .Element }}) int { eBytes := e.Bytes() tBytes := t.Bytes() return subtle.ConstantTimeCompare(eBytes, tBytes) } // IsZero returns 1 if e == 0, and...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)