Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,110 for xtrue (0.02 sec)

  1. src/test/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotificationTest.java

                oplockLevelField.setAccessible(true);
                assertEquals(expectedOplockLevel, oplockLevelField.get(notification));
    
                Field fileIdField = Smb2OplockBreakNotification.class.getDeclaredField("fileId");
                fileIdField.setAccessible(true);
                assertArrayEquals(expectedFileId, (byte[]) fileIdField.get(notification));
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/FieldDesc.java

         */
        <T> Class<T> getFieldType();
    
        /**
         * Returns {@literal true} if the field is {@literal public}.
         *
         * @return {@literal true} if the field is {@literal public}
         */
        boolean isPublic();
    
        /**
         * Returns {@literal true} if the field is {@literal static}.
         *
         * @return {@literal true} if the field is {@literal static}
         */
        boolean isStatic();
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 4K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/DosFileFilterTest.java

                "1, 1, true", // ATTR_READONLY
                "2, 2, true", // ATTR_HIDDEN
                "4, 4, true", // ATTR_SYSTEM
                "16, 16, true", // ATTR_DIRECTORY
                "32, 32, true", // ATTR_ARCHIVE
                "3, 1, true", // READONLY | HIDDEN vs READONLY
                "3, 2, true", // READONLY | HIDDEN vs HIDDEN
                "3, 3, true", // READONLY | HIDDEN vs READONLY | HIDDEN
    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/helper/SearchHelperTest.java

            }
    
            @Override
            public boolean isSearchLog() {
                return true;
            }
    
            @Override
            public boolean isUserFavorite() {
                return true;
            }
    
            @Override
            public boolean isBrowserLocaleForSearchUsed() {
                return true;
            }
    
            @Override
            public String getIndexDocumentSearchIndex() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java

            info502.sd_size = securityDescriptorBytes.length;
    
            // Replace info field
            Field infoField = msrpcShareGetInfo.getClass().getSuperclass().getDeclaredField("info");
            infoField.setAccessible(true);
            infoField.set(msrpcShareGetInfo, info502);
    
            // Test getSecurity - with no DACL, it should return null
            ACE[] result = msrpcShareGetInfo.getSecurity();
            assertNull(result);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  6. src/main/resources/fess_config.properties

    -Djcifs.smb1.smb.client.responseTimeout=30000\n\
    -Dio.netty.noUnsafe=true\n\
    -Dio.netty.noKeySetOptimization=true\n\
    -Dio.netty.recycler.maxCapacityPerThread=0\n\
    -Dlog4j.shutdownHookEnabled=false\n\
    -Dlog4j2.formatMsgNoLookups=true\n\
    -Dlog4j2.disable.jmx=true\n\
    -Dlog4j.skipJansi=true\n\
    -Dsun.java2d.cmm=sun.java2d.cmm.kcms.KcmsServiceProvider\n\
    -Dorg.apache.pdfbox.rendering.UsePureJavaCMYKConversion=true\n\
    
    
    jvm.suggest.options=\
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/beans/impl/MethodDescTest.java

            assertThat(foo.getMethodName(), is("foo"));
            assertThat(foo.getParameterTypes().length, is(0));
            assertThat(foo.isPublic(), is(true));
            assertThat(foo.isStatic(), is(not(true)));
            assertThat(foo.isFinal(), is(not(true)));
            assertThat(foo.isAbstract(), is(not(true)));
            assertThat(foo.invoke(new MyBean()), is((Object) "hoge"));
        }
    
        /**
         * @throws Exception
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/collection/CollectionsUtilTest.java

         * .
         */
        @Test
        public void testIsEmptyCollectionOfQ() {
            Collection<String> c = null;
            assertThat(CollectionsUtil.isEmpty(c), is(true));
            c = new ArrayList<String>();
            assertThat(CollectionsUtil.isEmpty(c), is(true));
        }
    
        /**
         * Test method for
         * {@link org.codelibs.core.collection.CollectionsUtil#isNotEmpty(java.util.Collection)}
         * .
         */
        @Test
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb/SmbRandomAccessFileTest.java

            verify(file, never()).close();
        }
    
        @Test
        @DisplayName("close(): closes SmbFile when unsharedFile=true")
        void close_unsharedFile_closesFile() throws Exception {
            SmbRandomAccessFile raf = newInstance("rw", false, true, true);
            SmbFile file = (SmbFile) getField(raf, "file");
    
            raf.close();
    
            verify(file, times(1)).clearAttributeCache();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  10. android/guava-testlib/test/com/google/common/testing/TearDownStackTest.java

        assertEquals(false, tearDownOne.ran);
        assertEquals(false, tearDownTwo.ran);
    
        stack.runTearDown();
    
        assertEquals("tearDownOne should have run", true, tearDownOne.ran);
        assertEquals("tearDownTwo should have run", true, tearDownTwo.ran);
      }
    
      public void testThrowingTearDown() throws Exception {
        TearDownStack stack = buildTearDownStack();
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 4.6K bytes
    - Viewed (0)
Back to top