- Sort Score
- Result 10 results
- Languages All
Results 2601 - 2610 of 3,989 for Kull (0.02 sec)
-
src/main/java/jcifs/pac/PacMac.java
try { int usage = 17; if ( type == PacSignature.KERB_CHECKSUM_HMAC_MD5 ) { KerberosKey key = keys.get(PacSignature.ETYPE_ARCFOUR_HMAC); if ( key == null ) { throw new PACDecodingException("Missing key"); } return calculateMacArcfourHMACMD5(usage, key, data); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7K bytes - Viewed (0) -
docs/em/docs/alternatives.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 18.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/Collections2.java
* @return an immutable {@link Collection} containing all the different permutations of the * original iterable. * @throws NullPointerException If the specified iterable is null, has any null elements, or if * the specified comparator is null. * @since 12.0 */ public static <E> Collection<List<E>> orderedPermutations( Iterable<E> elements, Comparator<? super E> comparator) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 23.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RegularImmutableList.java
@ElementTypesAreNonnullByDefault class RegularImmutableList<E> extends ImmutableList<E> { static final ImmutableList<Object> EMPTY = new RegularImmutableList<>(new Object[0], 0); // The first `size` elements are non-null. @VisibleForTesting final transient @Nullable Object[] array; private final transient int size; RegularImmutableList(@Nullable Object[] array, int size) { this.array = array; this.size = size; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 2.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/VerifyTest.java
} public void testVerifyNotNull_complexMessage_success() { String result = verifyNotNull(NON_NULL_STRING, "%s", IGNORE_ME); assertSame(NON_NULL_STRING, result); } public void testVerifyNotNull_simpleMessage_failure() { VerifyException expected = assertThrows(VerifyException.class, () -> verifyNotNull(null, FORMAT, 5)); checkMessage(expected); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Sep 17 18:14:12 UTC 2024 - 3.2K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/TypeParameter.java
* support even a "normal" `TypeParameter<T>` when `<T>` has a nullable bound. (See the discussion * on TypeToken.where.) So, in the interest of failing fast and encouraging the user to switch to a * non-null bound if possible, let's require a non-null bound here. * * TODO(cpovirk): Elaborate on "wouldn't behave as users might expect." */ public abstract class TypeParameter<T> extends TypeCapture<T> { final TypeVariable<?> typeVariable;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jan 05 17:43:40 UTC 2022 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ClIllegalArgumentException.java
* * @author koichik */ public class ClIllegalArgumentException extends IllegalArgumentException { private static final long serialVersionUID = -3701473506893554853L; /** {@code null} である引数の名前 */ protected final String argName; /** メッセージコード */ protected final String messageCode; /** メッセージの引数 */ protected final Object[] args; /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosToken.java
@SuppressWarnings ( "javadoc" ) public class KerberosToken { private KerberosApRequest apRequest; public KerberosToken ( byte[] token ) throws PACDecodingException { this(token, null); } public KerberosToken ( byte[] token, KerberosKey[] keys ) throws PACDecodingException { if ( token.length <= 0 ) throw new PACDecodingException("Empty kerberos token");
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Oct 02 12:02:06 UTC 2023 - 3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/InterpolatorException.java
@Experimental public class InterpolatorException extends MavenException { @Serial private static final long serialVersionUID = -1219149033636851813L; /** * Constructs a new InterpolatorException with {@code null} as its * detail message. The cause is not initialized, and may subsequently be * initialized by a call to {@link #initCause}. */ public InterpolatorException() {} /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 2.7K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/DefaultArtifactResolverTest.java
artifactResolver.resolveTransitively( Collections.singleton(g), projectArtifact, remoteRepositories(), localRepository(), null); // we want to see all top-level thread groups ThreadGroup tg = Thread.currentThread().getThreadGroup(); while (tg.getParent() == null) { tg = tg.getParent(); } ThreadGroup[] tgList = new ThreadGroup[tg.activeGroupCount()];
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0)