Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 211 - 220 of 322 for option2 (0.04 seconds)

  1. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java

     */
    package org.codelibs.fess.mylasta.direction.sponsor;
    
    import java.util.Locale;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.dbflute.jdbc.ClassificationMeta;
    import org.dbflute.optional.OptionalThing;
    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.api.TestInfo;
    import org.lastaflute.db.dbflute.exception.ProvidedClassificationNotFoundException;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.7K bytes
    - Click Count (0)
  2. architecture/standards/0008-use-nullaway.md

    * Bridging with Kotlin code is polluted with platform types
    * Some public APIs have incorrect nullability annotations (both overly restrictive and overly permissive)
    
    While there are competing ways to represent absence (`Optional`, "Null Object" pattern, method overloads),
    it is unlikely that we'll be able to remove `null` entirely.
    
    After migrating to Java 8, we can use pluggable type checkers to ensure that our annotations are consistent, 
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 4K bytes
    - Click Count (0)
  3. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/tasks/BuildReceipt.kt

    import org.gradle.api.file.DirectoryProperty
    import org.gradle.api.logging.Logger
    import org.gradle.api.provider.Property
    import org.gradle.api.provider.Provider
    import org.gradle.api.tasks.Input
    import org.gradle.api.tasks.Optional
    import org.gradle.api.tasks.OutputDirectory
    import org.gradle.api.tasks.TaskAction
    // Using star import to workaround https://youtrack.jetbrains.com/issue/KTIJ-24390
    import org.gradle.kotlin.dsl.*
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 25 08:51:12 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/ldap/LdapUser.java

    import org.codelibs.fess.entity.FessUser;
    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalThing;
    
    /**
     * An LDAP user.
     */
    public class LdapUser implements FessUser {
    
        private static final long serialVersionUID = 1L;
    
        /** The environment for LDAP connection. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBrokenInternalLinks.java

    import org.gradle.api.file.RegularFileProperty;
    import org.gradle.api.tasks.CacheableTask;
    import org.gradle.api.tasks.InputDirectory;
    import org.gradle.api.tasks.InputFile;
    import org.gradle.api.tasks.Optional;
    import org.gradle.api.tasks.OutputFile;
    import org.gradle.api.tasks.PathSensitive;
    import org.gradle.api.tasks.PathSensitivity;
    import org.gradle.api.tasks.TaskAction;
    import org.gradle.internal.UncheckedException;
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 12 23:22:57 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  6. src/main/resources/fess_label.properties

    labels.top.search=Search
    labels.index_title=Fess
    labels.index_form_search_btn=Search
    labels.index_osdd_title=Search
    labels.index_form_option_btn=Options
    labels.index_help=Help
    labels.search_options=Search Options
    labels.search_options_close=Close
    labels.search_options_clear=Clear
    labels.search_cache_msg=This is a cache of {0}. It is a snapshot of the page as it appeared on {1}.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

         *
         * @param projectId the GCS project ID
         * @param bucket the bucket name
         * @param endpoint the custom endpoint URL (optional, for fake-gcs-server etc.)
         * @param credentialsPath the path to the credentials JSON file (optional)
         */
        public GcsStorageClient(final String projectId, final String bucket, final String endpoint, final String credentialsPath) {
            this.bucket = bucket;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 10.3K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

    import org.codelibs.fess.Constants;
    import org.codelibs.fess.dict.DictionaryException;
    import org.codelibs.fess.dict.DictionaryFile;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalEntity;
    
    /**
     * Character mapping file handler for managing character mapping dictionaries.
     * This class provides functionality to load, parse, and manage character mapping
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 15.3K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/CreateForm.java

        @ValidateTypeFailure
        public Integer crudMode;
    
        /** Configuration name for identifying this data source */
        @Required
        @Size(max = 200)
        public String name;
    
        /** Optional description of this data configuration */
        @Size(max = 1000)
        public String description;
    
        /** Handler class name for processing this data source */
        @Required
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 3.5K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/query/QueryCommand.java

    import org.codelibs.fess.Constants;
    import org.codelibs.fess.entity.QueryContext;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.web.util.LaRequestUtil;
    import org.opensearch.index.query.BoolQueryBuilder;
    import org.opensearch.index.query.DisMaxQueryBuilder;
    import org.opensearch.index.query.QueryBuilder;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Nov 23 11:39:05 GMT 2025
    - 11.6K bytes
    - Click Count (0)
Back to Top