- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 685 for field2 (0.03 sec)
-
src/main/java/org/codelibs/fess/app/web/go/GoForm.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Serialization.java
// Secret sauce for setting final fields; don't make it public. static final class FieldSetter<T> { private final Field field; private FieldSetter(Field field) { this.field = field; field.setAccessible(true); } void set(T instance, Object value) { try { field.set(instance, value); } catch (IllegalAccessException impossible) { throw new AssertionError(impossible);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 8.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/FuzzyQueryCommandTest.java
assertNotNull(result); } // Test with various field names public void test_convertFuzzyQuery_withVariousFields() { QueryContext context = new QueryContext("test", false); String[] fields = { "title", "content", "url", "site", "host", "mimetype" }; for (String field : fields) { Term term = new Term(field, "fuzzy"); FuzzyQuery fuzzyQuery = new FuzzyQuery(term);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/FieldDesc.java
* Returns the field. * * @return the field */ Field getField(); /** * Returns the field name. * * @return the field name */ String getFieldName(); /** * Returns the type of the field. * * @param <T> * the type of the field * @return the type of the field */ <T> Class<T> getFieldType(); /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractFutureState.java
thrownAtomicReferenceFieldUpdaterFailure); } } // TODO(lukes): Investigate using a @Contended annotation on these fields once one is available. /* * The following fields are package-private, even though we intend never to use them outside this * file. If they were instead private, then we wouldn't be able to access them reflectively from
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 34.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/QueryContext.java
} /** * Adds a field and text pair to the field log for tracking query terms. * @param field The field name. * @param text The query text for this field. */ public void addFieldLog(final String field, final String text) { if (fieldLogMap == null) { return; } List<String> list = fieldLogMap.get(field); if (list == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
if (ComponentUtil.hasComponent("ingestFactory")) { try { java.lang.reflect.Field field = IndexUpdateCallbackImpl.class.getDeclaredField("ingestFactory"); field.setAccessible(true); field.set(this, ComponentUtil.getComponent("ingestFactory")); } catch (Exception e) { // Ignore for tests }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/EditForm.java
} /** * The unique identifier of the scheduler being edited. * This is a required field for identifying which scheduler to update. */ @Required @Size(max = 1000) public String id; /** * The version number of the scheduler for optimistic locking. * This field is required to prevent concurrent modification conflicts
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java
thrownAtomicReferenceFieldUpdaterFailure); } } // TODO(lukes): Investigate using a @Contended annotation on these fields once one is available. /* * The following fields are package-private, even though we intend never to use them outside this * file. If they were instead private, then we wouldn't be able to access them reflectively from
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 33.2K bytes - Viewed (0) -
android/guava/src/com/google/common/net/HttpHeaders.java
public static final String DATE = "Date"; /** The HTTP {@code Pragma} header field name. */ public static final String PRAGMA = "Pragma"; /** The HTTP {@code Via} header field name. */ public static final String VIA = "Via"; /** The HTTP {@code Warning} header field name. */ public static final String WARNING = "Warning"; // HTTP Request header fields
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Mar 27 20:37:16 UTC 2025 - 35.4K bytes - Viewed (0)