- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 1,151 for Init (0.03 sec)
-
.teamcity/src/main/kotlin/configurations/BuildDistributions.kt
import common.getBuildScanCustomValueParam import model.CIBuildModel import model.Stage class BuildDistributions( model: CIBuildModel, stage: Stage, ) : OsAwareBaseGradleBuildType(os = LINUX, stage = stage, init = { id("${model.projectId}_BuildDistributions") name = "Build Distributions" description = "Creation and verification of the distribution and documentation" applyDefaults(
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Mon Aug 25 20:21:47 UTC 2025 - 1.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactoryWrapper.java
*/ public void initParameterMap() { factory.setInitParameterMap(params); } /** * Initializes the wrapped factory. */ @Override public void init() { factory.init(); } /** * Adds a client to the wrapped factory. * @param regex The regular expression for the client. * @param client The CrawlerClient instance. */ @Override
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/MergeReleaseIntoMaster.kt
import common.gradleWrapper import jetbrains.buildServer.configs.kotlin.AbsoluteId import jetbrains.buildServer.configs.kotlin.triggers.finishBuildTrigger object MergeReleaseIntoMaster : BasePromotionBuildType() { init { id("Promotion_MergeReleaseIntoMaster") name = "Merge Release into Master" description = "Merge Release into Master" val vcsBranch = VersionedSettingsBranch.fromDslContext()
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Tue Jun 10 10:38:00 UTC 2025 - 2.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/StartReleaseCycleTest.kt
import common.gradleWrapper import jetbrains.buildServer.configs.kotlin.triggers.schedule import jetbrains.buildServer.configs.kotlin.triggers.vcs object StartReleaseCycleTest : BasePromotionBuildType(cleanCheckout = false) { init { id("Promotion_AllBranchesStartReleaseCycleTest") name = "Start Release Cycle Test" description = "Test for Start Release Cycle pipeline" steps { gradleWrapper {
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Mar 20 06:13:56 UTC 2025 - 2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/SmokeTests.kt
class SmokeTests( model: CIBuildModel, stage: Stage, testJava: JvmCategory, id: String, task: String = "smokeTest", splitNumber: Int = 1, ) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage = stage, init = { id("${model.projectId}_SmokeTest_$id") name = "Smoke Tests with 3rd Party Plugins ($task) - ${testJava.version.toCapitalized()} Linux"
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Feb 12 09:12:03 UTC 2025 - 1.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java
languageHelper.getReindexScriptSource()); } public void test_init() { try { languageHelper.init(); // Should not throw exception } catch (Exception e) { fail("init() should not throw an exception: " + e.getMessage()); } } public void test_updateDocument_withExistingLang() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/TestPerformanceTest.kt
import jetbrains.buildServer.configs.kotlin.BuildSteps import model.CIBuildModel import model.Stage class TestPerformanceTest( model: CIBuildModel, stage: Stage, ) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage, init = { val os = Os.LINUX val buildTypeThis = this val testProject = "smallJavaMultiProject" fun BuildSteps.gradleStep(tasks: List<String>) { gradleWrapper {
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Mon Aug 25 20:21:47 UTC 2025 - 3.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepCheckReady.kt
) : BasePublishGradleDistribution( promotedBranch = branch.branchName, prepTask = branch.prepNightlyTaskName(), triggerName = "QuickFeedback", cleanCheckout = false, ) { init { id("Promotion_SnapshotFromQuickFeedbackStepCheckReady") name = "Nightly Snapshot (from QuickFeedback) - Check Ready" description = "Checks that a nightly snapshot can be published from QuickFeedback"
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Mar 20 06:13:56 UTC 2025 - 1.2K bytes - Viewed (0) -
src/packaging/deb/scripts/conffiles
${packaging.env.file} /etc/init.d/fess
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 10 01:24:02 UTC 2015 - 76 bytes - Viewed (0) -
src/main/java/jcifs/util/Crypto.java
* @return RC4 cipher in encryption mode */ public static Cipher getArcfour(final byte[] key) { try { final Cipher c = Cipher.getInstance("RC4"); c.init(Cipher.ENCRYPT_MODE, new SecretKeySpec(key, "RC4")); return c; } catch (NoSuchAlgorithmException | NoSuchPaddingException | InvalidKeyException e) { throw new CIFSUnsupportedCryptoException(e);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.7K bytes - Viewed (0)