Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,187 for 1final (0.03 sec)

  1. src/main/java/org/codelibs/core/lang/FieldUtil.java

         */
        public static void set(final Field field, final Object target, final Object value) throws IllegalAccessRuntimeException {
            assertArgumentNotNull("field", field);
    
            try {
                field.set(target, value);
            } catch (final IllegalAccessException e) {
                throw new IllegalAccessRuntimeException(field.getDeclaringClass(), e);
            } catch (final IllegalArgumentException e) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/https/HandlerTest.java

                assertEquals(jcifs.http.Handler.class, superclass);
                assertEquals(URLStreamHandler.class, superclass.getSuperclass());
            }
    
            @Test
            @DisplayName("Should verify class is final or non-final appropriately")
            void testClassModifiers() {
                // When
                int modifiers = Handler.class.getModifiers();
    
                // Then
                assertTrue(Modifier.isPublic(modifiers));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/https/HandlerTest.java

                assertEquals(URLStreamHandler.class, superclass.getSuperclass());
            }
    
            @Test
            @DisplayName("Should verify class is final or non-final appropriately")
            void testClassModifiers() {
                // When
                int modifiers = Handler.class.getModifiers();
    
                // Then
                assertTrue(Modifier.isPublic(modifiers));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/util/WebApiUtilTest.java

            // Test thread safety of utility methods
            final int threadCount = 10;
            final java.util.concurrent.CountDownLatch latch = new java.util.concurrent.CountDownLatch(threadCount);
            final java.util.concurrent.atomic.AtomicInteger errorCount = new java.util.concurrent.atomic.AtomicInteger(0);
    
            for (int i = 0; i < threadCount; i++) {
                final int threadId = i;
                new Thread(() -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/FieldDesc.java

         * @return {@literal true} if the field is {@literal static}
         */
        boolean isStatic();
    
        /**
         * Returns {@literal true} if the field is {@literal final}.
         *
         * @return {@literal true} if the field is {@literal final}
         */
        boolean isFinal();
    
        /**
         * Returns {@literal true} if the field is parameterized.
         *
         * @return {@literal true} if the field is parameterized
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java

            labels.testAssertPropertyNotNull(" ");
        }
    
        // Helper class to test protected method
        private static class TestFessLabels extends FessLabels {
            private static final long serialVersionUID = 1L;
    
            public void testAssertPropertyNotNull(String property) {
                assertPropertyNotNull(property);
            }
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

      private static final class Dummies {
    
        @Keep
        public static final class InMemoryPrintStream extends PrintStream {
          @Keep
          public InMemoryPrintStream() {
            super(new ByteArrayOutputStream());
          }
        }
    
        @Keep
        public static final class InMemoryPrintWriter extends PrintWriter {
          @Keep
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 21.4K bytes
    - Viewed (0)
  8. docs/smb3-features/03-multi-channel-design.md

    public class ChannelManager {
        private final CIFSContext context;
        private final SmbSession session;
        private final Map<String, ChannelInfo> channels;
        private final List<NetworkInterfaceInfo> localInterfaces;
        private final List<NetworkInterfaceInfo> remoteInterfaces;
        private final ScheduledExecutorService scheduler;
        private final ChannelLoadBalancer loadBalancer;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

        public void test_allPathsInitialized() throws Exception {
            // Get all public static final fields of HtmlNext type
            Field[] fields = FessHtmlPath.class.getDeclaredFields();
            for (Field field : fields) {
                int modifiers = field.getModifiers();
                if (Modifier.isPublic(modifiers) && Modifier.isStatic(modifiers) && Modifier.isFinal(modifiers)) {
                    if (field.getType().equals(HtmlNext.class)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/timer/HotThreadMonitorTargetTest.java

            assertFalse("Class should not be abstract", java.lang.reflect.Modifier.isAbstract(HotThreadMonitorTarget.class.getModifiers()));
            assertFalse("Class should not be final", java.lang.reflect.Modifier.isFinal(HotThreadMonitorTarget.class.getModifiers()));
        }
    
        public void test_default_constructor_is_public() throws Exception {
            assertTrue("Default constructor should be public",
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4K bytes
    - Viewed (0)
Back to top