- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 2,028 for C_value (0.04 sec)
-
src/main/java/org/codelibs/core/beans/util/CopyOptions.java
/** * Returns {@literal true} if the value is a target for copying. * * @param value * The source value to be copied * @return {@literal true} if the value is a target for copying */ protected boolean isTargetValue(final Object value) { if (value == null) { return !excludesNull; }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 17.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/FieldUtil.java
} } /** * Sets the value of the given {@link Field} representing a {@code static} field to the specified new value. * * @param field the field (must not be {@literal null}) * @param value the new value for the {@literal static} field * @throws IllegalAccessRuntimeException if the field cannot be accessed
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.8K 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) -
tests/delete_test.go
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jul 21 02:46:58 UTC 2025 - 9.5K bytes - Viewed (0) -
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) -
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) -
src/main/java/org/codelibs/fess/validation/CronExpressionValidator.java
@Override public boolean isValid(final String value, final ConstraintValidatorContext context) { return determineValid(value); } /** * Determines if the given value is a valid cron expression. * @param value the value to validate * @return true if valid, false otherwise */ protected boolean determineValid(final String value) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K 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) -
migrator/migrator.go
// RunWithValue run migration with statement value func (m Migrator) RunWithValue(value interface{}, fc func(*gorm.Statement) error) error { stmt := &gorm.Statement{DB: m.DB} if m.DB.Statement != nil { stmt.Table = m.DB.Statement.Table stmt.TableExpr = m.DB.Statement.TableExpr } if table, ok := value.(string); ok { stmt.Table = table } else if err := stmt.ParseWithSpecialTableName(value, stmt.Table); err != nil { return err }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Jun 06 02:35:01 UTC 2025 - 29.5K bytes - Viewed (0) -
callbacks/helper_test.go
input map[string]interface{} expect clause.Values }{ { name: "Test convert string value", input: map[string]interface{}{ "name": "my name", }, expect: clause.Values{ Columns: []clause.Column{{Name: "name"}}, Values: [][]interface{}{{"my name"}}, }, }, { name: "Test convert int value", input: map[string]interface{}{ "age": 18, }, expect: clause.Values{
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Mar 05 02:22:57 UTC 2024 - 3.4K bytes - Viewed (0)