Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 131 - 140 of 266 for pole (0.02 seconds)

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

            Element section = document.createElement("section");
            parent.appendChild(section);
            section.setAttribute("id", blockDoc.getId());
            section.setAttribute("role", "detail");
    
            Element title = document.createElement("title");
            section.appendChild(title);
            Element literal = document.createElement("literal");
            title.appendChild(literal);
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 3.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/entity/QueryContextTest.java

        @Test
        public void test_roleQuery() {
            queryContext = new QueryContext("test", false);
    
            // Default should be enabled
            assertTrue(queryContext.roleQueryEnabled());
    
            // Skip role query
            queryContext.skipRoleQuery();
            assertFalse(queryContext.roleQueryEnabled());
        }
    
        // Test getDefaultField and setDefaultField
        @Test
        public void test_defaultField() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.6K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        /** The path of the HTML: /admin/role/admin_role.jsp */
        HtmlNext path_AdminRole_AdminRoleJsp = new HtmlNext("/admin/role/admin_role.jsp");
    
        /** The path of the HTML: /admin/role/admin_role_details.jsp */
        HtmlNext path_AdminRole_AdminRoleDetailsJsp = new HtmlNext("/admin/role/admin_role_details.jsp");
    
        /** The path of the HTML: /admin/role/admin_role_edit.jsp */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Feb 10 04:24:02 GMT 2026
    - 26.5K bytes
    - Click Count (0)
  4. src/main/webapp/WEB-INF/view/common/admin/crud/buttons.jsp

    		<i class="fa fa-trash" aria-hidden="true"></i>
    		<la:message key="labels.crud_button_delete" />
    	</button>
    	<div class="modal fade" id="confirmToDelete" tabindex="-1"
    		role="alertdialog">
    		<div class="modal-dialog">
    			<div class="modal-content">
    				<div class="modal-header" style="border-bottom: 2px solid #dc3545;">
    					<h4 class="modal-title">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 3K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceActionTest.java

        //                                                                         ==========
    
        @Test
        public void test_roleConstant() {
            assertEquals("admin-maintenance", AdminMaintenanceAction.ROLE);
        }
    
        // ===================================================================================
        //                                                                         ActionForm
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/it/admin/AccessTokenTests.java

            searchBody.put("size", NUM * 2);
            List<String> updatedList = getPropList(searchBody, "permissions");
            for (String val : updatedList) {
                assertEquals(val, "{role}admin-api2");
            }
        }
    
        private void testPermission() {
            // Create access token
            final String name = NAME_PREFIX + 0;
            final Map<String, Object> requestBody = new HashMap<>();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jun 12 02:18:38 GMT 2025
    - 3.7K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/helper/LogNotificationHelper.java

            } catch (final Exception e) {
                maxBufferSize = 1000;
            }
            queue.offer(event);
            if (size.incrementAndGet() > maxBufferSize) {
                if (queue.poll() != null) {
                    size.decrementAndGet();
                }
            }
        }
    
        /**
         * Drains all events from the buffer and returns them as a list.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  8. src/main/webapp/WEB-INF/view/admin/duplicatehost/admin_duplicatehost.jsp

                                    </la:info>
                                    <la:errors/>
                                </div>
                                <a role="button" data-toggle="collapse" href="#listSearchForm" aria-expanded="false"
                                   aria-controls="listSearchForm"><i class="fas fa-search" aria-hidden="true"></i></a>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 7.7K bytes
    - Click Count (0)
  9. src/main/webapp/WEB-INF/view/admin/relatedquery/admin_relatedquery.jsp

                                    </la:info>
                                    <la:errors/>
                                </div>
                                <a role="button" data-toggle="collapse" href="#listSearchForm" aria-expanded="false"
                                   aria-controls="listSearchForm"><i class="fas fa-search" aria-hidden="true"></i></a>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 7.4K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/entity/FessUserTest.java

            user = new TestFessUser("testuser", null, new String[] {}, new String[] {});
            assertNull(user.getRoleNames());
    
            // Test with roles containing special characters
            roles = new String[] { "role-1", "role_2", "role.3" };
            user = new TestFessUser("testuser", roles, new String[] {}, new String[] {});
            assertArrayEquals(roles, user.getRoleNames());
        }
    
        @Test
        public void test_getGroupNames() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 11.2K bytes
    - Click Count (0)
Back to Top