Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 168 for multiples (0.05 sec)

  1. android/guava-tests/test/com/google/common/math/MathTesting.java

              return x.negate();
            }
          };
    
      /*
       * This list contains values that attempt to provoke overflow in integer operations. It contains
       * positive values on or near 2^N for N near multiples of 8 (near byte boundaries).
       */
      static final ImmutableSet<Integer> POSITIVE_INTEGER_CANDIDATES;
    
      static final Iterable<Integer> NEGATIVE_INTEGER_CANDIDATES;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/BigIntegerMath.java

          case 2:
            return nums.get(start).multiply(nums.get(start + 1));
          case 3:
            return nums.get(start).multiply(nums.get(start + 1)).multiply(nums.get(start + 2));
          default:
            // Otherwise, split the list in half and recursively do this.
            int m = (end + start) >>> 1;
            return listProduct(nums, start, m).multiply(listProduct(nums, m, end));
        }
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java

            String[] permissions = fessUserBean.getPermissions();
            assertEquals(1, permissions.length);
            assertEquals("read", permissions[0]);
    
            // Test with multiple permissions
            testUser.setPermissions(new String[] { "read", "write", "delete" });
            permissions = fessUserBean.getPermissions();
            assertEquals(3, permissions.length);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessJsonResourceProviderTest.java

            assertNotNull(option2);
    
            // Each call should return a new instance
            assertNotSame(option1, option2);
        }
    
        public void test_provideMappingOption_consistency() {
            // Test that multiple calls provide consistent configuration
            JsonMappingOption option1 = provider.provideMappingOption();
            JsonMappingOption option2 = provider.provideMappingOption();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java

            // Call aborted() multiple times
            assertTrue(exception.aborted());
            assertTrue(exception.aborted());
            assertTrue(exception.aborted());
        }
    
        public void test_getUrl_multipleCallsReturnSameValue() {
            // Test that multiple calls to getUrl() return the same value
            String url = "http://example.com/test";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

       *         .addAll(SINGLE_DIGIT_PRIMES)
       *         .add(42)
       *         .build();
       * }
       *
       * <p>Builder instances can be reused; it is safe to call {@link #build} multiple times to build
       * multiple sets in series. Each set is a superset of the set created before it.
       *
       * @since 2.0
       */
      public static final class Builder<E> extends ImmutableSet.Builder<E> {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 36.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java

                assertSame(invertibleCryptographer, invertibles[i]);
                assertSame(oneWayCryptographer, oneWays[i]);
            }
        }
    
        // Test with multiple providers
        public void test_multipleProviders() {
            // Test that multiple providers can coexist independently
            InvertibleCryptographer inver1 = InvertibleCryptographer.createAesCipher("key1key1key1key1");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java

            authenticationManager.insert(user);
    
            assertEquals(1, chain.updateCallCount);
            assertEquals(user, chain.lastUpdatedUser);
        }
    
        // Test insert with multiple chains
        public void test_insert_multipleChains() {
            User user = createTestUser("testuser");
            TestAuthenticationChain chain1 = new TestAuthenticationChain();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14K bytes
    - Viewed (0)
  9. guava/src/com/google/common/math/LongMath.java

                  // It's definitely safe to multiply into numerator and denominator.
                  numerator *= n;
                  denominator *= i;
                  numeratorBits += nBits;
                } else {
                  // It might not be safe to multiply into numerator and denominator,
                  // so multiply (numerator / denominator) into result.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 29 16:20:07 UTC 2025
    - 46.8K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java

            assertNotNull(specialProvider);
            assertEquals(Long.valueOf(4096L), specialConfig.getTimeAdjustTimeMillisAsLong());
        }
    
        // Test memory efficiency with multiple providers
        public void test_memoryEfficiency() {
            // Create and discard multiple providers
            for (int i = 0; i < 100; i++) {
                FessTimeResourceProvider tempProvider = new FessTimeResourceProvider(mockConfig);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
Back to top