- Sort Score
- Result 10 results
- Languages All
Results 451 - 460 of 3,349 for anchor (0.13 sec)
-
guava-testlib/src/com/google/common/collect/testing/CollectionTestSuiteBuilder.java
* Concrete instantiation of {@link AbstractCollectionTestSuiteBuilder} for testing collections that * do not have a more specific tester like {@link ListTestSuiteBuilder} or {@link * SetTestSuiteBuilder}. * * @author Chris Povirk * @author Louis Wasserman */ @GwtIncompatible public class CollectionTestSuiteBuilder<E> extends AbstractCollectionTestSuiteBuilder<CollectionTestSuiteBuilder<E>, E> {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Aug 18 22:49:45 UTC 2021 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java
import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Size; /** * @author codelibs * @author Keiichi Watanabe */ public class EditForm { public String webConfigName; public String fileConfigName; @ValidateTypeFailure public String pageNumber;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/EditForm.java
*/ package org.codelibs.fess.app.web.admin.dict.mapping; import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; /** * @author nullpos */ public class EditForm extends CreateForm { @Required @ValidateTypeFailure public Long id; public String getDisplayId() { return dictId + ":" + id; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1007 bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/filters/AnonymousClassesFilter.groovy
/* * Copyright 2020 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS,
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1K bytes - Viewed (0) -
guava/src/com/google/common/graph/ImmutableGraph.java
* of the {@code Immutable*} types</a> for more information on the properties and guarantees * provided by this class. * * @author James Sexton * @author Joshua O'Madadhain * @author Omar Darwish * @author Jens Nyman * @param <N> Node parameter type * @since 20.0 */ @Beta @Immutable(containerOf = {"N"}) @ElementTypesAreNonnullByDefault
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 01 16:30:37 UTC 2022 - 7.1K bytes - Viewed (0) -
guava/src/com/google/common/hash/Murmur3_32HashFunction.java
import javax.annotation.CheckForNull; /** * See MurmurHash3_x86_32 in <a * href="https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp">the C++ * implementation</a>. * * @author Austin Appleby * @author Dimitris Andreou * @author Kurt Alfred Kluever */ @Immutable @ElementTypesAreNonnullByDefault final class Murmur3_32HashFunction extends AbstractHashFunction implements Serializable {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 02 13:50:22 UTC 2024 - 11.8K bytes - Viewed (0) -
docs/em/docs/advanced/dataclasses.md
2️⃣. `pydantic.dataclasses` 💧-♻ `dataclasses`. 3️⃣. `Author` 🎻 🔌 📇 `Item` 🎻. 4️⃣. `Author` 🎻 ⚙️ `response_model` 🔢. 5️⃣. 👆 💪 ⚙️ 🎏 🐩 🆎 ✍ ⏮️ 🎻 📨 💪. 👉 💼, ⚫️ 📇 `Item` 🎻. 6️⃣. 📥 👥 🛬 📖 👈 🔌 `items` ❔ 📇 🎻. FastAPI 🎯 <abbr title="converting the data to a format that can be transmitted">✍</abbr> 💽 🎻. 7️⃣. 📥 `response_model` ⚙️ 🆎 ✍ 📇 `Author` 🎻. 🔄, 👆 💪 🌀 `dataclasses` ⏮️ 🐩 🆎 ✍.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.4K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/TestCharacterListGenerator.java
import com.google.common.collect.testing.SampleElements.Chars; import java.util.List; /** * Generates {@code List<Character>} instances for test suites. * * @author Kevin Bourrillion * @author Louis Wasserman */ @GwtCompatible @ElementTypesAreNonnullByDefault public abstract class TestCharacterListGenerator implements TestListGenerator<Character> { @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Feb 21 16:49:06 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java
import jakarta.validation.constraints.Max; import jakarta.validation.constraints.Min; import jakarta.validation.constraints.Size; /** * @author codelibs * @author Keiichi Watanabe */ public class CreateForm { public String[] labelTypeIds; @ValidateTypeFailure public Integer crudMode; @Required @Size(max = 200)
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.9K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/MapToStringTester.java
/** * A generic JUnit test which tests {@code toString()} operations on a map. Can't be invoked * directly; please see {@link com.google.common.collect.testing.MapTestSuiteBuilder}. * * @author Kevin Bourrillion * @author Louis Wasserman */ @GwtCompatible @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. @SuppressWarnings("JUnit4ClassUsedInJUnit3")
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 20:12:35 UTC 2024 - 3.5K bytes - Viewed (0)