Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for vite (0.01 sec)

  1. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

         * Gets the maximum allowed length for site strings from configuration.
         *
         * @return the maximum site length as configured
         */
        default int getMaxSiteLength() {
            return getFessConfig().getCrawlerDocumentMaxSiteLengthAsInteger();
        }
    
        /**
         * Abbreviates a site string to the maximum allowed length if configured.
         *
         * @param value the site string to abbreviate
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              "pvt.k12.ca.us",
              "site.ac.jp",
              "site.ad.jp",
              "site.cc",
              "site.ed.jp",
              "site.ee",
              "site.fi",
              "site.fm",
              "site.geo.jp",
              "site.go.jp",
              "site.gr",
              "site.gr.jp",
              "site.jp",
              "site.lg.jp",
              "site.ma",
              "site.mk",
              "site.ne.jp",
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/ResourceUtil.java

        }
    
        /**
         * Gets the path to site-specific files directory.
         *
         * @param names the path components to append to the site directory
         * @return the Path object pointing to the site directory
         */
        public static Path getSitePath(final String... names) {
            return getPath("WEB-INF/", "site", names);
        }
    
        /**
         * Gets the path to plugin files directory.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Table.java

       *
       * @param columnKey key of column to search for in the table
       * @return the corresponding map from row keys to values
       */
      Map<R, V> column(@ParametricNullness C columnKey);
    
      /**
       * Returns a set of all row key / column key / value triplets. Changes to the returned set will
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                                        <label for="doc.site" class="col-sm-3 text-sm-right col-form-label">site</label>
                                        <div class="col-sm-9">
                                            <la:errors property="doc.site"/>
                                            <la:text styleId="doc.site" property="doc.site" styleClass="form-control"/>
                                        </div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Multimap.java

       */
      Collection<V> get(@ParametricNullness K key);
    
      /**
       * Returns a view collection of all <i>distinct</i> keys contained in this multimap. Note that the
       * key set contains a key if and only if this multimap maps that key to at least one value.
       *
       * <p>Changes to the returned set will update the underlying multimap, and vice versa. However,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 15.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

        /** Field name for OpenSearch document score */
        public static final String DOC_SCORE_FIELD = "_score";
    
        /** Field name for site information in search results */
        public static final String SITE_FIELD = "site";
    
        /** Field name for URL-based search queries */
        public static final String INURL_FIELD = "inurl";
    
        /** Sort value for score-based sorting */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/base/PreconditionsTest.java

          Object[] failingParams = getParametersForSignature(false, sig);
          InvocationTargetException ite =
              assertThrows(
                  InvocationTargetException.class,
                  () -> checkArgumentMethod.invoke(null /* static method */, failingParams));
          assertFailureCause(ite.getCause(), IllegalArgumentException.class, failingParams);
        }
      }
    
      @GwtIncompatible("Reflection")
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/base/PreconditionsTest.java

          Object[] failingParams = getParametersForSignature(false, sig);
          InvocationTargetException ite =
              assertThrows(
                  InvocationTargetException.class,
                  () -> checkArgumentMethod.invoke(null /* static method */, failingParams));
          assertFailureCause(ite.getCause(), IllegalArgumentException.class, failingParams);
        }
      }
    
      @GwtIncompatible("Reflection")
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       *       instances.
       *   <li>For the constructor or static factory method used to construct instances, it's checked
       *       that when equal parameters are passed, the result instance should also be equal; and vice
       *       versa.
       *   <li>If a non-private constructor or non-private static factory method exists:
       *       <ul>
       *         <li>Test will fail if default value for a parameter cannot be determined.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 32.5K bytes
    - Viewed (0)
Back to top