Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 101 - 110 of 230 for potser (0.03 seconds)

  1. architecture/runtimes.md

    - Additional constraints. For example, the CLI client runtimes limit the libraries that are available to the code in that runtime, for performance reasons. 
    
    Other modules and platforms define the services that they contribute to the runtime.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu May 02 06:42:46 GMT 2024
    - 2.3K bytes
    - Click Count (0)
  2. .github/workflows/update-test-buckets.yml

              else
                echo "changes=false" >> $GITHUB_OUTPUT
              fi
          - name: Create Pull Request
            if: steps.check-changes.outputs.changes == 'true'
            uses: peter-evans/create-pull-request@v8
            with:
              commit-message: Update test buckets
              branch: devprod/update-test-buckets
              branch-suffix: timestamp
              delete-branch: true
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Mar 24 22:05:21 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  3. .teamcity/src/main/kotlin/configurations/LightweightChecks.kt

            os = Os.LINUX,
            stage = stage,
            init = {
                id("${model.projectId}_LightweightChecks")
                name = "Lightweight Checks"
                description = "Lightweight checks that don't depend on other builds"
    
                val os = os
                val defaultJavaBinary = "${javaHome(BuildToolBuildJvm, os)}/bin/java"
    
                applyDefaultSettings(artifactRuleOverride = "")
    
                params {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 23 03:29:32 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/script/ScriptEngineTest.java

        public void test_evaluate_withMissingParameter() {
            String template = "Hello ${name} and ${other}";
            Map<String, Object> paramMap = new HashMap<>();
            paramMap.put("name", "Bob");
            // "other" parameter is missing
    
            Object result = scriptEngine.evaluate(template, paramMap);
            assertEquals("Hello Bob and ${other}", result);
        }
    
        // Test evaluate method with complex object as parameter
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  5. .github/ISSUE_TEMPLATE/bug_report.md

    **Environment (please complete the following information):**
     - OS: [e.g. Windows 10]
     - Browser [e.g. chrome, safari]
     - Version [e.g. 13.5.0]
    
    **Additional context**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Aug 17 22:53:30 GMT 2020
    - 782 bytes
    - Click Count (0)
  6. src/main/assemblies/extension/kibana/fess_log.ndjson

    count\",\"schema\":\"metric\",\"params\":{}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"bucket\",\"params\":{\"field\":\"searchWord\",\"order\":\"desc\",\"size\":5,\"orderBy\":\"1\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\"}}]}"},"id":"1523d560-b2b7-11e9-b23e-033a71496733","migrationVersion":{"visualization":"7.2.0"},"references":[{"id":"17d7d930-b2b4-11e9-b23e-033a71496733","name":"kibanaSavedObjectMeta.se...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Aug 12 01:26:21 GMT 2019
    - 18.2K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/entity/RequestParameter.java

    /**
     * Entity class representing a request parameter with a name and associated values.
     * This class encapsulates HTTP request parameters that can have multiple values,
     * such as query parameters, form parameters, or other request-related data.
     *
     * <p>This class is immutable and thread-safe. Once created, the parameter name
     * and values cannot be modified.</p>
     *
     */
    public class RequestParameter {
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/FessBoot.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess;
    
    // DO NOT DEPEND OTHER JARs
    
    import java.io.File;
    import java.util.List;
    import java.util.Properties;
    
    import org.apache.catalina.Container;
    import org.apache.catalina.Context;
    import org.apache.catalina.Host;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 11.3K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java

            };
    
            monitorTarget.append(buf, "errorKey", supplier);
            assertEquals("\"errorKey\":null", buf.toString());
        }
    
        // Test append method with Boolean value (other object type)
        @Test
        public void test_append_booleanValue() {
            StringBuilder buf = new StringBuilder();
            Supplier<Object> supplier = () -> Boolean.TRUE;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.3K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/SearchBody.java

        /**
         * Default constructor.
         */
        public SearchBody() {
            super();
        }
    
        // `size` is an alias of `num`.
        // `size` is prepared to be compatible with other Admin APIs
        /** Number of search results to retrieve (alias for num) */
        @ValidateTypeFailure
        public Integer size;
    
        @Override
        public void initialize() {
            if (size != null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.4K bytes
    - Click Count (0)
Back to Top