- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 14 for IsEnabled (0.06 seconds)
-
src/main/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJob.java
public boolean isLoggingEnabled() { return Constants.T.equals(getJobLogging()); } public boolean isCrawlerJob() { return Constants.T.equals(getCrawler()); } public boolean isEnabled() { return Constants.T.equals(getAvailable()); } public boolean isRunning() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 3.6K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeGoalTest.java
UpgradeContext context = createMockContext(tempDir, TestUtils.createOptions(all, null, null, plugins, model)); boolean isEnabled = upgradeGoal.testIsPluginsEnabled(context); assertEquals(expectedEnabled, isEnabled, description); } private static Stream<Arguments> providePluginOptionScenarios() { return Stream.of(Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 13.7K bytes - Click Count (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts
} } val pgpSigningKey: Provider<String> = providers.environmentVariable("PGP_SIGNING_KEY") val signArtifacts: Boolean = !pgpSigningKey.orNull.isNullOrEmpty() tasks.withType<Sign>().configureEach { isEnabled = signArtifacts } signing { useInMemoryPgpKeys( project.providers.environmentVariable("PGP_SIGNING_KEY").orNull, project.providers.environmentVariable("PGP_SIGNING_KEY_PASSPHRASE").orNull )
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Oct 30 16:56:31 GMT 2025 - 5.7K bytes - Click Count (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts
val pgpSigningPassPhrase: Provider<String> = providers.environmentVariable("PGP_SIGNING_KEY_PASSPHRASE") val signArtifacts: Boolean = !pgpSigningKey.orNull.isNullOrEmpty() tasks.withType<Sign>().configureEach { isEnabled = signArtifacts } signing { useInMemoryPgpKeys(pgpSigningKey.orNull, pgpSigningPassPhrase.orNull) publishing.publications.configureEach { if (signArtifacts) { signing.sign(this)
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 13 11:01:20 GMT 2026 - 6.2K bytes - Click Count (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionRangeResolver.java
} Versioning filteredVersions = versioning.clone(); for (String version : versioning.getVersions()) { if (!remoteRepository.getPolicy(ArtifactUtils.isSnapshot(version)).isEnabled()) { filteredVersions.removeVersion(version); } } return filteredVersions; } private void invalidMetadata(Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Dec 16 13:41:14 GMT 2025 - 11.7K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts
addErrorProneDependency(buildDeps.findLibrary("nullaway").get()) } project.tasks.named<JavaCompile>(this.compileJavaTaskName) { options.errorprone { isEnabled = extension.enabled checks = errorproneExtension.disabledChecks.map { it.associateWith { CheckSeverity.OFF } } nullaway {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:47:14 GMT 2026 - 8.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/RateLimitHelper.java
} } /** * Check if rate limiting is enabled. * @return true if rate limiting is enabled */ public boolean isEnabled() { return ComponentUtil.getFessConfig().isRateLimitEnabled(); } /** * Get the client IP address from the request, considering proxy headers.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Dec 24 14:16:27 GMT 2025 - 9.4K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java
File file = artifact.getFile(); ArtifactRepositoryPolicy policy = artifact.isSnapshot() ? repository.getSnapshots() : repository.getReleases(); if (!policy.isEnabled()) { if (getLogger().isDebugEnabled()) { getLogger() .debug("Skipping update check for " + artifact + " (" + file + ") from " + repository.getId()
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Dec 16 13:41:14 GMT 2025 - 9.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJobTest.java
final ScheduledJob job = new ScheduledJob(); job.setAvailable(Constants.T); assertTrue(job.isEnabled()); } @Test public void test_isEnabled_false() { final ScheduledJob job = new ScheduledJob(); job.setAvailable(Constants.F); assertFalse(job.isEnabled()); } @Test public void test_isCrawlerJob_true() { final ScheduledJob job = new ScheduledJob();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 15.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java
LaRequestUtil.getOptionalRequest().ifPresent(request -> { request.setAttribute("running", entity.isRunning()); request.setAttribute("enabled", entity.isEnabled()); }); }).orElse(() -> { throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id), this::asListHtml); });
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 21.8K bytes - Click Count (0)