- Sort Score
- Result 10 results
- Languages All
Results 3781 - 3790 of 6,120 for stringy (0.09 sec)
-
src/main/java/org/codelibs/fess/es/config/exbhv/RelatedContentBhv.java
import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class RelatedContentBhv extends BsRelatedContentBhv { private String indexName = null; @Override protected String asEsIndex() { if (indexName == null) { final String name = ComponentUtil.getFessConfig().getIndexConfigIndex(); indexName = super.asEsIndex().replaceFirst(Pattern.quote("fess_config"), name); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exbhv/RelatedQueryBhv.java
import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class RelatedQueryBhv extends BsRelatedQueryBhv { private String indexName = null; @Override protected String asEsIndex() { if (indexName == null) { final String name = ComponentUtil.getFessConfig().getIndexConfigIndex(); indexName = super.asEsIndex().replaceFirst(Pattern.quote("fess_config"), name); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exbhv/WebConfigBhv.java
import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class WebConfigBhv extends BsWebConfigBhv { private String indexName = null; @Override protected String asEsIndex() { if (indexName == null) { final String name = ComponentUtil.getFessConfig().getIndexConfigIndex(); indexName = super.asEsIndex().replaceFirst(Pattern.quote("fess_config"), name); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableSortedMapHeadMapInclusiveMapInterfaceTest.java
public class ImmutableSortedMapHeadMapInclusiveMapInterfaceTest extends AbstractImmutableSortedMapMapInterfaceTest<String, Integer> { @Override protected SortedMap<String, Integer> makePopulatedMap() { return ImmutableSortedMap.of("a", 1, "b", 2, "c", 3, "d", 4, "e", 5).headMap("c", true); } @Override protected String getKeyNotInPopulatedMap() { return "d"; } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Mar 17 01:34:55 UTC 2022 - 1.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSortedMapHeadMapMapInterfaceTest.java
@GwtCompatible public class ImmutableSortedMapHeadMapMapInterfaceTest extends AbstractImmutableSortedMapMapInterfaceTest<String, Integer> { @Override protected SortedMap<String, Integer> makePopulatedMap() { return ImmutableSortedMap.of("a", 1, "b", 2, "c", 3, "d", 4, "e", 5).headMap("d"); } @Override protected String getKeyNotInPopulatedMap() { return "d"; } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Mar 17 01:34:55 UTC 2022 - 1.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSortedMapSubMapMapInterfaceTest.java
@GwtCompatible public class ImmutableSortedMapSubMapMapInterfaceTest extends AbstractImmutableSortedMapMapInterfaceTest<String, Integer> { @Override protected SortedMap<String, Integer> makePopulatedMap() { return ImmutableSortedMap.of("a", 1, "b", 2, "c", 3, "d", 4, "e", 5).subMap("b", "d"); } @Override protected String getKeyNotInPopulatedMap() { return "a"; } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Mar 17 01:34:55 UTC 2022 - 1.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
*/ @Nonnull String getGroupId(); /** * Returns the project artifactId. */ @Nonnull String getArtifactId(); /** * Returns the project version. */ @Nonnull String getVersion(); /** * Returns the project packaging. * <p> * Note: unlike in legacy code, logical checks against string representing packaging (returned by this method)
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/CreateForm.java
* @author Keiichi Watanabe */ public class CreateForm { @ValidateTypeFailure public Integer crudMode; @Required @Pattern(regexp = "[^\\s]+") public String suggestWord; @Size(max = 1000) public String createdBy; @ValidateTypeFailure public Long createdTime; public void initialize() { createdBy = ComponentUtil.getSystemHelper().getUsername();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.4K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/collect/testing/MinimalCollectionTest.java
public static Test suite() { return CollectionTestSuiteBuilder.using( new TestStringCollectionGenerator() { @Override public Collection<String> create(String[] elements) { // TODO: MinimalCollection should perhaps throw for (Object element : elements) { if (element == null) { throw new NullPointerException();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 1.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/UsingToStringOrdering.java
* limitations under the License. */ package com.google.common.collect; import com.google.common.annotations.GwtCompatible; import java.io.Serializable; /** An ordering that uses the natural order of the string representation of the values. */ @GwtCompatible(serializable = true) @ElementTypesAreNonnullByDefault final class UsingToStringOrdering extends Ordering<Object> implements Serializable {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sun Jun 20 14:22:42 UTC 2021 - 1.4K bytes - Viewed (0)