Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for backwards (0.04 sec)

  1. CHANGELOG.md

     *  New: `OkHttpClient.Builder` now has APIs that use `kotlin.time.Duration`.
    
     *  New: `mockwebserver3.SocketPolicy` is now a sealed interface. This is one of several
        backwards-incompatible API changes that may impact early adopters of this alpha API.
    
     *  New: `mockwebserver3.Stream` for duplex streams.
    
     *  New: `mockwebserver3.MockResponseBody` for streamed response bodies.
    
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Fri Dec 05 16:02:59 UTC 2025
    - 36.2K bytes
    - Viewed (2)
  2. CHANGELOG/CHANGELOG-1.35.md

    - Updated the Partitionable Devices feature to support referencing counter sets across ResourceSlices within the same resource pool. Devices from incomplete pools were no longer considered for allocation. This change introduced backwards-incompatible updates to the alpha feature, requiring any ResourceSlices using it to be removed before upgrading or downgrading between v1.34 and v1.35. ([#134189](https://github.com/kubernetes/kubernetes/pull/134189), [@mortent](https://github.com/mortent))...
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Wed Dec 17 13:01:55 UTC 2025
    - 228.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java

                    logger.debug("Script raised JobProcessingException", e);
                }
                throw e;
            } catch (final Exception e) {
                // Log and return null for other exceptions to maintain backward compatibility
                logger.warn("Failed to evaluate Groovy script: template={}, parameters={}", template, safeParamMap, e);
                return null;
            } finally {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/SsoManager.java

         *
         * @return The SSO authenticator instance, or null if not found
         */
        protected SsoAuthenticator getAuthenticator() {
            String ssoType = getSsoType();
            // Backward compatibility: map legacy "aad" (Azure AD) to "entraid" (Entra ID)
            if ("aad".equals(ssoType)) {
                ssoType = "entraid";
            }
            final String name = ssoType + "Authenticator";
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java

            try {
                final ACE[] aces = file.getSecurity(resolveSids);
                if (aces != null) {
                    responseData.addMetaData(SMB_ACCESS_CONTROL_ENTRIES, aces); // backward compatibility
                    final Set<SID> sidAllowSet = new HashSet<>();
                    final Set<SID> sidDenySet = new HashSet<>();
                    for (final ACE ace : aces) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

        /** Configuration key for Entra ID default roles. */
        protected static final String ENTRAID_DEFAULT_ROLES = "entraid.default.roles";
    
        // Legacy configuration keys for backward compatibility (Azure AD)
        /** Legacy configuration key for Azure AD state time-to-live. */
        protected static final String AAD_STATE_TTL = "aad.state.ttl";
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 56.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                    spaceChars = split(spaceStr, "u")
                            .get(stream -> stream.filter(StringUtil::isNotBlank).mapToInt(s -> Integer.parseInt(s, 16)).toArray());
                } else {
                    // backward compatibility
                    final int length = spaceStr.length();
                    spaceChars = new int[length];
                    for (int i = 0; i < length; i++) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 88.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.32.md

      It comes with an API change, a new delete option `ignoreStoreReadErrorWithClusterBreakingPotential` has
      been introduced, it is not set by default, this maintains backward compatibility.
      In order to perform an unsafe deletion of a corrupt resource, the user must enable the option for the delete
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Tue Dec 16 18:27:41 UTC 2025
    - 448.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.33.md

    ### Deprecation
    
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Wed Dec 10 01:15:24 UTC 2025
    - 334.8K bytes
    - Viewed (0)
Back to top