- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 653 for setName (0.18 sec)
-
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
logger.warn("No crawling session: {}", sessionId); return; } if (StringUtil.isNotBlank(name)) { crawlingInfo.setName(name); } else { crawlingInfo.setName(Constants.CRAWLING_INFO_SYSTEM_NAME); } if (dayForCleanup >= 0) { final long expires = getExpiredTime(dayForCleanup);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.6K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java
.setClassPathScanning(PlexusConstants.SCANNING_INDEX) .setAutoWiring(true) .setJSR250Lifecycle(true) .setStrictClassPathScanning(true) .setName("maven"); customizeContainerConfiguration(context, cc); CoreExports exports = new CoreExports( containerRealm, collectExportedArtifacts(coreEntry, extensions),
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
@Override public OptionalEntity<WebConfig> getWebConfigByName(String name) { final WebConfig webConfig = new WebConfig(); webConfig.setId("01T"); webConfig.setName("__TEMPLATE__"); return OptionalEntity.of(webConfig); } }, WebConfigService.class.getCanonicalName()); ComponentUtil.register(new FileConfigService() { @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 23.2K bytes - Viewed (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild/codenarc/rules/IntegrationTestFixturesRule.kt
import org.codenarc.util.AstUtil class IntegrationTestFixturesRule : AbstractAstVisitorRule() { override fun getName(): String = "IntegrationTestFixtures" override fun getPriority(): Int = 1 override fun setPriority(priority: Int) { throw UnsupportedOperationException() } override fun setName(name: String?) { throw UnsupportedOperationException() }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
if (form.maxAccessCount != null) { wConfig.setMaxAccessCount(form.maxAccessCount); } wConfig.setName(configName); wConfig.setNumOfThread(getDefaultInteger("default.config.web.numOfThread", Constants.DEFAULT_NUM_OF_THREAD_FOR_WEB));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/exbhv/RoleBhv.java
protected <RESULT extends Role> RESULT createEntity(final Map<String, Object> source, final Class<? extends RESULT> entityType) { try { final RESULT result = entityType.newInstance(); result.setName(DfTypeUtil.toString(source.get("name"))); result.setAttributes(source.entrySet().stream().filter(e -> !"name".equals(e.getKey()))
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/Init.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
final long now = ComponentUtil.getSystemHelper().getCurrentTimeAsLong(); final String name = attributes.getValue("Name"); labelType = new LabelType(); labelType.setName(name); labelType.setValue(name); labelType.setPermissions(new String[] { "Rguest" }); labelType.setCreatedBy(Constants.SYSTEM_USER); labelType.setCreatedTime(now);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 14.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/BinaryTransformerTest.java
protected void setUp() throws Exception { super.setUp(); binaryTransformer = new BinaryTransformer(); binaryTransformer.setName("binaryTransformer"); } public void test_name() { assertEquals("binaryTransformer", binaryTransformer.getName()); } public void test_transform() { final byte[] data = new String("xyz").getBytes();
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 3.2K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/LicenseTest.java
} @Test void testToStringNullSafe() { assertNotNull(new License().toString()); } public void testToStringNotNonsense() { License license = new License(); license.setName("Unlicense"); license.setUrl("http://lic.localdomain"); String s = license.toString(); assert "License {name=Unlicense, url=http://lic.localdomain}".equals(s) : s; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0)