- Sort Score
- Result 10 results
- Languages All
Results 1771 - 1780 of 5,847 for stringy (0.06 sec)
-
src/main/java/org/codelibs/fess/es/config/cbean/bs/BsFileAuthenticationCB.java
public FileAuthenticationCB acceptPK(String id) { assertObjectNotNull("id", id); BsFileAuthenticationCB cb = this; cb.query().docMeta().setId_Equal(id); return (FileAuthenticationCB) this; } @Override public void acceptPrimaryKeyMap(Map<String, ? extends Object> primaryKeyMap) { acceptPK((String) primaryKeyMap.get("_id")); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/bs/BsPathMappingCB.java
public PathMappingCB acceptPK(String id) { assertObjectNotNull("id", id); BsPathMappingCB cb = this; cb.query().docMeta().setId_Equal(id); return (PathMappingCB) this; } @Override public void acceptPrimaryKeyMap(Map<String, ? extends Object> primaryKeyMap) { acceptPK((String) primaryKeyMap.get("_id")); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/bs/BsRelatedContentCB.java
public RelatedContentCB acceptPK(String id) { assertObjectNotNull("id", id); BsRelatedContentCB cb = this; cb.query().docMeta().setId_Equal(id); return (RelatedContentCB) this; } @Override public void acceptPrimaryKeyMap(Map<String, ? extends Object> primaryKeyMap) { acceptPK((String) primaryKeyMap.get("_id")); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/cbean/bs/BsClickLogCB.java
public ClickLogCB acceptPK(String id) { assertObjectNotNull("id", id); BsClickLogCB cb = this; cb.query().docMeta().setId_Equal(id); return (ClickLogCB) this; } @Override public void acceptPrimaryKeyMap(Map<String, ? extends Object> primaryKeyMap) { acceptPK((String) primaryKeyMap.get("_id")); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlFactory.java
/** * Simply converts the given content to an xml string. * * @param content the object to convert * @return the xml string representation * @throws XmlWriterException if an error occurs during the transformation * @see #fromXmlString(String) */ @Nonnull default String toXmlString(@Nonnull T content) throws XmlWriterException { StringWriter sw = new StringWriter();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Nov 17 15:52:15 UTC 2023 - 3.9K bytes - Viewed (0) -
mockwebserver-deprecated/src/test/java/okhttp3/mockwebserver/KotlinSourceModernTest.kt
var requestUrl: HttpUrl? = recordedRequest.requestUrl var requestLine: String = recordedRequest.requestLine var method: String? = recordedRequest.method var path: String? = recordedRequest.path var headers: Headers = recordedRequest.headers val header: String? = recordedRequest.getHeader("") var chunkSizes: List<Int> = recordedRequest.chunkSizes
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRequestParams.java
public abstract class SearchRequestParams { public static final String AS_NQ = "nq"; public static final String AS_OQ = "oq"; public static final String AS_EPQ = "epq"; public static final String AS_Q = "q"; public static final String AS_FILETYPE = "filetype"; public static final String AS_SITESEARCH = "sitesearch"; public static final String AS_OCCURRENCE = "occt";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.8K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/SortedMapGenerators.java
public static class ImmutableSortedMapGenerator extends TestStringSortedMapGenerator { @Override public SortedMap<String, String> create(Entry<String, String>[] entries) { ImmutableSortedMap.Builder<String, String> builder = ImmutableSortedMap.naturalOrder(); for (Entry<String, String> entry : entries) { checkNotNull(entry); builder.put(entry.getKey(), entry.getValue()); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 4.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/IteratorsTest.java
public void testToArrayEmpty() { Iterator<String> iterator = Collections.<String>emptyList().iterator(); String[] array = Iterators.toArray(iterator, String.class); assertTrue(Arrays.equals(new String[0], array)); } @GwtIncompatible // Iterators.toArray(Iterator, Class) public void testToArraySingleton() { Iterator<String> iterator = singletonList("a").iterator();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 54.1K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/primitives/UnsignedLongsBenchmark.java
private static final long[] divisors = new long[ARRAY_SIZE]; private static final String[] decimalStrings = new String[ARRAY_SIZE]; private static final String[] binaryStrings = new String[ARRAY_SIZE]; private static final String[] hexStrings = new String[ARRAY_SIZE]; private static final String[] prefixedHexStrings = new String[ARRAY_SIZE]; @BeforeExperiment void setUp() { for (int i = 0; i < ARRAY_SIZE; i++) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 4.3K bytes - Viewed (0)