- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 985 for yields (0.15 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java
* This is a required field indicating when the job began. */ @Required public String startTime; /** * The timestamp when the job completed execution. * This field indicates when the job finished, if it has completed. */ public String endTime; /** * Initializes the form with default null values.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.3K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/api/di/Inject.java
* <li>Methods</li> * <li>Fields</li> * </ul> * <p> * Example usage: * <pre> * public class MyService { * private final Repository repository; * * {@literal @}Inject * public MyService(Repository repository) { * this.repository = repository; * } * } * </pre> * * @see Named * @since 4.0.0 */ @Target({FIELD, CONSTRUCTOR, METHOD}) @Retention(RUNTIME)
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jan 30 23:28:59 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CronExpressionTest.java
validator = factory.getValidator(); } // Test annotation attributes and defaults public void test_annotationAttributes() throws Exception { Field field = TestBean.class.getDeclaredField("cronExpression"); CronExpression annotation = field.getAnnotation(CronExpression.class); assertNotNull(annotation); assertEquals("{org.lastaflute.validator.constraints.CronExpression.message}", annotation.message());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java
emptyGenerator = new EmptyGenerator(); // Test adding conditions - this should work without container emptyGenerator.addCondition("field1", "pattern1"); emptyGenerator.addCondition("field1", "pattern2"); emptyGenerator.addCondition("field2", "pattern.*"); // We can't test isTarget properly without container, // but we can verify conditions are added
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.3K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/ArbitraryInstances.java
Field[] fields = type.getDeclaredFields(); Arrays.sort(fields, BY_FIELD_NAME); for (Field field : fields) { if (Modifier.isPublic(field.getModifiers()) && Modifier.isStatic(field.getModifiers()) && Modifier.isFinal(field.getModifiers())) { if (field.getGenericType() == field.getType() && type.isAssignableFrom(field.getType())) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 21.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/DeleteForm.java
} /** * The search query used to find the document. * Optional field with maximum length of 1000 characters. */ @Size(max = 1000) public String q; /** * The document ID of the document to delete. * Required field for identifying the specific document. */ @Required public String docId;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/EditForm.java
/** * Form class for editing mapping dictionary entries in the admin interface. * This form extends CreateForm to include fields necessary for updating existing mapping dictionary entries. * Mapping dictionaries define field mappings and transformations during the indexing process. * */ public class EditForm extends CreateForm { /** * Creates a new EditForm instance. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/EditForm.java
/** * The unique identifier of the crawling information entry being edited. * This is a required field for identifying which crawling info to update. */ @Required @Size(max = 1000) public String id; /** * The session identifier of the crawling session. * This is a required field that identifies the specific crawling session. * Maximum length is 20 characters. */ @Required
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetShareEnumTest.java
private Object getFieldValue(Object obj, String fieldName) { try { Field field = getField(obj.getClass(), fieldName); field.setAccessible(true); return field.get(obj); } catch (Exception e) { throw new RuntimeException("Failed to get field value: " + fieldName, e); } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosApRequest.java
*/ public KerberosApRequest(ASN1Sequence seq, KerberosKey[] keys) throws PACDecodingException { Enumeration<?> fields = seq.getObjects(); while (fields.hasMoreElements()) { ASN1TaggedObject tagged = ASN1Util.as(ASN1TaggedObject.class, fields.nextElement()); switch (tagged.getTagNo()) { case 0: ASN1Integer pvno = ASN1Util.as(ASN1Integer.class, tagged);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.9K bytes - Viewed (0)