- Sort Score
- Result 10 results
- Languages All
Results 1411 - 1420 of 1,638 for params1 (0.05 sec)
-
src/main/java/org/codelibs/core/beans/factory/BeanDescFactory.java
private static final ConcurrentMap<Class<?>, BeanDesc> beanDescCache = newConcurrentHashMap(1024); static { initialize(); } /** * {@link BeanDesc}を返します。 * * @param clazz * Beanクラス。{@literal null}であってはいけません * @return {@link BeanDesc} */ public static BeanDesc getBeanDesc(final Class<?> clazz) { assertArgumentNotNull("clazz", clazz);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderException.java
private final ModelBuilderResult result; /** * Creates a new exception from the specified interim result and its associated problems. * * @param result The interim result, may be {@code null}. */ public ModelBuilderException(ModelBuilderResult result) { super(result.toString()); this.result = result; } /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 3K bytes - Viewed (0) -
src/test/java/jcifs/tests/DelegatingNameServiceClient.java
import jcifs.NetbiosName; /** * @author mbechler * */ public class DelegatingNameServiceClient implements NameServiceClient { private NameServiceClient nscl; /** * @param nscl * */ public DelegatingNameServiceClient ( NameServiceClient nscl ) { this.nscl = nscl; } @Override public NetbiosName getUnknownName () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.6K bytes - Viewed (0) -
docs/ru/docs/tutorial/body-fields.md
/// note | "Технические детали" На самом деле, `Query`, `Path` и другие функции, которые вы увидите в дальнейшем, создают объекты подклассов общего класса `Param`, который сам по себе является подклассом `FieldInfo` из Pydantic. И `Field` (из Pydantic), и `Body`, оба возвращают объекты подкласса `FieldInfo`. У класса `Body` есть и другие подклассы, с которыми вы ознакомитесь позже.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/HMACT64.java
private byte[] ipad = new byte[BLOCK_LENGTH]; private byte[] opad = new byte[BLOCK_LENGTH]; /** * Creates an HMACT64 instance which uses the given secret key material. * * @param key The key material to use in hashing. */ public HMACT64(byte[] key) { super("HMACT64"); int length = Math.min(key.length, BLOCK_LENGTH); for (int i = 0; i < length; i++) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/util/HMACT64.java
private byte[] ipad = new byte[BLOCK_LENGTH]; private byte[] opad = new byte[BLOCK_LENGTH]; /** * Creates an HMACT64 instance which uses the given secret key material. * * @param key * The key material to use in hashing. */ public HMACT64 ( byte[] key ) { super("HMACT64"); int length = Math.min(key.length, BLOCK_LENGTH);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.5K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/AbstractNetwork.java
* * <p>The methods implemented in this class should not be overridden unless the subclass admits a * more efficient implementation. * * @author James Sexton * @param <N> Node parameter type * @param <E> Edge parameter type * @since 20.0 */ @Beta @ElementTypesAreNonnullByDefault public abstract class AbstractNetwork<N, E> implements Network<N, E> { @Override public Graph<N> asGraph() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Mar 13 18:17:09 UTC 2024 - 10.1K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java
* by a G, selecting appropriate tests by matching them against specified features. * * @param <B> The concrete type of this builder (the 'self-type'). All the Builder methods of this * class (such as {@link #named}) return this type, so that Builder methods of more derived * classes can be chained onto them without casting. * @param <G> The type of the generator to be passed to testers in the generated test suite. An
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 10.4K bytes - Viewed (0) -
guava/src/com/google/common/graph/AbstractNetwork.java
* * <p>The methods implemented in this class should not be overridden unless the subclass admits a * more efficient implementation. * * @author James Sexton * @param <N> Node parameter type * @param <E> Edge parameter type * @since 20.0 */ @Beta @ElementTypesAreNonnullByDefault public abstract class AbstractNetwork<N, E> implements Network<N, E> { @Override public Graph<N> asGraph() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Mar 13 18:17:09 UTC 2024 - 10.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbEnumerationUtil.java
*/ private static final class ResourceFilterWrapper implements ResourceFilter { /** * */ private final SmbFileFilter ff; /** * @param ff */ ResourceFilterWrapper ( SmbFileFilter ff ) { this.ff = ff; } SmbFileFilter getFileFilter () { return this.ff; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 20 08:41:19 UTC 2019 - 12.5K bytes - Viewed (0)