Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 111 - 120 of 157 for acceptPK (0.05 seconds)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/AnalyzeAndShade.kt

                            val details = classes[reader.className]
                            details.visited = true
                            val classWriter = ClassWriter(0)
                            reader.accept(
                                ClassRemapper(
                                    classWriter,
                                    object : Remapper() {
                                        override fun map(name: String): String {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Sat Mar 22 03:48:38 GMT 2025
    - 7.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

            }, docPerReq, () -> {
                systemHelper.calibrateCpuLoad();
                ThreadUtil.sleep(interval);
            }).then(response -> {
                refresh();
                success.accept(true);
            }).error(t -> error.accept(t));
        }
    
        /**
         * Purges old suggest data from documents.
         *
         * @param time The timestamp to purge data before.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 22.3K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/app/job/ScriptExecutorJobTest.java

            scheduledJob.setTarget("all");
            return scheduledJob;
        }
    
        private void registerComponents(final ScheduledJob scheduledJob, final AtomicReference<JobLog> storedJobLog) {
            // FessConfig that accepts our target
            final FessConfig fessConfig = new FessConfig.SimpleImpl() {
                @Override
                public boolean isSchedulerTarget(final String target) {
                    return true;
                }
    
    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)
  4. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/SourcesRepository.kt

            openJavaCompilationUnitsByFile
                .computeIfAbsent(apiSourceFile.currentFile) { JavaParser().parse(it).getResult().get() }
                .accept(query.visitor, null)
                ?: query.defaultValue
    
    
        fun <T : Any?> executeQuery(apiSourceFile: ApiSourceFile.Kotlin, transform: (KtFile) -> T): T =
            apiSourceFile.normalizedPath.let { sourceNormalizedPath ->
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Apr 28 14:56:52 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  5. 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)
  6. src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java

            assertEquals("Error 3", exception3.getMessage());
        }
    
        @Test
        public void test_constructorWithThrowableCause_OutOfMemoryError() {
            // Test that constructor accepts Error as cause (verifies Throwable parameter change)
            String message = "SSO login failed due to memory error";
            OutOfMemoryError error = new OutOfMemoryError("Not enough memory for SSO login");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 14.7K bytes
    - Click Count (0)
  7. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AlphabeticalAcceptedApiChangesTaskIntegrationTest.kt

                )
            )
        }
    
        @Test
        fun `verify AlphabeticalAcceptedApiChangesTask accepts properly ordered changes`() {
            //language=JSON
            firstAcceptedApiChangesFile.writeText(
                """
                    {
                        "acceptedApiChanges": [
                            {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 14 02:17:00 GMT 2025
    - 8.4K 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. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

            Caused by: java.io.IOException: Failed to delete temp directory /var/folders/_2/vxp7qn2x7qzd0zqqm8p128lh0000gq/T/junit-4205933054320696172.
    	        at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:183)
             */
            .withDebug(true)
            .withArguments(*args, "--stacktrace", "--no-watch-fs")
    
        private
        fun assertArchivedFilesSeen(vararg archiveFileNames: String) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 10 00:16:44 GMT 2026
    - 11.6K bytes
    - Click Count (0)
Back to Top