- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for newResult (0.19 seconds)
-
src/main/java/org/codelibs/fess/app/web/base/login/EntraIdCredential.java
final EntraIdAuthenticator authenticator = ComponentUtil.getComponent(EntraIdAuthenticator.class); final IAuthenticationResult newResult = authenticator.refreshTokenSilently(this); if (newResult != null) { authResult = newResult; authenticator.updateMemberOf(this); permissions = null; if (logger.isDebugEnabled()) {
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 7.8K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/Result.java
* * @param model * @param problems */ public static <T> Result<T> newResult(T model, Iterable<? extends ModelProblem> problems) { return new Result<>(hasErrors(problems), model, problems); } /** * New result consisting of given result and new problem. Convenience for newResult(result.get(), * concat(result.getProblems(),problems)). * * @param resultCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Mar 26 19:31:34 GMT 2025 - 6.9K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
import org.codehaus.plexus.util.StringUtils; import org.eclipse.sisu.Nullable; import static org.apache.maven.model.building.Result.error; import static org.apache.maven.model.building.Result.newResult; /** * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @SuppressWarnings("UnusedReturnValue") @Named @Singleton @Deprecated(since = "4.0.0")Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Mar 30 23:08:08 GMT 2025 - 55.3K bytes - Click Count (0) -
guava/src/com/google/common/cache/LocalCache.java
// *before* returning newValue from the cache query. return transform( newValue, newResult -> { LoadingValueReference.this.set(newResult); return newResult; }, directExecutor()); } catch (Throwable t) { ListenableFuture<V> result = setException(t) ? futureValue : fullyFailedFuture(t);Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Sep 11 19:35:11 GMT 2025 - 148.9K bytes - Click Count (0)