Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for Babel (0.15 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsbhv/BsElevateWordToLabelBhv.java

        }
    
        @Override
        protected String asEsIndex() {
            return "fess_config.elevate_word_to_label";
        }
    
        @Override
        public String asEsIndexType() {
            return "elevate_word_to_label";
        }
    
        @Override
        public String asEsSearchType() {
            return "elevate_word_to_label";
        }
    
        @Override
        public ElevateWordToLabelDbm asDBMeta() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        MAX(Long.MAX_VALUE, "+oo");
    
        final long millis;
        final String label;
    
        Timeout(long millis, String label) {
          this.millis = millis;
          this.label = label;
        }
    
        @Override
        public String toString() {
          return label;
        }
      }
    
      /** Convenient subsets of the {@link Timeout} enumeration for specifying scenario outcomes. */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 17 14:48:57 GMT 2023
    - 26.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/Graph.java

            Vertex(String label) {
                this.label = label;
            }
    
            String getLabel() {
                return label;
            }
    
            List<Vertex> getChildren() {
                return children;
            }
    
            List<Vertex> getParents() {
                return parents;
            }
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 06:02:04 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/entity/FacetQueryView.java

            final Collection<String> values = queryMap.values();
            if (values.stream().anyMatch(s -> s.startsWith(filetypeField))) {
                final ResourceBundle resources = ResourceBundle.getBundle("fess_label", Locale.ENGLISH);
                final String[] fileTypes = ComponentUtil.getFileTypeHelper().getTypes();
                for (final String fileType : fileTypes) {
                    final String value = filetypeField + ":" + fileType;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

        }
        int writeResourceRecordWireFormat( byte[] dst, int dstIndex ) {
            int start = dstIndex;
            if( recordName == questionName ) {
                dst[dstIndex++] = (byte)0xC0; // label string pointer to
                dst[dstIndex++] = (byte)0x0C; // questionName (offset 12)
            } else {
                dstIndex += recordName.writeWireFormat( dst, dstIndex );
            }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 12.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

    import org.lastaflute.web.response.next.HtmlNext;
    import org.lastaflute.web.ruts.process.ActionRuntime;
    
    public abstract class FessSearchAction extends FessBaseAction {
    
        protected static final String LABEL_FIELD = "label";
    
        @Resource
        protected SearchHelper searchHelper;
    
        @Resource
        protected ThumbnailManager thumbnailManager;
    
        @Resource
        protected LabelTypeHelper labelTypeHelper;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

        private static final String NAME_PREFIX = "searchApiTest_";
        private static final String DEFAULT_TESTDATA_PATH = "/tmp/fess-testdata";
        private static final String CRAWL_LABEL = NAME_PREFIX + "_label";
        private static final String TEST_LABEL = "tools";
        private static String fileConfigId;
        private static String labelId;
        private static String crawlLabelId;
    
        @BeforeAll
        protected static void initAll() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.6K bytes
    - Viewed (1)
  8. src/main/java/org/codelibs/fess/api/BaseApiManager.java

            }
            final String type = value.toUpperCase(Locale.ROOT);
            if (FormatType.SEARCH.name().equals(type)) {
                return FormatType.SEARCH;
            }
            if (FormatType.LABEL.name().equals(type)) {
                return FormatType.LABEL;
            }
            if (FormatType.POPULARWORD.name().equals(type)) {
                return FormatType.POPULARWORD;
            }
            if (FormatType.FAVORITE.name().equals(type)) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/InternetDomainName.java

       * encoding of each part occupies at least two bytes (dot plus label externally, length byte plus
       * label internally). Thus, if all labels have the minimum size of one byte, 127 of them will fit.
       */
      private static final int MAX_PARTS = 127;
    
      /**
       * Maximum length of a full domain name, including separators, and leaving room for the root
       * label. See <a href="http://www.ietf.org/rfc/rfc2181.txt">RFC 2181</a> part 11.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 05 20:47:23 GMT 2024
    - 28K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCollectorRequest.java

             * descriptor and a corresponding artifact file. The root artifact on the other hand is only used
             * as a label for the root node of the graph in case no root dependency was specified. As such, the configured
             * root artifact is ignored if {@link #root(DependencyCoordinate)} has been set.
             *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 11.7K bytes
    - Viewed (0)
Back to top