Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 1,624 for _this5 (0.08 seconds)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. dbflute_fess/playsql/_readme.txt

    DDL statements for creation of your schema.
    You should write your own DDL statements in this file.
    (A SQL separator is semicolon ";")
    
    take-finally-*.sql:
    SQL statements for check loaded data (or DDL after data loading)
    You should write your own SQL statements in this file.
    (basically same specifications as replace-schema.sql)
    
    The "data" directory is for data loading like this:
    /- - - - - - - - - - - - - - - - - - - -
    playsql
      |-data
         |-common
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 1.3K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

        public HtmlResponse create(final CreateForm form) {
            verifyCrudMode(form.crudMode, CrudMode.CREATE, this::asListHtml);
            validate(form, messages -> {}, this::asEditHtml);
            validateAttributes(form.attributes, v -> throwValidationError(v, this::asEditHtml));
            verifyPassword(form, this::asEditHtml);
            verifyToken(this::asEditHtml);
            getUser(form).ifPresent(entity -> {
                try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 06:18:24 GMT 2026
    - 21K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/score/ScoreBooster.java

            }
        }
    
        /**
         * Gets the priority of this score booster.
         * @return The priority.
         */
        public int getPriority() {
            return priority;
        }
    
        /**
         * Sets the priority of this score booster.
         * @param priority The priority.
         */
        public void setPriority(final int priority) {
            this.priority = priority;
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 6.6K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/thumbnail/impl/EmptyGenerator.java

        }
    
        /**
         * Generates a thumbnail for the specified ID and output file.
         * This implementation always returns false, indicating no thumbnail was generated.
         *
         * @param thumbnailId the ID of the thumbnail to generate
         * @param outputFile the output file where the thumbnail should be saved
         * @return false always, as this generator does not create thumbnails
         */
        @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.8K bytes
    - Click Count (0)
  10. src/main/webapp/js/profile.js

        }
      });
    
      $(".table tr[data-href]").each(function() {
        var $row = $(this);
        $row.css("cursor", "pointer")
          .on("mouseenter", function() {
            $(this).addClass("active");
          })
          .on("mouseleave", function() {
            $(this).removeClass("active");
          })
          .on("click", function() {
            window.location.href = $(this).attr("data-href");
          });
      });
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:12:50 GMT 2025
    - 1.3K bytes
    - Click Count (0)
Back to Top