Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 497 for BOTH (0.04 sec)

  1. src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java

            assertNull(testLdapManager.changePasswordPassword);
            assertTrue(testLdapManager.changePasswordCalled);
        }
    
        public void test_changePassword_withBothNull() {
            // Test password change with both null
            testLdapManager.changePasswordResult = false;
            testFessConfig.ldapAdminSyncPassword = false;
    
            boolean result = ldapChain.changePassword(null, null);
    
            assertTrue(result);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java

            assertEquals("Not Found: null Parent: http://example.com/parent", exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_constructor_withBothNullUrls() {
            // Test with both URLs as null
            String parentUrl = null;
            String url = null;
            ContentNotFoundException exception = new ContentNotFoundException(parentUrl, url);
    
            assertNotNull(exception);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/MultisetsCollectionTest.java

            for (int i = 0; i < elements.length; i++) {
              String element = elements[i];
              if (multiset1.contains(element) || multiset2.contains(element)) {
                // add to both; the one already containing it will have more
                multiset1.add(element);
                multiset2.add(element);
              } else if (i % 2 == 0) {
                multiset1.add(elements[i]);
              } else {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/math/BigIntegerMathTest.java

      public void testRoundToDouble_twoToThe54PlusOne() {
        double twoToThe54 = Math.pow(2, 54);
        // the representable doubles are 2^54 and 2^54 + 4
        // 2^54+1 is less than halfway between, so HALF_DOWN and HALF_UP will both go down.
        new RoundToDoubleTester(BigInteger.valueOf((1L << 54) + 1))
            .setExpectation(twoToThe54, DOWN, FLOOR, HALF_DOWN, HALF_UP, HALF_EVEN)
            .setExpectation(Math.nextUp(twoToThe54), CEILING, UP)
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27K bytes
    - Viewed (0)
  5. guava/src/com/google/common/reflect/Types.java

       * has not added {@link AnnotatedType}. That means that we cannot implement that interface in
       * source code in a way that will compile on both Java and Android. If we include the {@code
       * getAnnotatedBounds()} method, then its return type means it won't compile on Android, while if
       * we don't include the method, then the compiler will complain that an abstract method is
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/script/AbstractScriptEngineTest.java

            TestScriptEngine engine1 = new TestScriptEngine("engine1");
            TestScriptEngine engine2 = new TestScriptEngine("engine2");
    
            engine1.register();
            engine2.register();
    
            // Verify both engines are registered
            ScriptEngine retrieved1 = scriptEngineFactory.getScriptEngine("engine1");
            ScriptEngine retrieved2 = scriptEngineFactory.getScriptEngine("engine2");
    
            assertNotNull(retrieved1);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessJsonResourceProviderTest.java

            FessJsonResourceProvider provider1 = new FessJsonResourceProvider();
            FessJsonResourceProvider provider2 = new FessJsonResourceProvider();
    
            assertNotSame(provider1, provider2);
    
            // Both instances should have the same behavior
            assertEquals(provider1.isNullsSuppressed(), provider2.isNullsSuppressed());
            assertEquals(provider1.isPrettyPrintSuppressed(), provider2.isPrettyPrintSuppressed());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  8. compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

                    // read the next character as a low surrogate and combine into a single int
                    try {
                        char low = version.charAt(i + 1);
                        char[] both = {character, low};
                        c = Character.codePointAt(both, 0);
                        i++;
                    } catch (IndexOutOfBoundsException ex) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/dcerpc/msrpc/samrTest.java

                verify(mockNdrBuffer).align(4);
                verify(mockNdrBuffer).enc_ndr_long(1);
                verify(mockNdrBuffer, times(2)).enc_ndr_short((short) 0); // length and maximum_length both 0
                verify(mockNdrBuffer).enc_ndr_referent(null, 1);
            }
    
            @Test
            @DisplayName("Should decode entry correctly")
            void testDecode() throws NdrException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/util/FacetResponse.java

         */
        protected List<Field> fieldList = new ArrayList<>();
    
        /**
         * Constructs a FacetResponse from OpenSearch aggregations.
         * Processes both field facets and query facets from the aggregation results.
         *
         * @param aggregations the OpenSearch aggregations containing facet data
         */
        public FacetResponse(final Aggregations aggregations) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top