Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 119 for accessing (0.07 sec)

  1. src/main/java/org/codelibs/core/misc/DynamicProperties.java

     * dynamicProperties.setProperty("key", "newValue");
     * dynamicProperties.store();
     * </pre>
     *
     * <p>Exceptions:
     * <ul>
     *   <li>{@link FileAccessException} - Thrown if there are issues accessing the file.</li>
     *   <li>{@link IORuntimeException} - Thrown if there are I/O errors during file operations.</li>
     * </ul>
     *
     * <p>Thread Safety:
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Tables.java

       * serial access, it is critical that <b>all</b> access to the backing table is accomplished
       * through the returned table.
       *
       * <p>It is imperative that the user manually synchronize on the returned table when accessing any
       * of its collection views:
       *
       * {@snippet :
       * Table<R, C, V> table = Tables.synchronizedTable(HashBasedTable.<R, C, V>create());
       * ...
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Cut.java

           * use the `endpoint` field, compareTo() and endpoint(). Additionally, the main implementation
           * of Cut.compareTo checks for belowAll before reading accessing `endpoint` on another Cut
           * instance.
           */
          super("");
        }
    
        @Override
        Comparable<?> endpoint() {
          throw new IllegalStateException("range unbounded on this side");
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

        @Resource
        private WebAuthenticationService webAuthenticationService;
        /** Pager for paginating web authentication results */
        @Resource
        private WebAuthPager webAuthPager;
        /** Service for accessing and modifying web configuration settings */
        @Resource
        protected WebConfigService webConfigService;
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

         */
        protected ActionResponse getMetadataResponse() {
            return LaRequestUtil.getOptionalRequest().map(request -> {
                if (logger.isDebugEnabled()) {
                    logger.debug("Accessing metadata with SAML Authenticator");
                }
                final HttpServletResponse response = LaResponseUtil.getResponse();
                try {
                    final Auth auth = new Auth(getSettings(), request, response);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 16.4K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

        @Resource
        protected QueryHelper queryHelper;
    
        /** Helper for executing search operations. */
        @Resource
        protected SearchHelper searchHelper;
    
        /** HTTP servlet request for accessing request parameters. */
        @Resource
        protected HttpServletRequest request;
    
        /** List of document items returned from search */
        public List<Map<String, Object>> documentItems;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.1K bytes
    - Viewed (1)
  7. docs/recipes.md

                  }
    
                  System.out.println(responseBody.string());
                }
              }
            });
          }
        ```
    
    ### Accessing Headers ([.kt][AccessHeadersKotlin], [.java][AccessHeadersJava])
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 47.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

    import jakarta.annotation.Resource;
    
    /**
     * Admin action for Synonym management.
     *
     */
    public class AdminDictSynonymAction extends FessAdminAction {
    
        /**
         * Role name required for accessing synonym dictionary administration features.
         */
        public static final String ROLE = "admin-dict";
    
        private static final Logger logger = LogManager.getLogger(AdminDictSynonymAction.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.7K bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/fess/util/ComponentUtil.java

    import org.lastaflute.job.JobManager;
    import org.lastaflute.web.servlet.request.RequestManager;
    import org.lastaflute.web.servlet.request.ResponseManager;
    
    /**
     * Utility class for accessing system components and dependencies.
     * Provides centralized access to various helpers, managers, and services throughout the Fess application.
     */
    public final class ComponentUtil {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/ByteStreams.java

       *       happens all the time in normal conditions (i.e., android) the OS must make a tradeoff
       *       between paging memory and killing other processes - so allocating a gigantic buffer and
       *       then sequentially accessing it could result in other processes dying. This is solvable
       *       via madvise(2), but that obviously doesn't exist in java.
       *   <li>Ordinary copy. Kernel copies bytes into a kernel buffer, from a kernel buffer into a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 31.1K bytes
    - Viewed (0)
Back to top