- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 89 for representing (0.25 sec)
-
guava/src/com/google/common/collect/SortedMapDifference.java
*/ package com.google.common.collect; import com.google.common.annotations.GwtCompatible; import java.util.SortedMap; import org.jspecify.annotations.Nullable; /** * An object representing the differences between two sorted maps. * * @author Louis Wasserman * @since 8.0 */ @GwtCompatible public interface SortedMapDifference<K extends @Nullable Object, V extends @Nullable Object>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FessUser.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.entity; import java.io.Serializable; /** * Interface representing a Fess user with authentication and authorization information. * Provides access to user name, roles, groups, and permissions. */ public interface FessUser extends Serializable { /**
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/primitives/Booleans.java
return Boolean.compare(a, b); } /** * Returns {@code true} if {@code target} is present as an element anywhere in {@code array}. * * <p><b>Note:</b> consider representing the array as a {@link java.util.BitSet} instead, * replacing {@code Booleans.contains(array, true)} with {@code !bitSet.isEmpty()} and {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 20.5K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Booleans.java
return Boolean.compare(a, b); } /** * Returns {@code true} if {@code target} is present as an element anywhere in {@code array}. * * <p><b>Note:</b> consider representing the array as a {@link java.util.BitSet} instead, * replacing {@code Booleans.contains(array, true)} with {@code !bitSet.isEmpty()} and {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassUtil.java
* * @param <T> * The class represented by the {@link Class} object * @param clazz * The {@link Class} object representing the class. Must not be {@literal null}. * @return A new object created by invoking the default constructor * @throws InstantiationRuntimeException
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 25.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/EditForm.java
*/ @Size(max = 1000) public String updatedBy; /** * The timestamp when this duplicate host configuration was last updated. * Stored as a long value representing milliseconds since epoch. * Used for audit trail and concurrency control. */ @ValidateTypeFailure public Long updatedTime; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/AnnotationUtil.java
map.put(name, v); } } return map; } /** * Returns the value of an annotation element. * * @param beanDesc the {@link BeanDesc} representing the annotation * @param annotation the annotation * @param name the name of the element * @return the value of the annotation element */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.6K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/GraphConnections.java
package com.google.common.graph; import com.google.errorprone.annotations.CanIgnoreReturnValue; import java.util.Iterator; import java.util.Set; import org.jspecify.annotations.Nullable; /** * An interface for representing and manipulating an origin node's adjacent nodes and edge values in * a {@link Graph}. * * @author James Sexton * @param <N> Node parameter type * @param <V> Value parameter type */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 2.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/SortedMapDifference.java
*/ package com.google.common.collect; import com.google.common.annotations.GwtCompatible; import java.util.SortedMap; import org.jspecify.annotations.Nullable; /** * An object representing the differences between two sorted maps. * * @author Louis Wasserman * @since 8.0 */ @GwtCompatible public interface SortedMapDifference<K extends @Nullable Object, V extends @Nullable Object>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetInfo.java
import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.util.ComponentUtil; import org.opensearch.search.aggregations.BucketOrder; import jakarta.annotation.PostConstruct; /** * Entity class representing facet configuration information for search results. * This class holds configuration settings for faceted search including field facets, * query facets, and various parameters that control facet behavior. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.3K bytes - Viewed (0)