- Sort Score
- Result 10 results
- Languages All
Results 531 - 540 of 1,029 for yields (2.01 sec)
-
src/test/java/jcifs/smb/PreauthIntegrityTest.java
} // Helper methods private void setPrivateField(Object target, String fieldName, Object value) throws Exception { Field field = findField(target.getClass(), fieldName); field.setAccessible(true); field.set(target, value); } private Field findField(Class<?> clazz, String fieldName) { while (clazz != null) { try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 10.5K bytes - Viewed (0) -
README.md
[](https://ossrank.com/p/44) [](CODE_OF_CONDUCT.md) **`Documentation`** | ------------------- | [](https://www.tensorflow.org/api_docs/) |
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Jul 18 14:09:03 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/GeoInfo.java
private QueryBuilder builder; /** * Constructs a GeoInfo instance by parsing geographic parameters from the HTTP request. * Extracts geo.{field}.point and geo.{field}.distance parameters to create * geo-distance queries for each configured geographic field. * * @param request the HTTP servlet request containing geographic parameters * @throws InvalidQueryException if geo point format is invalid or parsing fails
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java
@ReflectionSupport(value = ReflectionSupport.Level.FULL) // Some Android 5.0.x Samsung devices have bugs in JDK reflection APIs that cause // getDeclaredField to throw a NoSuchFieldException when the field is definitely there. // Since this class only needs CAS on one field, we can avoid this bug by extending AtomicReference // instead of using an AtomicReferenceFieldUpdater. This reference stores Thread instances
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 10K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/IgnoreJRERequirement.java
* the License. */ package com.google.common.collect.testing.testers; import static java.lang.annotation.ElementType.CONSTRUCTOR; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation.ElementType.TYPE; import java.lang.annotation.Target; import org.jspecify.annotations.NullMarked; /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 02 18:21:28 UTC 2025 - 1.2K bytes - Viewed (0) -
guava/src/com/google/common/base/Predicates.java
ContainsPatternPredicate that = (ContainsPatternPredicate) obj; // Pattern uses Object (identity) equality, so we have to reach // inside to compare individual fields. return Objects.equals(pattern.pattern(), that.pattern.pattern()) && pattern.flags() == that.pattern.flags(); } return false; } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 26.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java
Field[] fields = CorsHandler.class.getDeclaredFields(); for (Field field : fields) { if (field.getName().startsWith("ACCESS_CONTROL_")) { int modifiers = field.getModifiers(); assertTrue("Field " + field.getName() + " should be protected", Modifier.isProtected(modifiers));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoRequestTest.java
try { Field fileInfoClassField = Smb2QueryInfoRequest.class.getDeclaredField("fileInfoClass"); fileInfoClassField.setAccessible(true); byte actualFileInfoClass = (byte) fileInfoClassField.get(request); assertEquals(testFileInfoClass, actualFileInfoClass); Field infoTypeField = Smb2QueryInfoRequest.class.getDeclaredField("infoType");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDCacheImplTest.java
jcifs.SID[] in = new jcifs.SID[] { s1, s2 }; // Stub sendrecv to emulate successful RPC response doAnswer(inv -> { // Capture the outgoing RPC and populate result fields as the server would Object msg = inv.getArgument(0); assertTrue(msg instanceof jcifs.dcerpc.msrpc.MsrpcLookupSids);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/graph/AbstractNetworkTest.java
* problem, we've since marked that field as volatile.) * * When MapIteratorCache is used from Immutable* classes, the TSAN failure doesn't indicate a * real problem: The Entry objects are ImmutableMap entries, whose fields are all final and thus * safe to read even when the Entry object is unsafely published. But with a mutable graph, the
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 32.7K bytes - Viewed (0)