- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 231 for orElse (0.03 sec)
-
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.cache-miss-monitor.gradle.kts
"CompileAllBuild_NGRemote" ) || isBuildCommitDistribution val Project.isBuildCommitDistribution: Boolean get() = providers.gradleProperty("buildCommitDistribution").map { it.toBoolean() }.orElse(false).get() fun Project.isInBuild(vararg buildTypeIds: String) = providers.environmentVariable("BUILD_TYPE_ID").orNull?.let { currentBuildTypeId -> buildTypeIds.any { currentBuildTypeId.endsWith(it) }
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Apr 11 20:57:49 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/ListForm.java
} } @Override public Object getAttribute(final String name) { return LaRequestUtil.getOptionalRequest().map(req -> req.getAttribute(name)).orElse(null); } @Override public Locale getLocale() { return ComponentUtil.getRequestManager().getUserLocale(); } @Override public SearchRequestType getType() {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/JavaSourceQueries.kt
name == candidateName.replace(".*\\$".toRegex(), "") // strip outer class names private val SINCE_REGEX = Regex("""@since ([^\s]+)""") private fun BodyDeclaration<*>.getSince(): String? = comment?.orElse(null)?.content?.let { content -> SINCE_REGEX.find(content)?.groupValues?.get(1) } private val FieldDeclaration.fieldName: String get() = variables.first().name.asString()
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Jun 06 17:52:09 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/ApiAdminRelatedqueryAction.java
logger.warn("Failed to process a request.", e); throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToDeleteCrudTable(GLOBAL, buildThrowableMessage(e))); } }).orElse(() -> { throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id)); }); return asJson(new ApiResponse().status(Status.OK).result()); } /**
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsbhv/BsClickLogBhv.java
public ClickLogCB newConditionBean() { return new ClickLogCB(); } @Override protected Entity doReadEntity(ConditionBean cb) { return facadeSelectEntity(downcast(cb)).orElse(null); } public ClickLog selectEntityWithDeletedCheck(CBCall<ClickLogCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsbhv/BsRoleBhv.java
@Override public RoleCB newConditionBean() { return new RoleCB(); } @Override protected Entity doReadEntity(ConditionBean cb) { return facadeSelectEntity(downcast(cb)).orElse(null); } public Role selectEntityWithDeletedCheck(CBCall<RoleCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFailureUrlBhv.java
public FailureUrlCB newConditionBean() { return new FailureUrlCB(); } @Override protected Entity doReadEntity(ConditionBean cb) { return facadeSelectEntity(downcast(cb)).orElse(null); } public FailureUrl selectEntityWithDeletedCheck(CBCall<FailureUrlCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsRequestHeaderBhv.java
public RequestHeaderCB newConditionBean() { return new RequestHeaderCB(); } @Override protected Entity doReadEntity(ConditionBean cb) { return facadeSelectEntity(downcast(cb)).orElse(null); } public RequestHeader selectEntityWithDeletedCheck(CBCall<RequestHeaderCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsThumbnailQueueBhv.java
public ThumbnailQueueCB newConditionBean() { return new ThumbnailQueueCB(); } @Override protected Entity doReadEntity(ConditionBean cb) { return facadeSelectEntity(downcast(cb)).orElse(null); } public ThumbnailQueue selectEntityWithDeletedCheck(CBCall<ThumbnailQueueCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.8K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java
* if applicable. */ default boolean effectiveVerbose() { return options().isPresent() && options().orElseThrow().verbose().orElse(false) || ciInfo().isPresent() && ciInfo().orElseThrow().isVerbose(); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 6.7K bytes - Viewed (0)