- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 1,442 for VALUE (0.02 sec)
-
guava/src/com/google/common/primitives/Chars.java
*/ @InlineMe(replacement = "Character.hashCode(value)") @InlineMeValidationDisabled( "The hash code of a char is the int version of the char itself, so it's simplest to return" + " that.") public static int hashCode(char value) { return value; } /** * Returns the {@code char} value that is equal to {@code value}, if possible. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 24.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractConditionQuery.java
protected void checkEsInvalidQuery(String name, Object value) { if (value == null || (value instanceof String && ((String) value).isEmpty())) { String msg = "Cannot register null or empty query: name=" + name + " value=" + value; throw new InvalidQueryRegisteredException(msg); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 21.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractConditionQuery.java
protected void checkEsInvalidQuery(String name, Object value) { if (value == null || (value instanceof String && ((String) value).isEmpty())) { String msg = "Cannot register null or empty query: name=" + name + " value=" + value; throw new InvalidQueryRegisteredException(msg); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 21.1K bytes - Viewed (0) -
android/guava/src/com/google/common/math/StatsAccumulator.java
private double mean = 0.0; // any finite value will do, we only use it to multiply by zero for sum private double sumOfSquaresOfDeltas = 0.0; private double min = NaN; // any value will do private double max = NaN; // any value will do /** Adds the given value to the dataset. */ public void add(double value) { if (count == 0) { count = 1; mean = value; min = value; max = value;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:36:11 UTC 2025 - 15.8K bytes - Viewed (0) -
okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerCertificatesTest.kt
value = "San Francisco", ), ), listOf( AttributeTypeAndValue( type = country, value = "US", ), ), listOf( AttributeTypeAndValue( type = stateOrProvince, value = "Delaware", ),
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 43.9K bytes - Viewed (0) -
deps.xml
<project name="deps" basedir="."> <property name="target.dir" value="${basedir}/target/deps" /> <property name="webinf.dir" value="${basedir}/src/main/webapp/WEB-INF" /> <property name="crawler.dir" value="${basedir}/src/main/webapp/WEB-INF/env/crawler" /> <property name="suggest.dir" value="${basedir}/src/main/webapp/WEB-INF/env/suggest" /> <property name="thumbnail.dir" value="${basedir}/src/main/webapp/WEB-INF/env/thumbnail" />
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun May 18 04:53:52 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsDuplicateHost.java
public void setCreatedBy(String value) { registerModifiedProperty("createdBy"); this.createdBy = value; } public Long getCreatedTime() { checkSpecifiedProperty("createdTime"); return createdTime; } public void setCreatedTime(Long value) { registerModifiedProperty("createdTime"); this.createdTime = value; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsRelatedQuery.java
public void setCreatedBy(String value) { registerModifiedProperty("createdBy"); this.createdBy = value; } public Long getCreatedTime() { checkSpecifiedProperty("createdTime"); return createdTime; } public void setCreatedTime(Long value) { registerModifiedProperty("createdTime"); this.createdTime = value; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.6K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/FreshValueGenerator.java
return generateListMultimap(key, value); } @Generates static <K, V> ImmutableMultimap<K, V> generateImmutableMultimap(K key, V value) { return ImmutableMultimap.of(key, value); } @Generates static <K, V> ListMultimap<K, V> generateListMultimap(@Nullable K key, @Nullable V value) { return generateArrayListMultimap(key, value); } @Generates
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 28.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/env/suggest/resources/log4j2.xml
<Properties> <Property name="domain.name" value="${sys:fess.log.name:-fess}" /> <Property name="log.level" value="${sys:fess.log.level:-info}" /> <Property name="root.log.level" value="${sys:fess.log.level:-warn}" /> <Property name="log.pattern" value="%d [%t] %-5p %msg%n" /> <Property name="log.file.basedir" value="${sys:fess.log.path:-target/logs}" /> <Property name="backup.date.suffix" value="_%d{yyyyMMdd}" />
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 20 13:05:30 UTC 2023 - 1.3K bytes - Viewed (0)