Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for inputValue (0.45 sec)

  1. src/test/java/jcifs/dcerpc/ndr/NdrShortTest.java

            void testValueConsistency() {
                // Given: Same input value
                int inputValue = 1000;
                int expectedMasked = inputValue & 0xFF; // 232
    
                // When: Creating multiple NdrShort instances
                NdrShort ndrShort1 = new NdrShort(inputValue);
                NdrShort ndrShort2 = new NdrShort(inputValue);
    
                // Then: All should have same masked value
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/dict/protwords/admin_dict_protwords.jsp

                                                            data-href="${contextPath}/admin/dict/protwords/details/${f:u(dictId)}/4/${f:u(data.id)}">
                                                        <td>${f:h(data.inputValue)}</td>
                                                    </tr>
                                                </c:forEach>
                                                </tbody>
                                            </table>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotificationTest.java

            @CsvSource({ "0, 0", "1, 1", "2, 2", "8, 8", "255, -1" // byte 255 is -1 when printed as signed
            })
            void testToStringWithDifferentOplockLevels(int inputValue, String expectedDisplay) throws Exception {
                byte oplockLevel = (byte) inputValue;
    
                Field oplockLevelField = Smb2OplockBreakNotification.class.getDeclaredField("oplockLevel");
                oplockLevelField.setAccessible(true);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/dict/stopwords/admin_dict_stopwords.jsp

                                                            data-href="${contextPath}/admin/dict/stopwords/details/${f:u(dictId)}/4/${f:u(data.id)}">
                                                        <td>${f:h(data.inputValue)}</td>
                                                    </tr>
                                                </c:forEach>
                                                </tbody>
                                            </table>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java

            // Test with multiple inputs
            String[] inputs = { "a", "b", "c" };
            CharMappingItem item = new CharMappingItem(1L, inputs, "output");
    
            String inputsValue = item.getInputsValue();
            assertEquals("a\nb\nc", inputsValue);
        }
    
        public void test_getInputsValue_withSingleInput() {
            // Test with single input
            String[] inputs = { "single" };
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.2K bytes
    - Viewed (0)
Back to top