Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 73 for acceptPK (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/util/ThreadDumpUtil.java

            for (final Map.Entry<Thread, StackTraceElement[]> entry : Thread.getAllStackTraces().entrySet()) {
                writer.accept("Thread: " + entry.getKey());
                final StackTraceElement[] trace = entry.getValue();
                for (final StackTraceElement element : trace) {
                    writer.accept("\tat " + element);
                }
            }
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  2. src/main/webapp/js/admin/plugins/form-validator/lang/ro.js

    alegi măcar ",badNumberOfSelectedOptionsEnd:" răspunsuri",badAlphaNumeric:"Valoarea introdusă trebuie să con însă doar caractere alfanumerice ",badAlphaNumericExtra:" și ",wrongFileSize:"Fisierul trimis este prea mare (max %s)",wrongFileType:"Se acceptă doar fisiere tip %s",groupCheckedRangeStart:"Te rog alege între ",groupCheckedTooFewStart:"Te rog alege măcar ",groupCheckedTooManyStart:"Te rog alege maxim ",groupCheckedEnd:" elemnt(e)",badCreditCard:"Numărul de card introdus este incorect",badCVV:"Numărul...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 2.5K bytes
    - Click Count (0)
  3. src/main/webapp/js/admin/plugins/form-validator/lang/fr.js

    auvaise taille de l'image, ",imageTooTall:"l'image ne peut pas être plus élevée que",imageTooWide:"l'image ne peut pas être plus large que",imageTooSmall:"l'image est trop petite",min:"moins",max:"max",imageRatioNotAccepted:"Ratio de l'image non accepté"}})}(a,window)});...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 2.6K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticatorTest.java

            // Test setting different max group depths
            authenticator.setMaxGroupDepth(5);
            authenticator.setMaxGroupDepth(20);
            authenticator.setMaxGroupDepth(1);
    
            // Verify method accepts valid values without exception
            assertTrue(true);
        }
    
        @Test
        public void test_setGroupCacheExpiry() {
            EntraIdAuthenticator authenticator = new EntraIdAuthenticator();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 19.3K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/entity/QueryContext.java

         */
        public void addFunctionScore(final Consumer<List<FilterFunctionBuilder>> functionScoreQuery) {
            final List<FilterFunctionBuilder> list = new ArrayList<>();
            functionScoreQuery.accept(list);
            queryBuilder = QueryBuilders.functionScoreQuery(queryBuilder, list.toArray(new FilterFunctionBuilder[list.size()]));
        }
    
        /**
         * Adds additional query clauses using a boolean query builder.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Aug 19 14:09:36 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java

            assertFalse(provider.isUseTimeZoneHandling());
        }
    
        // Test isAcceptCookieTimeZone() method
        @Test
        public void test_isAcceptCookieTimeZone() {
            // Verify that cookie time zone is not accepted
            assertFalse(provider.isAcceptCookieTimeZone());
        }
    
        // Test findBusinessTimeZone() method
        @Test
        public void test_findBusinessTimeZone() {
            // Setup
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/it/admin/BadWordTests.java

                    .multiPart("file", "badwords.csv", csvContent.getBytes())
                    .when()
                    .put(getApiPath() + "/upload");
    
            int statusCode = response.getStatusCode();
            // Accept either 200 (success) or other status codes based on implementation
            assertTrue(statusCode == 200 || statusCode == 400, "Status code should be 200 or 400, but was " + statusCode);
    
            if (statusCode == 200) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java

                return; // basically no way when called in Framework (because called when SpecifyColumn exists)
            }
            __specifiedProperties = newModifiedProperties();
            __specifiedProperties.accept(__modifiedProperties);
        }
    
        // ===================================================================================
        //                                                                Specified Properties
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 07:01:25 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractEntity.java

                return; // basically no way when called in Framework (because called when SpecifyColumn exists)
            }
            __specifiedProperties = newModifiedProperties();
            __specifiedProperties.accept(__modifiedProperties);
        }
    
        // ===================================================================================
        //                                                                Specified Properties
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/util/InputStreamThread.java

                        }
                        if (bufferSize > 0) {
                            list.add(line);
                        }
                        if (outputCallback != null) {
                            outputCallback.accept(line);
                        }
                        if (list.size() > bufferSize) {
                            list.remove(0);
                        }
                    }
                } catch (final Exception e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 4.6K bytes
    - Click Count (0)
Back to Top