Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 2,013 for _this (0.02 seconds)

  1. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractEntity.java

            public DocMeta id(String id) {
                this.id = id;
                myuniqueByProperty("_id");
                return this;
            }
    
            public String id() {
                return id;
            }
    
            public DocMeta version(Long version) {
                this.version = version;
                return this;
            }
    
            public Long version() {
                return version;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  2. 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
        @CustomSize(maxKey = "form.admin.max.input.size")
    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)
  3. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/JApiCmpExtensions.kt

    import japicmp.model.JApiField
    
    
    internal
    val JApiCompatibility.jApiClass: JApiClass
        get() = when (this) {
            is JApiClass -> this
            is JApiField -> this.getjApiClass()
            is JApiBehavior -> this.getjApiClass()
            else -> error("Unsupported japicmp member type '${this::class}'")
        }
    
    
    internal
    val JApiClass.isKotlin: Boolean
        get() = newClass.orElse(null)?.isKotlin ?: false
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 24 14:15:15 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  4. architecture/standards/0004-use-a-platform-architecture.md

    #### Software development platform
    
    This is a general purpose platform that builds on the core automation platform to add support for the automation of software development.
    This includes work such as compiling, testing and documenting software, plus sharing that software via publishing and dependency management.
    This platform is agnostic to what kind of software is being developed.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/llm/LlmChatResponse.java

            this.totalTokens = totalTokens;
        }
    
        /**
         * Gets the model name.
         *
         * @return the model name
         */
        public String getModel() {
            return model;
        }
    
        /**
         * Sets the model name.
         *
         * @param model the model name
         */
        public void setModel(final String model) {
            this.model = model;
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 12 10:32:40 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  6. dbflute_fess/dfprop/documentMap.dfprop

        # o schemaHtmlFileName: (NotRequired - Default 'schema-[project-name].html')
        #  The file name (not contain path) of SchemaHtml.
        #  Basically you don't need this.
        #  (For example, when you use Application Behavior, you need this)
        #
        #; schemaHtmlFileName = xxx.html
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.4K bytes
    - Click Count (0)
  7. build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/GradleArchitecture.kt

        val module = ArchitectureModuleBuilder(moduleName, this)
        extensions.findByType(ProjectStructure::class.java)!!.architectureElements.add(module)
        module.moduleConfiguration()
    }
    
    /**
     * Defines a platform.
     */
    fun Settings.platform(platformName: String, platformConfiguration: PlatformBuilder.() -> Unit): PlatformBuilder {
        val platform = PlatformBuilder(platformName, this)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 15:37:56 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

        /**
         * Returns the timestamp of this dictionary file.
         *
         * @return the timestamp when this dictionary was created or last modified
         */
        public Date getTimestamp() {
            return timestamp;
        }
    
        /**
         * Sets the dictionary manager for this file and returns this instance.
         *
         * @param dictionaryManager the dictionary manager to set
         * @return this dictionary file instance for method chaining
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 11.2K bytes
    - Click Count (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/DomBuilder.groovy

        List elements = []
    
        def DomBuilder(Document document) {
            this.document = document
            this.parent = document
        }
    
        def DomBuilder(Node parent) {
            this.document = parent.ownerDocument
            this.parent = parent
        }
    
        def DomBuilder(Document document, Node parent) {
            this.document = document
            this.parent = parent
        }
    
        protected Element createNode(Object name) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.7K bytes
    - Click Count (0)
  10. architecture/platforms.md

    ### Software development platform
    
    This is a general purpose platform that builds on the core automation platform to add support for the automation of software development.
    This includes work such as compiling, testing and documenting software, plus sharing that software via publishing and dependency management.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu May 02 06:42:46 GMT 2024
    - 5.4K bytes
    - Click Count (0)
Back to Top