Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 337 for alla (0.18 seconds)

  1. src/main/java/org/codelibs/fess/app/pager/CharMappingPager.java

     * Provides pagination functionality for character mapping lists.
     */
    public class CharMappingPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        /** Total number of records across all pages. */
        private int allRecordCount;
    
        /** Total number of pages available. */
        private int allPageCount;
    
        /** Flag indicating if a previous page exists. */
        private boolean existPrePage;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.5K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/util/FacetResponse.java

             * The decoded name of the field.
             */
            protected String name;
    
            /**
             * Constructs a Field from OpenSearch Terms aggregation.
             * Decodes the field name and processes all term buckets to extract
             * field values and their document counts.
             *
             * @param termFacet the OpenSearch Terms aggregation containing field facet data
             */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Nov 23 11:39:05 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  3. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/GradleModuleExtension.kt

        fun identity(action: ModuleIdentity.() -> Unit) {
            action(identity)
        }
    
        /**
         * Describes the target processes that the code in this module must be able
         * to run on, by definition. All modules that this module depends on will
         * then be required to also support these target runtimes.
         *
         * The required runtimes for a project should be set if that project has
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:40:18 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java

         */
        public ReqHeaderPager() {
            // Default constructor - initialization handled by field defaults and clear() method
        }
    
        /**
         * Clears all pager data and resets to default values.
         * This method resets pagination state and clears all request header fields.
         */
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 7.4K bytes
    - Click Count (0)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

            } as Action
        )
    
    
    }
    tasks.named("check").configure { dependsOn(checkBinaryCompatibility) }
    
    tasks.register("cleanAcceptedApiChanges", CleanAcceptedApiChanges) {
        description = 'Cleans up all existing accepted API changes.'
        jsonFileDirectory = apiChangesJsonDirectory
    }
    
    static List<String> toPatterns(List<String> packages) {
        packages.collect {
            it.replaceAll('\\*\\*', '###')
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Dec 30 10:14:25 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  6. LICENSE

          "Licensor" shall mean the copyright owner or entity authorized by
          the copyright owner that is granting the License.
    
          "Legal Entity" shall mean the union of the acting entity and all
          other entities that control, are controlled by, or are under common
          control with that entity. For the purposes of this definition,
          "control" means (i) the power, direct or indirect, to cause the
    Created: Wed Apr 01 00:11:11 GMT 2026
    - Last Modified: Thu Feb 20 19:53:57 GMT 2020
    - 11.1K bytes
    - Click Count (0)
  7. .github/PULL_REQUEST_TEMPLATE.md

    - [ ] [Review Contribution Guidelines](https://github.com/gradle/gradle/blob/master/CONTRIBUTING.md).
    - [ ] Make sure that all commits are [signed off](https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---signoff) to indicate that you agree to the terms of [Developer Certificate of Origin](https://developercertificate.org/).
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 13 22:36:19 GMT 2024
    - 1.7K bytes
    - Click Count (0)
  8. .github/auto_assign.yml

    # Set to true to add reviewers to pull requests
    addReviewers: false
    
    # Set to true to add assignees to pull requests
    addAssignees: author
    
    # A number of assignees to add to the pull request
    # Set to 0 to add all of the assignees.
    # Uses numberOfReviewers if unset.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Mar 08 03:48:52 GMT 2022
    - 286 bytes
    - Click Count (0)
  9. src/main/webapp/css/chat.css

        align-items: center;
        padding: 0.25rem 0.75rem;
        border-radius: 3px;
        font-size: 0.8125rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        transition: all 0.2s ease;
    }
    
    .status-lozenge.status-ready {
        background-color: #dfe1e6;
        color: #42526e;
    }
    
    .status-lozenge.status-thinking {
        background-color: #deebff;
        color: #0052cc;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java

                threads[i].start();
            }
    
            // Wait for all threads to complete
            for (Thread thread : threads) {
                try {
                    thread.join();
                } catch (InterruptedException e) {
                    fail("Thread interrupted: " + e.getMessage());
                }
            }
    
            // Verify all threads got the same instances
            for (int i = 0; i < threadCount; i++) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.2K bytes
    - Click Count (0)
Back to Top