- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for expanfs (0.18 sec)
-
src/main/java/org/codelibs/core/message/MessageFormatter.java
*/ public static String getFormattedMessage(final String messageCode, final String simpleMessage) { return "[" + messageCode + "]" + simpleMessage; } /** * Expands arguments and returns a simple message without a message code. * * @param messageCode * Message code * @param args * Arguments
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.4K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/cache/SegmentBenchmark.java
import com.google.common.cache.LocalCache.Segment; import java.util.concurrent.atomic.AtomicReferenceArray; import org.jspecify.annotations.NullUnmarked; /** * Benchmark for {@code LocalCache.Segment.expand()}. * * @author Charles Fry */ @NullUnmarked public class SegmentBenchmark { @Param({"16", "32", "64", "128", "256", "512", "1024", "2048", "4096", "8192"}) int capacity;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 2.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/TreeTraverser.java
this.stack = new ArrayDeque<>(); stack.addLast(expand(root)); } @Override protected @Nullable T computeNext() { while (!stack.isEmpty()) { PostOrderNode<T> top = stack.getLast(); if (top.childIterator.hasNext()) { T child = top.childIterator.next(); stack.addLast(expand(child)); } else { stack.removeLast();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 8.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/TreeTraverser.java
this.stack = new ArrayDeque<>(); stack.addLast(expand(root)); } @Override protected @Nullable T computeNext() { while (!stack.isEmpty()) { PostOrderNode<T> top = stack.getLast(); if (top.childIterator.hasNext()) { T child = top.childIterator.next(); stack.addLast(expand(child)); } else { stack.removeLast();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/EditForm.java
/** * Form class for editing synonym dictionary entries in the admin interface. * This form extends CreateForm to include fields necessary for updating existing synonym entries. * Synonyms are used to expand search queries by including terms with similar meanings. * */ public class EditForm extends CreateForm { /** * Creates a new EditForm instance. */ public EditForm() { super();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/ActionForm.java
/** * The number of shards for doc. */ @Size(max = 10) public String numberOfShardsForDoc = ComponentUtil.getFessConfig().getIndexNumberOfShards(); /** * The auto expand replicas for doc. */ @Size(max = 10) public String autoExpandReplicasForDoc = ComponentUtil.getFessConfig().getIndexAutoExpandReplicas();
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/dict/synonym/CreateForm.java
import jakarta.validation.constraints.Size; /** * Form class for creating new synonym dictionary entries. * This form handles the creation of synonym mappings that expand * search queries to include related terms. * */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/header.jsp
<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%> <nav class="main-header navbar navbar-expand navbar-dark navbar-secondary"> <ul class="navbar-nav"> <li class="nav-item"> <a class="nav-link" data-widget="pushmenu" href="#"> <em class="fas fa-bars"> <span class="sr-only"><la:message key="labels.admin_toggle_navi" /></span> </a> </li> </ul> <ul class="navbar-nav ml-auto"> <c:if test="${eoled}">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 24 03:00:28 UTC 2020 - 2.3K bytes - Viewed (0) -
okhttp/src/androidMain/kotlin/okhttp3/OkHttp.android.kt
* a robolectric test. * * The functionality that will fail without a valid Context is primarily Cookies and URL Domain handling, but * may expand in the future. */ fun initialize(applicationContext: Context) { if (PlatformRegistry.applicationContext == null) { // Make sure we aren't using an Activity or Service Context
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 1.3K bytes - Viewed (0) -
okcurl/build.gradle.kts
val copyResourcesTemplates = tasks.register<Copy>("copyResourcesTemplates") { from("src/main/resources-templates") into(layout.buildDirectory.dir("generated/resources-templates")) expand("projectVersion" to "${project.version}") filteringCharset = Charsets.UTF_8.toString() } kotlin { sourceSets { val main by getting { resources.srcDir(copyResourcesTemplates.get().outputs) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jul 22 20:31:49 UTC 2025 - 1.6K bytes - Viewed (0)