- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 37 for FieldName (0.12 sec)
-
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
public boolean hasFieldDesc(final String fieldName) { assertArgumentNotEmpty("fieldName", fieldName); return fieldDescCache.containsKey(fieldName); } @Override public FieldDesc getFieldDesc(final String fieldName) { assertArgumentNotEmpty("fieldName", fieldName); final FieldDesc fieldDesc = fieldDescCache.get(fieldName); if (fieldDesc == null) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 26.1K bytes - Viewed (0) -
compat/maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3ReaderEx.java
* * @param source the source value * @param fieldName a description of the field being interpolated. The implementation may use this to * log stuff * @return the interpolated value */ String transform(String source, String fieldName); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java
public FieldConfigs(final Map<String, String> params) { this.params = params; } public OptionalThing<Config> getConfig(final String fieldName) { final String value = params.get(fieldName); if (StringUtil.isNotBlank(value)) { return OptionalThing.of(new Config(value)); } return OptionalThing.empty(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 2.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/StandardSystemPropertyTest.java
public class StandardSystemPropertyTest extends TestCase { public void testGetKeyMatchesString() { for (StandardSystemProperty property : StandardSystemProperty.values()) { String fieldName = property.name(); String expected = Ascii.toLowerCase(fieldName).replaceAll("_", "."); assertEquals(expected, property.key()); } } public void testGetValue() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Oct 10 08:40:05 UTC 2023 - 2.4K bytes - Viewed (0) -
compat/maven-repository-metadata/src/main/java/org/apache/maven/artifact/repository/metadata/io/xpp3/MetadataXpp3Reader.java
* * @param source The source value * @param fieldName A description of the field being interpolated. The implementation may use this to * log stuff. * @return The interpolated value. */ String transform(String source, String fieldName); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
while (jsonParser.nextToken() != JsonToken.END_OBJECT) { final String fieldName = jsonParser.getCurrentName(); if (fieldName != null) { jsonParser.nextToken(); // Move to the value of the current field if (jsonParser.getCurrentToken() == JsonToken.START_ARRAY) { nestedMap.put(fieldName, parseArray(jsonParser));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 12.3K bytes - Viewed (0) -
compat/maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3Reader.java
* @param source The source value * @param fieldName A description of the field being interpolated. The implementation may use this to * log stuff. * @return The interpolated value. */ String transform(String source, String fieldName); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlReaderRequest.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Jul 09 12:10:26 UTC 2024 - 6.8K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/-UtilJvm.kt
internal fun <T> readFieldOrNull( instance: Any, fieldType: Class<T>, fieldName: String, ): T? { var c: Class<*> = instance.javaClass while (c != Any::class.java) { try { val field = c.getDeclaredField(fieldName) field.isAccessible = true val value = field.get(instance)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon May 13 13:42:37 UTC 2024 - 10.7K bytes - Viewed (0) -
src/main/resources/suggest_indices/analyzer/mapping-default.json
"type": "keyword" }, "match": "*", "match_mapping_type": "string" } } ], "properties": { "settingsType": { "type": "keyword" }, "fieldName": { "type": "keyword" }, "readingAnalyzer": { "type": "keyword" }, "readingTermAnalyzer": { "type": "keyword" }, "normalizeAnalyzer": { "type": "keyword"
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Fri Aug 03 15:54:27 UTC 2018 - 613 bytes - Viewed (0)