- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 1,212 for field3 (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/EditForm.java
import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; /** * Form class for editing stopwords dictionary entries in the admin interface. * This form extends CreateForm to include fields necessary for updating existing stopwords entries. * Stopwords are common words that are typically ignored during text indexing and search operations. * */ 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) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/EditForm.java
import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; /** * Form class for editing stemmer override dictionary entries in the admin interface. * This form extends CreateForm to include fields necessary for updating existing stemmer override entries. * Stemmer overrides define custom stemming rules that take precedence over the default stemming algorithm. * */ 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) -
src/test/java/jcifs/dcerpc/msrpc/srvsvcTest.java
private NdrBuffer mockNdrBuffer; @Mock private NdrBuffer mockDeferredBuffer; @BeforeEach void setUp() { MockitoAnnotations.openMocks(this); // Set the deferred field directly since it's a public field, not a method mockNdrBuffer.deferred = mockDeferredBuffer; lenient().when(mockNdrBuffer.derive(anyInt())).thenReturn(mockDeferredBuffer);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosTicket.java
} catch (IOException e) { throw new PACDecodingException("Malformed kerberos ticket", e); } Enumeration<?> fields = sequence.getObjects(); while (fields.hasMoreElements()) { ASN1TaggedObject tagged = ASN1Util.as(ASN1TaggedObject.class, fields); switch (tagged.getTagNo()) { case 0:// Kerberos version
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorSecurityTest.java
authenticator = new NtlmPasswordAuthenticator("DOMAIN", "username", "originalPassword"); NtlmPasswordAuthenticator cloned = authenticator.clone(); // Get password fields using reflection Field passwordField = NtlmPasswordAuthenticator.class.getDeclaredField("password"); passwordField.setAccessible(true); char[] originalPassword = (char[]) passwordField.get(authenticator);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java
* identity equality of its Thread field so that the task field is only accessed by a single * thread. */ private static final class ThreadConfinedTaskQueue { /** * This field is only used for identity comparisons with the current thread. Field assignments * are atomic, but do not provide happens-before ordering; however: * * <ul>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 23 15:26:56 UTC 2025 - 22.1K bytes - Viewed (0) -
api/maven-api-annotations/src/main/java/org/apache/maven/api/annotations/Nonnull.java
/** * The annotated element must not be null. * <p> * Annotated fields must not be null after construction has completed. * <p> * When this annotation is applied to a method it applies to the method return value. * * @see Nullable * @since 4.0.0 */ @Experimental @Documented @Retention(RetentionPolicy.CLASS) @Target({ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD})
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Dec 10 21:43:27 UTC 2024 - 1.4K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosTicketTest.java
} } @Test void testConstructorWithUnrecognizedField() throws IOException, GeneralSecurityException { // Test with an unrecognized field in the ticket // Note: In the actual implementation, field 99 would come after mandatory fields, // so decryption happens first. We test with a mocked successful decryption.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/EditForm.java
import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; /** * Form class for editing synonym dictionary entries in the admin interface. * This form extends CreateForm to include fields necessary for updating existing synonym entries. * Synonyms are used to expand search queries by including terms with similar meanings. * */ 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.7K bytes - Viewed (0) -
docs/uk/docs/tutorial/schema-extra-example.md
Більше про це можна прочитати в кінці цієї сторінки. /// ## Додаткові аргументи `Field` Коли ви використовуєте `Field()` у моделях Pydantic, Ви також можете вказати додаткові `examples`: {* ../../docs_src/schema_extra_example/tutorial002_py310.py hl[2,8:11] *} ## `examples` у JSON-схемі — OpenAPI
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Jun 09 19:35:48 UTC 2025 - 13.4K bytes - Viewed (0)