- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 1,622 for _this9 (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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) -
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) -
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) -
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) -
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) -
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) -
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 */ @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.8K bytes - Click Count (0) -
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) -
src/main/java/org/codelibs/fess/exception/UserRoleLoginException.java
* @param actionClass the action class that requires specific user roles */ public UserRoleLoginException(final Class<? extends RootAction> actionClass) { this.actionClass = actionClass; } /** * Gets the action class associated with this exception. * * @return the action class that requires specific user roles */ public Class<? extends RootAction> getActionClass() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Nov 19 08:04:23 GMT 2025 - 2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java
public HtmlResponse create(final CreateForm form) { verifyCrudMode(form.crudMode, CrudMode.CREATE, form.dictId); validate(form, messages -> {}, this::asEditHtml); verifyToken(this::asEditHtml); createCharMappingItem(form, this::asEditHtml).ifPresent(entity -> { try { charMappingService.store(form.dictId, entity);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 22.3K bytes - Click Count (0)