- Sort Score
- Num 10 results
- Language All
Results 2311 - 2320 of 3,096 for value5 (0.6 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava-testlib/src/com/google/common/collect/testing/testers/QueueOfferTester.java
public void testOffer_nullSupported() { assertTrue("offer(null) should return true", getQueue().offer(null)); expectAdded((E) null); } @CollectionFeature.Require(value = SUPPORTS_ADD, absent = ALLOWS_NULL_VALUES) public void testOffer_nullUnsupported() { assertThrows(NullPointerException.class, () -> getQueue().offer(null)); expectUnchanged();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Nov 14 23:40:07 GMT 2024 - 2.3K bytes - Click Count (0) -
guava/src/com/google/common/annotations/GwtCompatible.java
*/ @Retention(RetentionPolicy.CLASS) @Target({ElementType.TYPE, ElementType.METHOD}) @Documented @GwtCompatible public @interface GwtCompatible { /** * Obsolete; formerly used to indicate when a value was GWT serializable back before Guava dropped * support for GWT serialization. * * @see <a href= * "https://www.gwtproject.org/doc/latest/DevGuideServerCommunication#DevGuideSerializableTypes">Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Aug 06 17:15:36 GMT 2025 - 2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/IndexExportJobTest.java
final Map<String, Object> source = new LinkedHashMap<>(); source.put("field\"name", "value"); final String json = new JsonIndexExportFormatter().format(source, Collections.emptySet()); assertTrue(json.contains("\"field\\\"name\": \"value\"")); } @Test public void test_jsonFormatter_singleField() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 09:08:38 GMT 2026 - 66.1K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java
* * @param project the project to modify * @param key they property's key * @param value the value or {@code null} to unset the property */ void setProperty(@Nonnull Project project, @Nonnull String key, @Nullable String value); /** * Returns the original project being built when the input project is a forked project.Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Jan 30 23:29:13 GMT 2025 - 12K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/schema-extra-example.md
* `Form()` * `File()` 該 `dict` 的鍵用來識別各個範例,而每個值則是另一個 `dict`。 在 `examples` 中,每個範例的 `dict` 可以包含: * `summary`:範例的簡短描述。 * `description`:較長的描述,可包含 Markdown 文字。 * `value`:實際顯示的範例,例如一個 `dict`。 * `externalValue`:`value` 的替代方案,為指向範例的 URL。儘管這可能不如 `value` 被工具廣泛支援。 你可以這樣使用: {* ../../docs_src/schema_extra_example/tutorial005_an_py310.py hl[23:49] *} ### 文件 UI 中的 OpenAPI 範例 { #openapi-examples-in-the-docs-ui }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 8.4K bytes - Click Count (0) -
cmd/format-erasure_test.go
// empty should return false. formats[0] = nil if ok := formatErasureV3ThisEmpty(formats); ok { t.Fatalf("expected value false, got %t", ok) } formats[2].Erasure.This = "" if ok := formatErasureV3ThisEmpty(formats); !ok { t.Fatalf("expected value true, got %t", ok) } } // Tests xl format migration. func TestFormatErasureMigrate(t *testing.T) { // Get test root.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 12.7K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/IncubatingInternalInterfaceAddedRule.groovy
if (c.superclass != null) { collect(result, c.superclass) } } private List<String> filterChangesToReport(CtClass c, Map<String, CtClass> interfaces) { return interfaces.values().findAll { implementedDirectly(it, c) && addedInterfaceIsIncubatingOrInternal(it, c) }*.name.sort() } private boolean implementedDirectly(CtClass interf, CtClass c) {Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Oct 06 19:15:15 GMT 2022 - 2.8K bytes - Click Count (0) -
okhttp/src/androidMain/kotlin/okhttp3/internal/platform/android/Android10SocketAdapter.kt
@SuppressLint("NewApi") override fun getSelectedProtocol(sslSocket: SSLSocket): String? = try { // SSLSocket.getApplicationProtocol returns "" if application protocols values will not // be used. Observed if you didn't specify SSLParameters.setApplicationProtocols when (val protocol = sslSocket.applicationProtocol) { null, "" -> null else -> protocol }Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sat Jan 10 09:36:53 GMT 2026 - 2.8K bytes - Click Count (0) -
guava-tests/benchmark/com/google/common/collect/SetContainsBenchmark.java
* * @author Kevin Bourrillion */ @NullUnmarked public class SetContainsBenchmark { // Start at 4.88 then multiply by 2*2^phi <evil cackle> - The goal is be uniform // yet visit a variety of "values-relative-to-the-next-power-of-2" @Param({"5", "30", "180", "1100", "6900", "43000", "260000"}) // "1600000", "9800000" private int size; // TODO(kevinb): look at exact (==) hits vs. equals() hits?Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 2.5K bytes - Click Count (0) -
guava/src/com/google/common/cache/RemovalListener.java
* shared resources. * * @param <K> the most general type of keys this listener can listen for; for example {@code Object} * if any key is acceptable * @param <V> the most general type of values this listener can listen for; for example {@code * Object} if any key is acceptable * @author Charles Fry * @since 10.0 */ @GwtCompatible @FunctionalInterface public interface RemovalListener<K, V> { /**Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 21 03:10:51 GMT 2024 - 2K bytes - Click Count (0)