- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 631 for reflector (0.05 sec)
-
association.go
switch reflectValue.Kind() { case reflect.Slice, reflect.Array: for i := 0; i < reflectValue.Len(); i++ { association.Error = rel.Field.Set(association.DB.Statement.Context, reflectValue.Index(i), reflect.Zero(rel.Field.FieldType).Interface()) } case reflect.Struct: association.Error = rel.Field.Set(association.DB.Statement.Context, reflectValue, reflect.Zero(rel.Field.FieldType).Interface()) }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed Jun 12 10:49:45 UTC 2024 - 21.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/DirFileEntryEnumIterator2Test.java
// Initialize response chain (also for chained query) Smb2CreateResponse cr = create.initResponse(cifsContext); // Access chained Smb2QueryDirectoryRequest via reflection Smb2QueryDirectoryRequest q = (Smb2QueryDirectoryRequest) getNextOf(create); // Provide a query response with two entries
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/WebApiUtilTest.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.util; import java.lang.reflect.Constructor; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import org.codelibs.fess.exception.WebApiException; import org.codelibs.fess.unit.UnitFessTestCase; public class WebApiUtilTest extends UnitFessTestCase {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 17.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
super.setUp(); // Clear cached components in ComponentUtil using reflection try { java.lang.reflect.Field systemHelperField = ComponentUtil.class.getDeclaredField("systemHelper"); systemHelperField.setAccessible(true); systemHelperField.set(null, null); java.lang.reflect.Field indexingHelperField = ComponentUtil.class.getDeclaredField("indexingHelper");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
docs/en/docs/deployment/versions.md
New features are added frequently, bugs are fixed regularly, and the code is still continuously improving. That's why the current versions are still `0.x.x`, this reflects that each version could potentially have breaking changes. This follows the <a href="https://semver.org/" class="external-link" target="_blank">Semantic Versioning</a> conventions.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 3.5K bytes - Viewed (0) -
cmd/server-startup-msg_test.go
newAPIEndpoints := stripStandardPorts(apiEndpoints, "") if !reflect.DeepEqual(expectedAPIEndpoints, newAPIEndpoints) { t.Fatalf("Expected %#v, got %#v", expectedAPIEndpoints, newAPIEndpoints) } apiEndpoints = []string{"http://%%%%%:9000"} newAPIEndpoints = stripStandardPorts(apiEndpoints, "") if !reflect.DeepEqual(apiEndpoints, newAPIEndpoints) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 09 14:28:39 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
assertNotNull(result); assertEquals(currentTime + 5000, result.getTime()); } public void test_getExpiredTime() { // Test via reflection since method is protected try { java.lang.reflect.Method getExpiredTimeMethod = CrawlingInfoHelper.class.getDeclaredMethod("getExpiredTime", int.class); getExpiredTimeMethod.setAccessible(true);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 26.6K bytes - Viewed (0) -
schema/utils_test.go
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Jul 31 10:19:25 UTC 2020 - 1.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java
} catch (Exception // sneaky checked exception | Error atomicReferenceFieldUpdaterFailure) { // 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. // For these users fallback to a suboptimal implementation, based on synchronized. This
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 33.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CloseRequestTest.java
closeFlagsField.setAccessible(true); int finalFlags = (int) closeFlagsField.get(request); assertEquals(0x0000, finalFlags); // Verify wire format reflects final state byte[] buffer = new byte[256]; request.writeBytesWireFormat(buffer, 0); assertEquals(0x0000, SMBUtil.readInt2(buffer, 2)); byte[] wireFileId = new byte[16];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0)