- Sort Score
- Result 10 results
- Languages All
Results 451 - 460 of 1,255 for field4 (1.23 sec)
-
src/main/java/jcifs/dcerpc/rpc.java
// Default constructor } /** The low field of the timestamp */ public int time_low; /** The middle field of the timestamp */ public short time_mid; /** The high field of the timestamp multiplexed with the version number */ public short time_hi_and_version; /** The high field of the clock sequence multiplexed with the variant */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/PingResponseTest.java
// Note: Full testing requires a running OpenSearch cluster assertTrue(true); } public void test_fieldSetConfiguration() { // Test that field set configuration is properly handled Set<String> fieldSet = new HashSet<>(); fieldSet.add("cluster_name"); fieldSet.add("status"); FessConfig mockConfig = new FessConfig.SimpleImpl() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailForm.java
*/ public String sort; /** * The language setting for error page display. */ public String lang; /** * Additional search fields for error page display. */ public Map<String, String[]> fields = new HashMap<>(); /** * Default constructor for ThumbnailForm. */ public ThumbnailForm() { // Default constructor }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
okhttp-sse/api/okhttp-sse.api
public abstract interface class okhttp3/sse/EventSource { public static final field Companion Lokhttp3/sse/EventSource$Companion; public abstract fun cancel ()V public static fun enqueue (Lokhttp3/Call;Lokhttp3/sse/EventSourceListener;)Lokhttp3/sse/EventSource; public static fun process (Lokhttp3/Response;Lokhttp3/sse/EventSourceListener;)V public abstract fun request ()Lokhttp3/Request; } public final class okhttp3/sse/EventSource$Companion {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 11:47:47 UTC 2025 - 1.9K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/NullnessCasts.java
* next} field is lazily initialized. The type of that field would be {@code @Nullable T}, and the * code would be responsible for populating a "real" {@code T} (which might still be the value * {@code null}!) before returning it to callers. Depending on how the code is structured, a * nullness analysis might not understand that the field has been populated. To avoid that problem
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 13 20:49:47 UTC 2025 - 4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java
} public void test_idFieldAccess() { // Test direct field access through inheritance TestDictionaryItem item = new TestDictionaryItem(); // Direct field assignment item.id = 999L; // Verify through getter assertEquals(999L, item.getId()); // Verify direct field access assertEquals(999L, item.id); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/GenericsUtil.java
/** * Returns the generic type of the specified field for the given index. * * @param field the field to analyze * @param index the index of the generic type * @return the generic type class, or null if not found */ public static Type getGenericParameter(final java.lang.reflect.Field field, final int index) { return getGenericParameter(field.getGenericType(), index); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.4K bytes - Viewed (0) -
src/test/java/jcifs/http/HandlerTest.java
*/ private void resetHandlerState() throws Exception { // Reset the static factory field Field factoryField = Handler.class.getDeclaredField("factory"); factoryField.setAccessible(true); factoryField.set(null, null); // Clear the protocol handlers cache Field handlersField = Handler.class.getDeclaredField("PROTOCOL_HANDLERS"); handlersField.setAccessible(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/rpc.java
/** * The low field of the timestamp. */ public int time_low; /** * The middle field of the timestamp. */ public short time_mid; /** * The high field of the timestamp multiplexed with the version number. */ public short time_hi_and_version; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.2K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/Striped64.java
transient volatile int busy; /** Package-private default constructor */ Striped64() {} /** CASes the base field. */ final boolean casBase(long cmp, long val) { return UNSAFE.compareAndSwapLong(this, BASE_OFFSET, cmp, val); } /** CASes the busy field from 0 to 1 to acquire lock. */ final boolean casBusy() { return UNSAFE.compareAndSwapInt(this, BUSY_OFFSET, 0, 1); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jan 15 22:17:15 UTC 2025 - 11.4K bytes - Viewed (0)