Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 101 - 110 of 337 for alla (0.01 seconds)

  1. src/main/resources/fess_env_thumbnail.properties

    # SMTP server settings for main: host:port
    mail.smtp.server.main.host.and.port = localhost:25
    
    # The prefix of subject to show test environment or not
    mail.subject.test.prefix = 
    
    # The common return path of all mail
    mail.return.path = root@localhost
    
    
    # ========================================================================================
    #                                                                                      DB
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 12 13:38:57 GMT 2018
    - 2.2K bytes
    - Click Count (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotes.java

    public abstract class ReleaseNotes {
        /**
         * The source Markdown file for the release notes.
         */
        public abstract RegularFileProperty getMarkdownFile();
    
        /**
         * The base CSS file used by all documentation.
         */
        public abstract RegularFileProperty getBaseCssFile();
    
        /**
         * The release notes specific CSS file
         */
        public abstract RegularFileProperty getReleaseNotesCssFile();
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 22 12:08:23 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  3. src/main/resources/fess_indices/fess/no/stopwords.txt

    ett
    har
    om
    vi
    min
    mitt
    ha
    hadde
    hun
    nå
    over
    da
    ved
    fra
    du
    ut
    sin
    dem
    oss
    opp
    man
    kan
    hans
    hvor
    eller
    hva
    skal
    selv
    sjøl
    her
    alle
    vil
    bli
    ble
    blei
    blitt
    kunne
    inn
    når
    være
    kom
    noen
    noe
    ville
    dere
    som
    deres
    kun
    ja
    etter
    ned
    skulle
    denne
    for
    deg
    si
    sine
    sitt
    mot
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 994 bytes
    - Click Count (0)
  4. dbflute_fess/dfprop/outsideSqlMap.dfprop

    # o sql2EntityOutputDirectory: (NotRequired - Default generateOutputDirectory)
    # o applicationOutsideSqlMap: (NotRequired - Default map:{})
    # o sqlPackage: (NotRequired - Default all packages)
    #
    # *The line that starts with '#' means comment-out.
    #
    map:{
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isGenerateProcedureParameterBean: (NotRequired - Default false)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jul 25 06:04:16 GMT 2015
    - 8K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

            crawlingInfoBhv.insertOrUpdate(crawlingInfo, op -> op.setRefreshPolicy(Constants.TRUE));
    
        }
    
        /**
         * Deletes a crawling information record and all its associated parameters.
         * First deletes all related CrawlingInfoParam records, then deletes the main record
         * with immediate refresh to ensure consistency.
         *
         * @param crawlingInfo the crawling information entity to delete
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 19.9K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

        }
    
        /**
         * Builds a comprehensive error message from a throwable and its causes.
         * This method traverses the cause chain and concatenates all error messages.
         *
         * @param t the throwable to build message from
         * @return a string containing all error messages in the cause chain
         */
        protected String buildThrowableMessage(final Throwable t) {
            final StringBuilder buf = new StringBuilder(100);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 15K bytes
    - Click Count (0)
  7. .github/workflows/team-triage-stale.yml

              days-before-issue-stale: 14
              stale-issue-label: to-triage
              stale-issue-message: ""
              days-before-issue-close: -1
    
              only-pr-labels: 'from:contributor'
              exempt-all-pr-milestones: true
              days-before-pr-stale: 14
              stale-pr-label: to-triage
              stale-pr-message: ""
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Sep 04 22:13:29 GMT 2025
    - 836 bytes
    - Click Count (0)
  8. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.groovy-dsl-gradle-plugin.gradle.kts

            //allow ProjectBuilder to inject legacy types into the system classloader
            if (testVersionProvider.get().canCompileOrRun(9)) {
                listOf("--add-opens", "java.base/java.lang=ALL-UNNAMED")
            } else {
                emptyList()
            }
        })
        jvmArgumentProviders.add(CommandLineArgumentProvider {
            val testVersion = testVersionProvider.get()
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 15:37:56 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/util/SystemUtilTest.java

                        results[index] = SystemUtil.getSearchEngineHttpAddress();
                    });
                }
    
                // Start all threads
                for (Thread thread : threads) {
                    thread.start();
                }
    
                // Wait for all threads to complete
                for (Thread thread : threads) {
                    try {
                        thread.join();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 17.1K bytes
    - Click Count (0)
  10. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/ReleasedVersionsHelper.kt

    import org.gradle.util.GradleVersion
    import java.io.File
    
    
    fun bumpPatchVersion(version: String): String {
        val parts = version.split(".")
        require(parts.size == 3 && parts.all { it.toIntOrNull() != null }) {
            "Version '$version' is not a valid x.y.z version."
        }
        return "${parts[0]}.${parts[1]}.${parts[2].toInt() + 1}"
    }
    
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 14:47:12 GMT 2026
    - 2.7K bytes
    - Click Count (0)
Back to Top