- Sort Score
- Result 10 results
- Languages All
Results 601 - 610 of 1,025 for quals (0.03 sec)
-
src/main/java/jcifs/pac/kerberos/KerberosToken.java
} try (ASN1InputStream stream = new ASN1InputStream(content)) { ASN1ObjectIdentifier kerberosOid = (ASN1ObjectIdentifier) stream.readObject(); if (!kerberosOid.getId().equals(KerberosConstants.KERBEROS_OID)) { throw new PACDecodingException("Not a kerberos token"); } int readLow = stream.read() & 0xff; int readHigh = stream.read() & 0xff;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.8K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t04/ProjectInheritanceTest.java
+ " Optional=" + (artifact.isOptional() ? "true" : "false")); assertTrue( artifact.getVersion().equals("1.0"), "Incorrect version for " + artifact.getDependencyConflictId()); } }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
sorted = new LinkedList<>(); fmt = req.getParameter("fmt"); if (fmt == null) { fmt = "col"; } sort = 0; if ((str = req.getParameter("sort")) == null || str.equals("name")) { sort = 0; } else if (str != null) { switch (str) { case "size": sort = 1; break; case "type":
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java
// Should get the config value, not the system property without prefix String value = fessConfig.get(testKey); assertEquals("config-value", value); assertFalse(systemValue.equals(value)); } finally { // Clean up system property System.clearProperty(testKey); } } // Test multiple gets with different keys
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RoleService.java
}); userBhv.selectCursor(cb -> cb.query().setRoles_Equal(role.getId()), entity -> { entity.setRoles( stream(entity.getRoles()).get(stream -> stream.filter(s -> !s.equals(role.getId())).toArray(n -> new String[n]))); userBhv.insertOrUpdate(entity); }); } /** * Sets up the list condition for the role query.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/EmptyContiguousSet.java
} @Override public ImmutableList<C> asList() { return ImmutableList.of(); } @Override public String toString() { return "[]"; } @Override public boolean equals(@Nullable Object object) { if (object instanceof Set) { Set<?> that = (Set<?>) object; return that.isEmpty(); } return false; } @GwtIncompatible // not used in GWT
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/Suggester.java
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 20.7K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java
for (int i = 0; i < kinds.size(); i++) { final String kind = kinds.get(i); if (kind.equals(Kind.DOCUMENT.toString())) { item.kinds[i] = Kind.DOCUMENT; } else if (kind.equals(Kind.QUERY.toString())) { item.kinds[i] = Kind.QUERY; } else if (kind.equals(Kind.USER.toString())) { item.kinds[i] = Kind.USER; } }
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 25.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableSortedMultiset.java
* Comparator} or {@link Comparable} type whose comparison behavior is <i>inconsistent with * equals</i>. That is, {@code a.compareTo(b)} or {@code comparator.compare(a, b)} should equal zero * <i>if and only if</i> {@code a.equals(b)}. If this advice is not followed, the resulting * collection will not correctly obey its specification. * * <p>See the Guava User Guide article on <a href=
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 29.5K bytes - Viewed (0) -
okhttp/api/android/okhttp.api
public final fun certificatePinner ()Lokhttp3/CertificatePinner; public final fun connectionSpecs ()Ljava/util/List; public final fun dns ()Lokhttp3/Dns; public fun equals (Ljava/lang/Object;)Z public fun hashCode ()I public final fun hostnameVerifier ()Ljavax/net/ssl/HostnameVerifier; public final fun protocols ()Ljava/util/List; public final fun proxy ()Ljava/net/Proxy;
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 69.4K bytes - Viewed (0)