Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 246 for tiven (0.02 sec)

  1. src/main/resources/fess_indices/_aws/fess.json

    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 14 00:36:40 UTC 2025
    - 117.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

        }
    
        protected static Response deleteMethod(final String path) {
            return given().contentType("application/json").header("Authorization", getTestToken()).delete(path);
        }
    
        protected static void deleteDocuments(final String queryString) {
            List<String> docIds = new ArrayList<>();
            Response response = given().contentType("application/json")
                    .param("scroll", "1m")
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

        }
    
        /**
         * Inserts a login record for the given member.
         * Currently this method does nothing.
         *
         * @param member the member to insert a login record for
         */
        protected void insertLogin(final Object member) {
            // nothing
        }
    
        /**
         * Checks if the current user has permission to access the given resource.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/StopwordsService.java

        /**
         * Constructs a new stopwords service.
         */
        public StopwordsService() {
            // do nothing
        }
    
        /**
         * Retrieves a list of stopwords for a given dictionary and pager.
         *
         * @param dictId         The ID of the dictionary.
         * @param stopwordsPager The pager for controlling pagination.
         * @return A list of stopwords.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/SynonymService.java

        protected FessConfig fessConfig;
    
        /**
         * Constructs a new synonym service.
         */
        public SynonymService() {
            // do nothing
        }
    
        /**
         * Retrieves a list of synonyms for a given dictionary and pager.
         *
         * @param dictId       The ID of the dictionary.
         * @param synonymPager The pager for controlling pagination.
         * @return A list of synonyms.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/curl/io/ContentCache.java

        private final File file;
    
        /**
         * Constructs a ContentCache with the given byte array data.
         *
         * @param data the byte array containing the content
         */
        public ContentCache(final byte[] data) {
            this.data = data;
            this.file = null;
        }
    
        /**
         * Constructs a ContentCache with the given file.
         *
         * @param file the file containing the content
         */
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/lang/StringUtil.java

         *
         * @param str
         *            the string (can be <code>null</code>)
         * @return the given string, or an empty string if the argument is <code>null</code>
         */
        public static String defaultString(final String str) {
            return str == null ? EMPTY : str;
        }
    
        /**
         * Returns the given string, or the specified default string if the argument is <code>null</code>.
         * <p>
         * Usage example:
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/BeanDesc.java

         * Returns the {@link ConstructorDesc} for the given parameter types.
         *
         * @param paramTypes
         *            The array of parameter types for the constructor
         * @return The {@link ConstructorDesc} for the given parameter types
         */
        ConstructorDesc getConstructorDesc(Class<?>... paramTypes);
    
        /**
         * Returns the {@link ConstructorDesc} that matches the given arguments.
         *
         * @param args
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/lang/FieldUtil.java

     */
    public abstract class FieldUtil {
    
        /**
         * Do not instantiate.
         */
        protected FieldUtil() {
        }
    
        /**
         * Returns the value of a {@code static} field represented by the given {@link Field}.
         *
         * @param <T> the type of the field
         * @param field the field (must not be {@literal null})
         * @return the value represented by the {@code static} field
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        }
      }
    
      /**
       * Generates test cases for the given combination of scenario and timeouts. For methods that take
       * an explicit timeout value, all of the given timeoutsToUse result in individual test cases. For
       * methods that do not take an explicit timeout value, a single test case is generated only if the
       * implicit timeout of that method matches the given timeoutsToUse. For example, enter() is
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 27K bytes
    - Viewed (0)
Back to top