- Sort Score
- Result 10 results
- Languages All
Results 581 - 590 of 1,546 for nell (0.03 sec)
-
guava-testlib/src/com/google/common/collect/testing/testers/ListEqualsTester.java
public void testEquals_otherListContainingNull() { List<E> other = new ArrayList<>(getSampleElements()); other.set(other.size() / 2, null); assertFalse( "Two Lists should not be equal if exactly one of them has null at a given index.", getList().equals(other)); } @CollectionSize.Require(absent = CollectionSize.ZERO) @CollectionFeature.Require(ALLOWS_NULL_VALUES)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 3.6K bytes - Viewed (0) -
guava/src/com/google/common/io/ParametricNullness.java
* typically because the type forbids nullable type arguments: For example, {@code * ImmutableList.get} returns {@code E}, but that value is never {@code null}. (Accordingly, * {@code ImmutableList} is declared to forbid {@code ImmutableList<@Nullable String>}.) * <li>methods whose return type is a type variable but which can return {@code null} regardless
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 16:20:21 UTC 2024 - 3.1K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosTicketTest.java
encPart.add(new DERTaggedObject(true, 2, new DEROctetString(encryptedData))); v.add(new DERTaggedObject(true, 3, new DERSequence(encPart))); if (unknownTag != null) { v.add(new DERTaggedObject(true, unknownTag, new DERGeneralString("unknown"))); } return new DERSequence(v).getEncoded(); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java
super(config, command); this.andx = andx; if (andx != null) { this.andxCommand = (byte) andx.getCommand(); } } /** * Constructs an AndX message block with configuration * @param config the configuration */ protected AndXServerMessageBlock(final Configuration config) { this(config, null); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/MirrorSelector.java
* Determines the mirror for the specified repository. * * @param repository The repository to determine the mirror for, must not be {@code null}. * @param mirrors The available mirrors, may be {@code null}. * @return The mirror specification for the repository or {@code null} if no mirror matched. */ Mirror getMirror(ArtifactRepository repository, List<Mirror> mirrors);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
src/main/webapp/js/popper.min.js
z(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function X(e){var t,n=e.reference,r=e.element,o=e.placement,i=o?F(o):null,a=o?U(o):null,s=n.x+n.width/2-r.width/2,f=n.y+n.height/2-r.height/2;switch(i){case D:t={x:s,y:n.y-r.height};break;case A:t={x:s,y:n.y+n.height};break;case L:t={x:n.x+n.width,y:f};break;case P:t={x:n.x-r.width,y:f};break;default:t={x:n.x,y:n.y}}var c=i?z(i):null;if(null!=c){var p="y"===c?"height":"width";switch(a){case W:t[c]=t[c]-(n[p]/2-r[p]/2);break;case B:t[c]=t[c]+(n[p]/2-r[p]/2)}}return...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jan 12 06:14:02 UTC 2025 - 19.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb3KeyDerivationTest.java
} @Test @DisplayName("Should handle null preauth integrity for SMB 3.0.0") void testDeriveKeys_NullPreauthForSMB300() { // Given int dialect = Smb2Constants.SMB2_DIALECT_0300; // When - SMB 3.0.0 doesn't use preauth integrity, so null should be acceptable byte[] signingKey = Smb3KeyDerivation.deriveSigningKey(dialect, sessionKey, null); // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/MethodDesc.java
*/ Class<?> getValueClassOfMap(int index); /** * Returns the element type if the return type of the method is a parameterized {@link Collection}. * * @return the element type if the return type of the method is a parameterized {@link Collection}, otherwise {@literal null} */ Class<?> getElementClassOfCollection();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComSessionSetupAndX.java
ntHash = auth.getUnicodeHash(session.transport.server.encryptionKey); // prohibit HTTP auth attempts for the null session if (lmHash.length == 0 && ntHash.length == 0) { throw new RuntimeException("Null setup prohibited."); } } else if (DISABLE_PLAIN_TEXT_PASSWORDS) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java
if (pointer == 0) { return null; // NULL pointer } int maxCount = buf.dec_ndr_long(); int offset = buf.dec_ndr_long(); int actualCount = buf.dec_ndr_long(); if (actualCount <= 0) { return ""; } // Read wide string data (UTF-16LE) int byteCount = (actualCount - 1) * 2; // Exclude null terminator
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 16.4K bytes - Viewed (0)