Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for identify (0.03 sec)

  1. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

        /** Prefix used to identify role-based permissions */
        protected String rolePrefix = "{role}";
    
        /** Prefix used to identify group-based permissions */
        protected String groupPrefix = "{group}";
    
        /** Prefix used to identify user-based permissions */
        protected String userPrefix = "{user}";
    
        /** Prefix used to identify allow permissions */
        protected String allowPrefix = "(allow)";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/CrawlJob.java

    public class CrawlJob extends ExecJob {
    
        private static final Logger logger = LogManager.getLogger(CrawlJob.class);
    
        /**
         * The namespace identifier for the crawling session.
         * Used to organize and identify crawling activities in the system.
         * Defaults to the system crawling info name.
         */
        protected String namespace = Constants.CRAWLING_INFO_SYSTEM_NAME;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java

        }
      }
    
      /**
       * Using this as the blocker object allows introspection and debugging tools to see that the
       * currentRunner thread is blocked on the progress of the interruptor thread, which can help
       * identify deadlocks.
       */
      @VisibleForTesting
      static final class Blocker extends AbstractOwnableSynchronizer implements Runnable {
        private final InterruptibleTask<?> task;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 10K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ForwardingMap.java

     * @since 2.0
     */
    @GwtCompatible
    public abstract class ForwardingMap<K extends @Nullable Object, V extends @Nullable Object>
        extends ForwardingObject implements Map<K, V> {
      // TODO(lowasser): identify places where thread safety is actually lost
    
      /** Constructor for use by subclasses. */
      protected ForwardingMap() {}
    
      @Override
      protected abstract Map<K, V> delegate();
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 17:32:30 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

        /** Whether the user identification cookie should be HTTP-only */
        protected boolean httpOnly = true;
    
        /**
         * Retrieves the user code for the current request.
         * The user code is used to uniquely identify users across sessions and requests.
         * It checks multiple sources in order: request attribute, request parameter, cookie, user bean, or generates a new one.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Ascii.java

       * is to be disregarded.
       *
       * @since 8.0
       */
      public static final byte CAN = 24;
    
      /**
       * End of Medium: A control character associated with the sent data which may be used to identify
       * the physical end of the medium, or the end of the used, or wanted, portion of information
       * recorded on a medium. (The position of this character does not necessarily correspond to the
       * physical end of the medium.)
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 21.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/QueryHelper.java

        /** Constant used to indicate that query-based preference should be used for search routing */
        protected static final String PREFERENCE_QUERY = "_query";
    
        /** Prefix used to identify sort parameters in search queries */
        protected String sortPrefix = "sort:";
    
        /** Additional query string to be appended to all search queries */
        protected String additionalQuery;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

        return newReentrantLock(lockName, false);
      }
    
      /**
       * Creates a {@link ReentrantLock} with the given fairness policy. The {@code lockName} is used in
       * the warning or exception output to help identify the locks involved in the detected deadlock.
       */
      public ReentrantLock newReentrantLock(String lockName, boolean fair) {
        return policy == Policies.DISABLED
            ? new ReentrantLock(fair)
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/StandardTable.java

            public V setValue(V value) {
              return super.setValue(checkNotNull(value));
            }
    
            @Override
            public boolean equals(@Nullable Object object) {
              // TODO(lowasser): identify why this affects GWT tests
              return standardEquals(object);
            }
          };
        }
      }
    
      /**
       * {@inheritDoc}
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 30.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                return name + ":" + version;
            }
        }
    
        /**
         * Enumeration of different artifact types supported by Fess.
         * Each type has a specific ID prefix used to identify artifacts of that type.
         */
        public enum ArtifactType {
            /** Data store plugins */
            DATA_STORE("fess-ds"), //
            /** Theme plugins */
            THEME("fess-theme"), //
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
Back to top