- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for CustomSize (0.06 sec)
-
src/test/java/org/codelibs/fess/validation/CustomSizeTest.java
final CustomSize annotation = field.getAnnotation(CustomSize.class); assertEquals("Annotation type should be CustomSize", CustomSize.class, annotation.annotationType()); } // Test all annotation methods exist public void test_annotationMethods() { try { final Method messageMethod = CustomSize.class.getMethod("message");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/validation/CustomSizeValidator.java
import jakarta.validation.ConstraintValidator; import jakarta.validation.ConstraintValidatorContext; /** * Validator implementation for the CustomSize constraint. */ public class CustomSizeValidator implements ConstraintValidator<CustomSize, CharSequence> { /** * Default constructor. */ public CustomSizeValidator() { // Empty constructor } private int min = 0;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeValidatorTest.java
assertTrue("NPE is acceptable for null context in this implementation", true); } } private CustomSize createBasicAnnotation() { return new CustomSize() { @Override public Class<? extends Annotation> annotationType() { return CustomSize.class; } @Override public String message() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java
@Override public void customize(org.lastaflute.di.core.ComponentDef componentDef) { // First mock implementation } }; // Create second customizer ComponentCustomizer customizer2 = new ComponentCustomizer() { @Override public void customize(org.lastaflute.di.core.ComponentDef componentDef) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.32.md
- Upgraded the functionality of `kubectl kustomize` as described at https://github.com/kubernetes-sigs/kustomize/releases/tag/kustomize%2Fv5.4.2 and https://github.com/kubernetes-sigs/kustomize/releases/tag/kustomize%2Fv5.5.0. ([#127965](https://github.com/kubernetes/kubernetes/pull/127965), [@koba1t](https://github.com/koba1t))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 14:49:49 UTC 2025 - 412.3K bytes - Viewed (0) -
docs/recipes.md
fun run() { val request = Request.Builder() .url("http://httpbin.org/delay/1") // This URL is served with a 1 second delay. .build() // Copy to customize OkHttp for this request. val client1 = client.newBuilder() .readTimeout(500, TimeUnit.MILLISECONDS) .build() try { client1.newCall(request).execute().use { response ->
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 17:01:12 UTC 2025 - 47.8K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.34.md
- k8s.io/system-validators: v1.9.1 → v1.10.1 - k8s.io/utils: 3ea5e8c → 4c0f3b2 - sigs.k8s.io/json: 9aa6b5e → cfa47c3 - sigs.k8s.io/kustomize/api: v0.19.0 → v0.20.1 - sigs.k8s.io/kustomize/cmd/config: v0.19.0 → v0.20.1 - sigs.k8s.io/kustomize/kustomize/v5: v5.6.0 → v5.7.1 - sigs.k8s.io/kustomize/kyaml: v0.19.0 → v0.20.1 - sigs.k8s.io/yaml: v1.4.0 → v1.6.0 ### Removed - cloud.google.com/go/accessapproval: v1.7.4
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 27 10:36:10 UTC 2025 - 292.8K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.33.md
- k8s.io/kube-openapi: 32ad38e → c8a335a - sigs.k8s.io/apiserver-network-proxy/konnectivity-client: v0.31.0 → v0.31.2 - sigs.k8s.io/kustomize/api: v0.18.0 → v0.19.0 - sigs.k8s.io/kustomize/cmd/config: v0.15.0 → v0.19.0 - sigs.k8s.io/kustomize/kustomize/v5: v5.5.0 → v5.6.0 - sigs.k8s.io/kustomize/kyaml: v0.18.1 → v0.19.0 - sigs.k8s.io/structured-merge-diff/v4: v4.4.2 → v4.6.0 ### Removed
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 19:46:23 UTC 2025 - 294.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
* Retrieves a list of access results from the data service for processing. * Filters out results that are too recent based on commit margin time and manages crawler throttling. * * @param cb the consumer to customize the search request * @param cleanupTime the time taken for the last cleanup operation * @return the list of access results ready for processing */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.31.md
- sigs.k8s.io/apiserver-network-proxy/konnectivity-client: v0.29.0 → v0.30.3 - sigs.k8s.io/knftables: v0.0.14 → v0.0.17 - sigs.k8s.io/kustomize/api: 6ce0bf3 → v0.17.2 - sigs.k8s.io/kustomize/cmd/config: v0.11.2 → v0.14.1 - sigs.k8s.io/kustomize/kustomize/v5: 6ce0bf3 → v5.4.2 - sigs.k8s.io/kustomize/kyaml: 6ce0bf3 → v0.17.1 - sigs.k8s.io/yaml: v1.3.0 → v1.4.0 ### Removed
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 19:49:57 UTC 2025 - 429.6K bytes - Viewed (0)