Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 877 for field1 (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing related content configurations in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing related content entries,
     * including tracking information for optimistic locking and audit trails.
     * Related content configurations define relationships between documents for enhanced search results.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/webauth/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing web authentication configurations in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing web authentication entries,
     * including tracking information for optimistic locking and audit trails.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java

            queryCommand = new PrefixQueryCommand();
            queryCommand.register();
        }
    
        private void setNotAnalyzedFields(final String... fields) {
            Set<String> notAnalyzedFieldSet = new HashSet<>();
            for (String field : fields) {
                notAnalyzedFieldSet.add(field);
            }
            queryFieldConfig.notAnalyzedFieldSet = notAnalyzedFieldSet;
        }
    
        public void test_getQueryClassName() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java

                response.readBytesWireFormat(buffer, 0);
    
                // Then - use reflection to verify private fields
                Field closeFlagsField = Smb2CloseResponse.class.getDeclaredField("closeFlags");
                closeFlagsField.setAccessible(true);
                assertEquals(1, closeFlagsField.get(response));
    
                Field creationTimeField = Smb2CloseResponse.class.getDeclaredField("creationTime");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb1/com/SmbComNTCreateAndXTest.java

        }
    
        /**
         * Fetch a private field value via reflection.  This helper keeps the
         * test code tidy and is used where unit‑testing logic relies on
         * internally stored data.
         */
        private static Object getPrivateField(Object target, String name) {
            try {
                java.lang.reflect.Field f = target.getClass().getDeclaredField(name);
                f.setAccessible(true);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb1/smb1/Trans2GetDfsReferralTest.java

                }
            }
            throw new NoSuchFieldException(fieldName);
        }
    
        @Test
        @DisplayName("Constructor initializes fields")
        void testConstructor() throws Exception {
            Trans2GetDfsReferral cmd = new Trans2GetDfsReferral("/file");
            assertEquals("/file", getPrivateField(cmd, "path"));
            assertEquals((byte) 0x00, getPrivateField(cmd, "maxSetupCount"));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb1/smb1/TestLockingTest.java

            System.setOut(originalOut);
            System.setErr(originalErr);
        }
    
        @Test
        @DisplayName("TestLocking fields are properly initialized")
        void testFieldInitialization() {
            TestLocking t = new TestLocking();
    
            // Check default field values
            assertEquals(1, t.numThreads, "Default numThreads should be 1");
            assertEquals(1, t.numIter, "Default numIter should be 1");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  8. callbacks/create.go

    				field := stmt.Schema.FieldsByDBName[column.Name]
    				if values.Values[0][idx], isZero = field.ValueOf(stmt.Context, stmt.ReflectValue); isZero {
    					if field.DefaultValueInterface != nil {
    						values.Values[0][idx] = field.DefaultValueInterface
    						stmt.AddError(field.Set(stmt.Context, stmt.ReflectValue, field.DefaultValueInterface))
    					} else if field.AutoCreateTime > 0 || field.AutoUpdateTime > 0 {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Tue Jul 29 11:06:13 UTC 2025
    - 13K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/EditForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * Form class for editing Kuromoji dictionary entries in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing Kuromoji dictionary entries.
     * Kuromoji is a Japanese morphological analyzer, and this dictionary manages custom tokenization rules.
     */
    public class EditForm extends CreateForm {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb1/smb1/Trans2QueryFSInformationTest.java

            assertEquals(SmbComTransaction.TRANS2_QUERY_FS_INFORMATION, cmd.subCommand, "subCommand should be QUERY_FS_INFORMATION");
            // the fields are set in the constructor – check that the counts match
            assertEquals(2, cmd.totalParameterCount, "totalParameterCount should be 2");
            assertEquals(0, cmd.totalDataCount, "totalDataCount should be 0");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.5K bytes
    - Viewed (0)
Back to top