- Sort Score
- Result 10 results
- Languages All
Results 961 - 970 of 2,563 for volume (0.09 sec)
-
src/main/java/org/codelibs/core/beans/util/BeanUtil.java
if (!destPropertyDesc.isWritable()) { continue; } final Object value = srcPropertyDesc.getValue(src); if (!options.isTargetValue(value)) { continue; } final Object convertedValue = options.convertValue(value, destPropertyName, destPropertyDesc.getPropertyType()); destPropertyDesc.setValue(dest, convertedValue); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/FileEntryTest.java
@MethodSource("longGetterProvider") void longGetters_edgeCases(LongGetter getter, long value, String label) { // Arrange FileEntry e = new TestFileEntry("n", 0, 0, value, value, value, value, 0); // Act long actual = getter.apply(e); // Assert assertEquals(value, actual, label); } @Test @DisplayName("Calling a method on null reference throws NPE")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
infoMap = null; } /** * Adds a key-value pair to the information map. * Initializes the info map as a synchronized LinkedHashMap if it doesn't exist. * * @param key the parameter key to store * @param value the parameter value to store */ public synchronized void putToInfoMap(final String key, final String value) { if (infoMap == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/resources/fess_message_pt_BR.properties
constraints.DecimalMax.message = {item} deve ser menor que {value}. constraints.DecimalMin.message = {item} deve ser maior que {value}. constraints.Digits.message = {item} deve ser um número. (Esperado: <número>.<número>) constraints.Future.message = {item} deve ser uma data futura. constraints.Max.message = {item} deve ser menor ou igual a {value}. constraints.Min.message = {item} deve ser maior ou igual a {value}. constraints.NotNull.message = {item} é obrigatório.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12.8K bytes - Viewed (0) -
src/test/java/jcifs/MsrpcDfsRootEnumTest.java
assertNull(entries[0].getName()); assertEquals(8, entries[0].getType()); // TYPE_SHARE constant value assertInstanceOf(SmbShareInfo.class, entries[1]); assertEquals("valid_share", entries[1].getName()); assertEquals(8, entries[1].getType()); // TYPE_SHARE constant value } @Test @DisplayName("DCE/RPC flags should be set correctly") void testDcerpcFlags() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.9K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerHeader.kt
* limitations under the License. */ package okhttp3.tls.internal.der /** * The first two bytes of each value is a header that includes its tag (field ID) and length. */ internal data class DerHeader( /** * Namespace of the tag. * * This value is encoded in bits 7 and 8 of the first byte of each value. * * ``` * 0b00xxxxxx Universal * 0b01xxxxxx Application * 0b10xxxxxx Context-Specific
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsentity/BsGroup.java
} public void setGidNumber(Long value) { registerModifiedProperty("gidNumber"); this.gidNumber = value; } public String getName() { checkSpecifiedProperty("name"); return convertEmptyToNull(name); } public void setName(String value) { registerModifiedProperty("name"); this.name = value; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 4.3K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Monitor.java
* public class SafeBox<V> { * private V value; * * public synchronized V get() throws InterruptedException { * while (value == null) { * wait(); * } * V result = value; * value = null; * notifyAll(); * return result; * } * * public synchronized void set(V newValue) throws InterruptedException { * while (value != null) { * wait(); * }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 42.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java
* Gets the original stopword. * * @return The original stopword. */ public String getInput() { return input; } /** * Gets the value of the stopword. * * @return The stopword value, or an empty string if null. */ public String getInputValue() { if (input == null) { return StringUtil.EMPTY; } return input; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.6K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/av/AvFlagsTest.java
// Test with maximum integer value int maxFlags = Integer.MAX_VALUE; AvFlags maxAvFlags = new AvFlags(maxFlags); assertNotNull(maxAvFlags, "AvFlags object should not be null for max flags"); assertEquals(maxFlags, maxAvFlags.getFlags(), "Flags should match Integer.MAX_VALUE"); // Test with minimum integer value int minFlags = Integer.MIN_VALUE;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.4K bytes - Viewed (0)