Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 421 for b_init (0.43 sec)

  1. 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)
  2. cmd/test-utils_test.go

    func ExecExtendedObjectLayerAPITest(t *testing.T, objAPITest objAPITestType, endpoints []string) {
    	execExtended(t, func(t *testing.T, init func(), makeBucketOptions MakeBucketOptions) {
    		ExecObjectLayerAPITest(ExecObjectLayerAPITestArgs{t: t, objAPITest: objAPITest, endpoints: endpoints, init: init, makeBucketOptions: makeBucketOptions})
    	})
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 77K bytes
    - Viewed (0)
  3. .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)
  4. src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java

        public PathMappingHelper pathMappingHelper;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            pathMappingHelper = new PathMappingHelper();
            pathMappingHelper.init();
        }
    
        public void test_setPathMappingList() {
            final String sessionId = "test";
            final List<PathMapping> pathMappingList = new ArrayList<PathMapping>();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  5. .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)
  6. .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)
  7. docs/features/https.md

    === ":material-language-kotlin: Kotlin"
        ```kotlin
          private val client: OkHttpClient
    
          init {
            val trustManager = trustManagerForCertificates(trustedCertificatesInputStream())
            val sslContext = SSLContext.getInstance("TLS")
            sslContext.init(null, arrayOf<TrustManager>(trustManager), null)
            val sslSocketFactory = sslContext.socketFactory
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/filter/WebApiFilter.java

        }
    
        /**
         * Initializes the web API filter.
         *
         * @param filterConfig The filter configuration
         * @throws ServletException If initialization fails
         */
        @Override
        public void init(final FilterConfig filterConfig) throws ServletException {
            // nothing
        }
    
        /**
         * Destroys the web API filter and cleans up resources.
         */
        @Override
        public void destroy() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/promotion/BasePublishGradleDistribution.kt

        val gitUserName: String = "bot-teamcity",
        val gitUserEmail: String = "******@****.***",
        val extraParameters: String = "",
        cleanCheckout: Boolean = true,
    ) : BasePromotionBuildType(cleanCheckout) {
        init {
            artifactRules =
                """
                **/build/git-checkout/platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Jun 26 12:10:23 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedback.kt

            promotedBranch = branch.branchName,
            prepTask = branch.prepNightlyTaskName(),
            promoteTask = branch.promoteNightlyTaskName(),
            triggerName = "QuickFeedback",
        ) {
        init {
            id("Promotion_SnapshotFromQuickFeedback")
            name = "Nightly Snapshot (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)
Back to top