Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 78 for PRE (0.01 seconds)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java

            @Override
            public boolean onStartElement(String element, Map<String, String> attributes) {
                if (!"pre".equals(element)) {
                    return false;
                }
                Element newElement = document.createElement("programlisting");
                //we're making an assumption that all <pre> elements contain java code
                //this should mostly be true :)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed May 21 06:20:45 GMT 2025
    - 29.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/MarkdownRendererTest.java

        }
    
        @Test
        public void test_render_codeBlock() {
            String markdown = "```\ncode block\n```";
            String result = markdownRenderer.render(markdown);
            assertTrue(result.contains("<pre>"));
            assertTrue(result.contains("<code>"));
            assertTrue(result.contains("code block"));
        }
    
        @Test
        public void test_render_blockquote() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java

         * @return empty OptionalThing indicating no login manager is used
         */
        @Override
        protected OptionalThing<LoginManager> myLoginManager() {
            return OptionalThing.empty();
        }
    
        /**
         * Pre-processes API requests by checking access authorization before executing the action.
         * If access is not allowed, returns an unauthorized error response.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 4.8K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/sereq/AdminSereqAction.java

                return curlHelper.delete(path);
            default:
                break;
            }
            return null;
        }
    
        /**
         * Creates an HTML response for the list page with optional pre-processing.
         *
         * @param runnable optional runnable to execute before rendering (can be null)
         * @return HTML response for the search request list page
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 7.2K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java

        }
    
        @Test
        public void test_execute_withPrefixQuery() {
            // Test executing BoostQuery with a PrefixQuery inside
            Term term = new Term("field", "pre");
            PrefixQuery prefixQuery = new PrefixQuery(term);
            BoostQuery boostQuery = new BoostQuery(prefixQuery, 4.0f);
    
            QueryContext context = new QueryContext("test", false);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17K bytes
    - Click Count (0)
  6. src/main/webapp/js/chat.js

            ALLOWED_TAGS: ['h1','h2','h3','h4','h5','h6',
                           'p','br','hr',
                           'strong','em','b','i','u','s','del',
                           'ul','ol','li',
                           'code','pre',
                           'blockquote',
                           'table','thead','tbody','tr','th','td',
                           'a','img',
                           'span','div'],
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java

        /**
         * Displays the form for duplicating an existing data store configuration.
         *
         * @param id the ID of the data config to duplicate
         * @return HTML response for the data config creation form pre-populated with duplicated values
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse duplicate(final String id) {
            saveToken();
            return asEditHtml().useForm(CreateForm.class, op -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 21K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java

                @Override
                public void commit() {
                }
            };
    
            FileListIndexUpdateCallbackImpl callback = new FileListIndexUpdateCallbackImpl(mockCallback, null, 1);
    
            // Pre-populate with some URLs
            synchronized (mockCallback) {
                for (int i = 0; i < 100; i++) {
                    callback.deleteUrlList.add("http://example.com/doc" + i);
                }
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 19.7K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java

        /**
         * Displays the form for duplicating an existing file crawler configuration.
         *
         * @param id the ID of the file config to duplicate
         * @return HTML response for the file config creation form pre-populated with duplicated values
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse duplicate(final String id) {
            saveToken();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 21.8K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

        /**
         * Displays the form for duplicating an existing web crawler configuration.
         *
         * @param id the ID of the web config to duplicate
         * @return HTML response for the web config creation form pre-populated with duplicated values
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse duplicate(final String id) {
            saveToken();
            return asEditHtml().useForm(CreateForm.class, op -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 22.2K bytes
    - Click Count (0)
Back to Top