- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 326 for sean (0.02 sec)
-
guava/src/com/google/common/collect/ImmutableMultiset.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/ConstructorDesc.java
* * @return {@link BeanDesc} */ BeanDesc getBeanDesc(); /** * Returns the constructor. * * @param <T> * The type of the Bean * @return The constructor */ <T> Constructor<T> getConstructor(); /** * Returns an array of the parameter types of the constructor. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java
* object associated with our thread, because if it was the publication wouldn't have been * unsafe and we'd have seen our thread as the value. This state is also why a new * ThreadConfinedTaskQueue object must be created for each inline execution, because * observing a null thread does not mean the object is safe to reuse. * <li>If this field's value is some other thread object, we know that it's not our thread.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 23 15:26:56 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java
// ============ protected JsonResponse<ApiResult> asJson(final ApiResult bean) { return new JsonResponse<>(bean); } protected ApiResult createFailureBean(final Status status, final String message) { return new ApiErrorResponse().message(message).status(status).result(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
tests/generics_test.go
t.Errorf("found invalid user, got %v, expect %v", u, user) } result := struct { ID int Name string }{} if err := gorm.G[User](DB).Where("name = ?", user.Name).Scan(ctx, &result); err != nil { t.Fatalf("failed to scan user, got error: %v", err) } else if result.Name != user.Name || uint(result.ID) != user.ID { t.Errorf("found invalid user, got %v, expect %v", result, user) }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Sep 04 13:13:16 UTC 2025 - 28K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
}); } /** * Sets up the search conditions for group list queries based on pager criteria. * Configures the condition bean with ID filtering and ordering by name. * * @param cb the condition bean for building the query * @param groupPager the pager containing search and filter criteria */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
gradle/wrapper/gradle-wrapper.jar
http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with...
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 01 08:06:31 UTC 2025 - 44.4K bytes - Viewed (1) -
api/maven-api-di/src/main/java/org/apache/maven/api/di/Provides.java
* <p> * This annotation can be used on static methods to programmatically create and configure * beans that will be managed by the dependency injection container. It's particularly * useful when the bean creation requires complex logic or when the bean needs to be * configured based on runtime conditions. * <p> * Example usage: * <pre> * public class Providers { * {@literal @}Provides * {@literal @}Singleton
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jan 30 23:28:59 UTC 2025 - 1.8K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/SipHashFunction.java
* or implied. See the License for the specific language governing permissions and limitations under * the License. */ /* * SipHash-c-d was designed by Jean-Philippe Aumasson and Daniel J. Bernstein and is described in * "SipHash: a fast short-input PRF" (available at https://131002.net/siphash/siphash.pdf). */ package com.google.common.hash;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 5.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/LongMathTest.java
private static void assertMean(long x, long y) { long expectedMean = computeMeanSafely(x, y); assertEquals(expectedMean, LongMath.mean(x, y)); assertEquals( "The mean of x and y should equal the mean of y and x", expectedMean, LongMath.mean(y, x)); } /** * Computes the mean in a way that is obvious and resilient to overflow by using BigInteger * arithmetic. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 31.4K bytes - Viewed (0)