- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 387 for concern (0.03 sec)
-
android/guava-tests/test/com/google/common/primitives/IntsTest.java
assertThat(converter.convert("1")).isEqualTo(1); assertThat(converter.convert("0")).isEqualTo(0); assertThat(converter.convert("-1")).isEqualTo(-1); assertThat(converter.convert("0xff")).isEqualTo(255); assertThat(converter.convert("0xFF")).isEqualTo(255); assertThat(converter.convert("-0xFF")).isEqualTo(-255); assertThat(converter.convert("#0000FF")).isEqualTo(255);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocumentUtil.java
} /** * Gets a typed value from a document map with a default value. * * @param <T> the type to convert the value to * @param doc the document map to extract the value from * @param key the key to look up in the document map * @param clazz the class type to convert the value to * @param defaultValue the default value to return if the key is not found or conversion fails
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java
return FuzzyQuery.class.getSimpleName(); } /** * Executes the fuzzy query command to convert a Lucene FuzzyQuery into an OpenSearch QueryBuilder. * * @param context the query context containing search configuration * @param query the Lucene query to convert (must be a FuzzyQuery) * @param boost the boost factor to apply to the query * @return OpenSearch QueryBuilder for fuzzy matching
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/DoublesTest.java
assertThat(converter.convert("1.0")).isEqualTo(1.0); assertThat(converter.convert("0.0")).isEqualTo(0.0); assertThat(converter.convert("-1.0")).isEqualTo(-1.0); assertThat(converter.convert("1")).isEqualTo(1.0); assertThat(converter.convert("0")).isEqualTo(0.0); assertThat(converter.convert("-1")).isEqualTo(-1.0); assertThat(converter.convert("1e6")).isEqualTo(1e6);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 30.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/converter/SqlDateConverter.java
import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull; import java.util.Date; import org.codelibs.core.beans.Converter; import org.codelibs.core.convert.DateConversionUtil; import org.codelibs.core.convert.StringConversionUtil; import org.codelibs.core.lang.StringUtil; /** * Converter for SQL dates. * * @author higa */ public class SqlDateConverter implements Converter {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2K bytes - Viewed (0) -
docs/en/docs/advanced/response-change-status-code.md
But if the data didn't exist, you want to create it, and return an HTTP status code of "CREATED" `201`. But you still want to be able to filter and convert the data you return with a `response_model`. For those cases, you can use a `Response` parameter. ## Use a `Response` parameter { #use-a-response-parameter }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Hexdump.java
*/ package jcifs.smb1.util; import java.io.PrintStream; /** * Utility class for hexadecimal dump operations. * * This class provides methods to convert binary data to * hexadecimal string representation for debugging purposes. */ public class Hexdump { /** * Default constructor. */ public Hexdump() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/FloatsTest.java
assertThat(converter.convert("1.0")).isEqualTo(1.0f); assertThat(converter.convert("0.0")).isEqualTo(0.0f); assertThat(converter.convert("-1.0")).isEqualTo(-1.0f); assertThat(converter.convert("1")).isEqualTo(1.0f); assertThat(converter.convert("0")).isEqualTo(0.0f); assertThat(converter.convert("-1")).isEqualTo(-1.0f); assertThat(converter.convert("1e6")).isEqualTo(1e6f);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/FloatsTest.java
assertThat(converter.convert("1.0")).isEqualTo(1.0f); assertThat(converter.convert("0.0")).isEqualTo(0.0f); assertThat(converter.convert("-1.0")).isEqualTo(-1.0f); assertThat(converter.convert("1")).isEqualTo(1.0f); assertThat(converter.convert("0")).isEqualTo(0.0f); assertThat(converter.convert("-1")).isEqualTo(-1.0f); assertThat(converter.convert("1e6")).isEqualTo(1e6f);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java
public double getAverageReadLatencyMicros() { long reads = rdmaReads.get(); if (reads == 0) { return 0.0; } return totalReadTime.get() / (double) reads / 1000.0; // Convert to microseconds } /** * Calculate average write latency in microseconds * * @return average write latency */ public double getAverageWriteLatencyMicros() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 10.7K bytes - Viewed (0)