Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for Flow (0.29 sec)

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

      static final Iterable<Integer> ALL_INTEGER_CANDIDATES;
    
      static {
        ImmutableSet.Builder<Integer> intValues = ImmutableSet.builder();
        // Add boundary values manually to avoid over/under flow (this covers 2^N for 0 and 31).
        intValues.add(Integer.MAX_VALUE - 1, Integer.MAX_VALUE);
        // Add values up to 40. This covers cases like "square of a prime" and such.
        for (int i = 1; i <= 40; i++) {
    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. src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java

            SuggestCreator.Options options = new SuggestCreator.Options();
            assertNotNull(options);
        }
    
        // Test create and purge full flow
        public void test_createAndPurge_fullFlow() {
            // Test full flow of create and purge
            SuggestCreator.Options options = new SuggestCreator.Options();
            assertNotNull(options);
        }
    
        // Test system property setting
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

    import jakarta.servlet.http.HttpServletRequest;
    import jakarta.servlet.http.HttpSession;
    
    /**
     * Azure Active Directory (Azure AD) SSO authenticator implementation.
     * Handles OAuth2/OpenID Connect authentication flow with Azure AD.
     */
    public class AzureAdAuthenticator implements SsoAuthenticator {
    
        private static final Logger logger = LogManager.getLogger(AzureAdAuthenticator.class);
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 37.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java

            String logoutUrl = "https://sso.example.com/logout";
            authenticator.setLogoutUrl(logoutUrl);
    
            // Execute authentication flow
            LoginCredential loginResult = authenticator.getLoginCredential();
            assertNotNull(loginResult);
    
            TestLoginCredentialResolver resolver = new TestLoginCredentialResolver();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  5. android/pom.xml

                <compilerArgs combine.children="override">
                  <!-- https://errorprone.info/docs/installation#maven -->
                  <arg>-XDcompilePolicy=simple</arg>
                  <arg>--should-stop=ifError=FLOW</arg>
    
                  <!-- https://errorprone.info/docs/installation#maven -->
                  <!-- TODO(cpovirk): Enable NullArgumentForNonNullParameter for
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  6. pom.xml

                <compilerArgs combine.children="override">
                  <!-- https://errorprone.info/docs/installation#maven -->
                  <arg>-XDcompilePolicy=simple</arg>
                  <arg>--should-stop=ifError=FLOW</arg>
    
                  <!-- https://errorprone.info/docs/installation#maven -->
                  <!-- TODO(cpovirk): Enable NullArgumentForNonNullParameter for
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

            mockProcessHelper.setExitValue(1);
            mockProcessHelper.setOutput("Timeout occurred");
    
            String result = suggestJob.execute();
    
            assertNotNull(result);
            // The actual execution flow may not reach the timeout message
            assertTrue(result.contains("Session Id:"));
        }
    
        // Test executeSuggestCreator with Windows environment
        public void test_executeSuggestCreator_windows() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/math/LongMath.java

        if ((a ^ b) < 0 | (a ^ naiveSum) >= 0) {
          // If a and b have different signs or a has the same sign as the result then there was no
          // overflow, return.
          return naiveSum;
        }
        // we did over/under flow, if the sign is negative we should return MAX otherwise MIN
        return Long.MAX_VALUE + ((naiveSum >>> (Long.SIZE - 1)) ^ 1);
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 29 16:20:07 UTC 2025
    - 46.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

                fail("Should throw FessSystemException");
            } catch (FessSystemException e) {
                assertEquals("DataService is null.", e.getMessage());
            }
        }
    
        // Test run method basic flow
        public void test_run_basicFlow() throws Exception {
            final List<String> sessionIdList = Arrays.asList("session1");
            indexUpdater.setSessionIdList(sessionIdList);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.32.md

      request. A resource is considered corrupt if it can not be successfully retrieved from the storage due to
      a) transformation error e.g. decryption failure, or b) the object failed to decode. Normal deletion flow is
      attempted first, and if it fails with a corrupt resource error then it triggers unsafe delete.
      In addition, when this feature is enabled, the 'details' field of 'Status' from the LIST response
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
Back to top