- Sort Score
- Result 10 results
- Languages All
Results 501 - 510 of 2,618 for VALUE (0.05 sec)
-
android/guava/src/com/google/common/cache/LongAdder.java
@Override final long fn(long v, long x) { return v + x; } /** Creates a new adder with initial sum of zero. */ public LongAdder() {} /** * Adds the given value. * * @param x the value to add */ @Override public void add(long x) { Cell[] as; long b, v; int[] hc; Cell a; int n; if ((as = cells) != null || !casBase(b = base, b + x)) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 18:00:07 UTC 2021 - 5.5K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Booleans.java
} /** * Returns a hash code for {@code value}; equal to the result of invoking {@code ((Boolean) * value).hashCode()}. * * <p><b>Java 8+ users:</b> use {@link Boolean#hashCode(boolean)} instead. * * @param value a primitive {@code boolean} value * @return a hash code for the value */ public static int hashCode(boolean value) { return value ? 1231 : 1237; } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 20.4K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Booleans.java
} /** * Returns a hash code for {@code value}; equal to the result of invoking {@code ((Boolean) * value).hashCode()}. * * <p><b>Java 8+ users:</b> use {@link Boolean#hashCode(boolean)} instead. * * @param value a primitive {@code boolean} value * @return a hash code for the value */ public static int hashCode(boolean value) { return value ? 1231 : 1237; } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 20.4K bytes - Viewed (0) -
internal/logger/legacy.go
return } scfg[config.AuditWebhookSubSys][k] = config.KVS{ config.KV{ Key: config.Enable, Value: config.EnableOn, }, config.KV{ Key: Endpoint, Value: args.Endpoint.String(), }, config.KV{ Key: AuthToken, Value: args.AuthToken, }, } } // SetLoggerHTTP helper for migrating older config to newer KV format.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 03 09:47:07 UTC 2023 - 2K bytes - Viewed (0) -
callbacks/preload.go
preloadMap := map[string]map[string][]interface{}{} setPreloadMap := func(name, value string, args []interface{}) { if _, ok := preloadMap[name]; !ok { preloadMap[name] = map[string][]interface{}{} } if value != "" { preloadMap[name][value] = args } } for name, args := range preloads { preloadFields := strings.Split(name, ".") value := strings.TrimPrefix(strings.TrimPrefix(name, preloadFields[0]), ".")
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Wed Jun 12 10:52:33 UTC 2024 - 11.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/design/admin_design.jsp
<div class="wrapper"> <jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include> <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp"> <jsp:param name="menuCategoryType" value="system"/> <jsp:param name="menuType" value="design"/> </jsp:include> <div class="content-wrapper"> <div class="content-header"> <div class="container-fluid"> <div class="row mb-2">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/converter/DateConverter.java
@Override public Object getAsObject(final String value) { if (isEmpty(value)) { return null; } return DateConversionUtil.toDate(value, pattern); } @Override public String getAsString(final Object value) { if (value == null) { return null; } return StringConversionUtil.toString((Date) value, pattern); } @Override
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/converter/TimeConverter.java
@Override public Object getAsObject(final String value) { if (isEmpty(value)) { return null; } return TimeConversionUtil.toSqlTime(value, pattern); } @Override public String getAsString(final Object value) { if (value == null) { return null; } return StringConversionUtil.toString((Date) value, pattern); } @Override
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableMultimapTest.java
ImmutableMultimap.builderWithExpectedKeys(0); builder.put("key", "value"); assertThat(builder.build().entries()).containsExactly(immutableEntry("key", "value")); } public void testBuilderWithExpectedKeysPositive() { ImmutableMultimap.Builder<String, String> builder = ImmutableMultimap.builderWithExpectedKeys(1); builder.put("key", "value");
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 6.8K bytes - Viewed (0) -
src/main/resources/fess_message_fr.properties
constraints.LuhnCheck.message = Le chiffre de contrôle pour ${value} est invalide, la somme de contrôle Luhn Modulo 10 a échoué. constraints.Mod10Check.message = Le chiffre de contrôle pour ${value} est invalide, la somme de contrôle Modulo 10 a échoué. constraints.Mod11Check.message = Le chiffre de contrôle pour ${value} est invalide, la somme de contrôle Modulo 11 a échoué.
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Feb 06 22:59:17 UTC 2023 - 14.2K bytes - Viewed (0)