Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 15 for hover (0.05 seconds)

  1. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        QUICK(true, true, true, 120, 4),
    
        // Include cross version tests, these take care of selecting a very small set of versions to cover when run as part of this stage, including the current version
        PLATFORM(true, true, true),
    
        // Cross version tests select a small set of versions to cover when run as part of this stage
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jan 20 03:53:25 GMT 2026
    - 27.5K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java

            assertNull(exceptions[0], "Add thread threw exception");
            assertNull(exceptions[1], "Clear thread threw exception");
        }
    
        /**
         * Test iteration over deleteUrlList while synchronized.
         * This simulates what happens in deleteDocuments() method.
         */
        @Test
        public void test_deleteUrlList_iteration() throws Exception {
    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)
  3. src/test/java/org/codelibs/fess/crawler/helper/FessMimeTypeHelperTest.java

                    return ".txt=application/custom-text";
                }
            });
    
            mimeTypeHelper.init();
    
            // Override takes priority over both content and filename detection
            try (InputStream is = new ByteArrayInputStream("plain text content".getBytes(StandardCharsets.UTF_8))) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 24 09:06:33 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  4. CONTRIBUTING.md

    ## Making your change
    
    ### Code change guidelines
    
    Code contributions should follow these guidelines to maximize the chance of them being accepted:
    
    * Cover your code with tests. See the [Testing guide](contributing/Testing.md) for more information.
    * Add documentation to the User Manual and DSL Reference (under [platforms/documentation/docs/src/docs](platforms/documentation/docs/src/docs/)).
    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)
  5. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

                @Override
                public String getSystemProperty(final String key) {
                    return systemPropMap.get(key);
                }
            };
    
            // Test that new key takes precedence over legacy key
            systemPropMap.put("entraid.permission.fields", "newField");
            systemPropMap.put("aad.permission.fields", "legacyField");
            String[] fields = fessConfig.getEntraIdPermissionFields();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 25.4K bytes
    - Click Count (0)
  6. src/main/webapp/js/purify.min.js

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  7. .github/CODEOWNERS

    ## GitHub docs: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
    ##
    ## CODEOWNERS style rules:
    ## 1. Prefer team ownership over individual user ownership.
    ## 2. GBT-related team should be listed first.
    ## 3. Try to keep paths alphabetically sorted within visual groups.
    ## 4. List individual owners last.
    ##
    
    # Build infrastructure
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 18:38:15 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  8. architecture/standards/0006-use-of-provider-apis-in-gradle.md

    The Gradle codebase has evolved over time and has a mixture of simple getter/setter methods, Provider API and things in between.  It can be hard to follow best practices because Gradle provided types are reused in unexpected ways and extended by third party plugins.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 10K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/helper/SearchHelper.java

        }
    
        /**
         * Extracts and normalizes language preferences from request parameters or browser locale.
         *
         * This method prioritizes explicit language parameters over browser locale settings
         * and handles special cases like "all languages" selection.
         *
         * @param request The HTTP servlet request
         * @param params The search request parameters
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 36.3K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/query/QueryFieldConfigSetBasedLookupTest.java

            assertTrue(queryFieldConfig.searchFieldSet.contains("field2"));
            assertTrue(queryFieldConfig.searchFieldSet.contains("field3"));
        }
    
        /**
         * Test performance improvement of Set-based lookup over array-based lookup.
         * This is a micro-benchmark to demonstrate the O(1) vs O(n) improvement.
         */
        @Test
        public void test_lookupPerformance_SetFasterThanArray() {
            // Create a large array of fields
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 19.4K bytes
    - Click Count (0)
Back to Top