- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 370 for _elevate (0.03 sec)
-
src/main/java/org/codelibs/fess/suggest/settings/ElevateWordSettings.java
* <li>{@code ELEVATE_WORD_FIELDS} - The key for elevate word fields.</li> * <li>{@code ELEVATE_WORD_TAGS} - The key for elevate word tags.</li> * <li>{@code ELEVATE_WORD_ROLES} - The key for elevate word roles.</li> * </ul> * * <p>Methods:</p> * <ul> * <li>{@code get()} - Retrieves an array of elevate words from the settings.</li> * <li>{@code add(ElevateWord elevateWord)} - Adds a new elevate word to the settings.</li>
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/CreateForm.java
@Size(max = 1000) public String createdBy; /** The timestamp when this elevate word entry was created */ @ValidateTypeFailure public Long createdTime; /** * Initializes the form with default values for creating a new elevate word entry. */ public void initialize() { boost = 100.0f;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/UploadForm.java
/** * Form for uploading elevate word files to the Fess search engine. * Elevate words are terms that should be promoted or given higher ranking in search results. * This form is used in the admin interface to upload elevate word configuration files. */ public class UploadForm { /** * The multipart file containing the elevate word configurations to be uploaded.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java
/** * Shows the main elevate word management page. * * @return HTML response for the elevate word list page */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index() { return asListHtml(); } /** * Lists elevate words with pagination support. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/EditForm.java
import jakarta.validation.constraints.Size; /** * Form class for editing elevate word configurations in the admin interface. * This form extends CreateForm to include fields necessary for updating existing elevate word entries, * including tracking information for optimistic locking and audit trails. * Elevate words are used to boost specific documents in search results when certain keywords are matched. * */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java
import org.lastaflute.web.response.StreamResponse; import jakarta.annotation.Resource; /** * API action for admin elevate word management. * Provides RESTful API endpoints for managing elevate word settings in the Fess search engine. * Elevate words boost specific search terms to appear higher in search results. */ public class ApiAdminElevatewordAction extends FessApiAdminAction {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.8K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt
override fun setEnabledCipherSuites(suites: Array<String>) { delegate!!.enabledCipherSuites = suites } override fun getSupportedProtocols(): Array<String> = delegate!!.supportedProtocols override fun getEnabledProtocols(): Array<String> = delegate!!.enabledProtocols override fun setEnabledProtocols(protocols: Array<String>) { delegate!!.enabledProtocols = protocols }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.4K bytes - Viewed (0) -
mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/MockWebServer.kt
return delegate.port } val hostName: String get() { before() // This implicitly starts the delegate. return delegate.hostName } var protocolNegotiationEnabled: Boolean by delegate::protocolNegotiationEnabled @get:JvmName("protocols") var protocols: List<Protocol> by delegate::protocols init { delegate.dispatcher = dispatcher.wrap()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 00:19:42 UTC 2025 - 4.6K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/ClientRuleEventListener.kt
delegate.connectStart(call, inetSocketAddress, proxy) } override fun secureConnectStart(call: Call) { logWithTime("secureConnectStart") delegate.secureConnectStart(call) } override fun secureConnectEnd( call: Call, handshake: Handshake?, ) { logWithTime("secureConnectEnd: $handshake") delegate.secureConnectEnd(call, handshake) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 14:58:02 UTC 2025 - 6.5K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSession.kt
abstract class DelegatingSSLSession( protected val delegate: SSLSession?, ) : SSLSession { override fun getId(): ByteArray = delegate!!.id override fun getSessionContext(): SSLSessionContext = delegate!!.sessionContext override fun getCreationTime(): Long = delegate!!.creationTime override fun getLastAccessedTime(): Long = delegate!!.lastAccessedTime override fun invalidate() { delegate!!.invalidate() }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2.6K bytes - Viewed (0)