Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for Beal (0.03 seconds)

  1. AI_POLICY.md

    3. **Actively collaborate with us.** We commit real time and attention to everything we review. Low-effort submissions—where code is generated, submitted, and abandoned—waste our limited review capacity.
    
    ## What contributors can expect from us
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

            // The real getDocumentCount returns -1 on error; our test double tracks this
            testClient.documentCountError = true;
            final long count = testClient.getDocumentCount("nonexistent_index");
            assertEquals(-1L, count);
        }
    
        @Test
        public void test_getAliasCount_returnsZeroOnError() {
            // The real getAliasCount returns 0 on error; our test double tracks this
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 28.6K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerActionTest.java

                capturedOption.set(option);
                return null;
            });
    
            final ApiAdminSchedulerAction action = createActionWithMockService(scheduledJob);
    
            // Execute the real put$start() method
            final JsonResponse<ApiResult> jsonResponse = action.put$start("job-1");
    
            // Verify: response contains non-null jobLogId
            assertNotNull(jsonResponse);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 13K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/app/job/ScriptExecutorJobTest.java

            params.put(Constants.JOB_LOG_ID, "pregenerated-abc123");
    
            final MockJobRuntime runtime = MockJobRuntime.of(ScriptExecutorJob.class, op -> op.params(() -> params));
    
            // Execute the real process() method
            final TestableScriptExecutorJob job = new TestableScriptExecutorJob();
            job.process(runtime);
    
            // Verify the JobLog was stored with the pre-generated ID
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  5. CONTRIBUTING.md

    #### Install Develocity IntelliJ plugin
    
    Consider installing the [Develocity IntelliJ plugin](https://plugins.jetbrains.com/plugin/27471-develocity) to bring real-time Gradle build analysis directly into your IDE. 
    It helps developers optimize performance and gain deeper insights into their builds.
    
    ## Making your change
    
    ### Code change guidelines
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

                    // Simulate: create always fails (no OpenSearch)
                    // Then apply the retry logic from the real implementation
                    if (remainingRetries <= 0) {
                        return false;
                    }
                    return tryCleanupAndRetry(operationName, data, remainingRetries);
                }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
  7. src/main/resources/fess_config.properties

    rate.limit.whitelist.ips=127.0.0.1,::1
    # Comma-separated list of blocked IPs.
    rate.limit.blocked.ips=
    # Comma-separated list of trusted proxy IPs. Only trust X-Forwarded-For/X-Real-IP from these IPs.
    rate.limit.trusted.proxies=127.0.0.1,::1
    # Number of requests between cleanup operations to prevent memory leaks.
    rate.limit.cleanup.interval=1000
    
    # Virtual Host: Host:fess.codelibs.org=fess
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'rate.limit.trusted.proxies'. <br>
         * The value is, e.g. 127.0.0.1,::1 <br>
         * comment: Comma-separated list of trusted proxy IPs. Only trust X-Forwarded-For/X-Real-IP from these IPs.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getRateLimitTrustedProxies();
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
Back to Top