Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for wrapping (0.16 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        String DEFAULT_LABEL_VALUES = "defaultLabelValues";
    
        String VIRTUAL_HOST_VALUES = "virtualHostValues";
    
        String QUERY_LANGUAGE_MAPPING = "queryLanguageMapping";
    
        String CRAWLER_METADATA_NAME_MAPPING = "crawlerMetadataNameMapping";
    
        String CRAWLER_METADATA_CONTENT_EXCLUDES = "crawlerMetadataContentExcludes";
    
        Map<String, Object> propMap = new ConcurrentHashMap<>();
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsPathMappingCQ.java

        //                                                                       =============
        @Override
        public String asTableDbName() {
            return "path_mapping";
        }
    
        @Override
        public String xgetAliasName() {
            return "path_mapping";
        }
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 72.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        implements NavigableMap<K, V> {
      /**
       * Returns a {@link Collector} that accumulates elements into an {@code ImmutableSortedMap} whose
       * keys and values are the result of applying the provided mapping functions to the input
       * elements. The generated map is sorted by the specified comparator.
       *
       * <p>If the mapped keys contain duplicates (according to the specified comparator), an {@code
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 53.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    if (putMappingResponse.isAcknowledged()) {
                        logger.info("Created {}/{} mapping.", indexName, docType);
                    } else {
                        logger.warn("Failed to create {}/{} mapping.", indexName, docType);
                    }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableSortedMap.java

        implements NavigableMap<K, V> {
      /**
       * Returns a {@link Collector} that accumulates elements into an {@code ImmutableSortedMap} whose
       * keys and values are the result of applying the provided mapping functions to the input
       * elements. The generated map is sorted by the specified comparator.
       *
       * <p>If the mapped keys contain duplicates (according to the specified comparator), an {@code
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 50.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Multimaps.java

       * entry returned by the iterator), the results of the iteration are undefined.
       *
       * <p>The multimap supports mapping removal, which removes the corresponding mapping from the map.
       * It does not support any operations which might add mappings, such as {@code put}, {@code
       * putAll} or {@code replaceValues}.
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 86.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/TypeToken.java

      }
    
      private TypeToken<?> resolveSupertype(Type type) {
        TypeToken<?> supertype = of(getCovariantTypeResolver().resolveType(type));
        // super types' type mapping is a subset of type mapping of this type.
        supertype.covariantTypeResolver = covariantTypeResolver;
        supertype.invariantTypeResolver = invariantTypeResolver;
        return supertype;
      }
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 53.6K bytes
    - Viewed (0)
Back to top