Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for distance (0.15 sec)

  1. src/test/java/org/codelibs/fess/entity/GeoInfoTest.java

            request.setParameter("geo.location.1.distance", "10km");
            request.setParameter("geo.location.2.point", "35,151");
            request.setParameter("geo.location.2.distance", "1km");
    
            final GeoInfo geoInfo = new GeoInfo(request);
            String result =
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/entity/GeoInfo.java

                            if (key.startsWith("geo." + geoField + ".")) {
                                final String distanceKey = key.replaceFirst(".point$", ".distance");
                                final String distance = request.getParameter(distanceKey);
                                if (StringUtil.isNotBlank(distance)) {
                                    StreamUtil.stream(e.getValue()).of(s -> s.forEach(pt -> {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  3. src/main/config/openapi/openapi-user.yaml

              required: false
              schema:
                type: string
                example: 35.0,139.0
            - name: geo.location.distance
              in: query
              description: Distance for Geo search
              required: false
              schema:
                type: string
                example: 10km
            - name: lang
              in: query
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Jun 19 13:30:00 GMT 2023
    - 21.6K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/ElevateWordToLabelDbm.java

        //                                                                           =========
        private static final ElevateWordToLabelDbm _instance = new ElevateWordToLabelDbm();
    
        private ElevateWordToLabelDbm() {
        }
    
        public static ElevateWordToLabelDbm getInstance() {
            return _instance;
        }
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/ElevateWordDbm.java

        //                                                                           =========
        private static final ElevateWordDbm _instance = new ElevateWordDbm();
    
        private ElevateWordDbm() {
        }
    
        public static ElevateWordDbm getInstance() {
            return _instance;
        }
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FailureUrlDbm.java

        //                                                                           =========
        private static final FailureUrlDbm _instance = new FailureUrlDbm();
    
        private FailureUrlDbm() {
        }
    
        public static FailureUrlDbm getInstance() {
            return _instance;
        }
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/JobLogDbm.java

        //                                                                           =========
        private static final JobLogDbm _instance = new JobLogDbm();
    
        private JobLogDbm() {
        }
    
        public static JobLogDbm getInstance() {
            return _instance;
        }
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/PathMappingDbm.java

        //                                                                           =========
        private static final PathMappingDbm _instance = new PathMappingDbm();
    
        private PathMappingDbm() {
        }
    
        public static PathMappingDbm getInstance() {
            return _instance;
        }
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/AccessTokenDbm.java

        //                                                                           =========
        private static final AccessTokenDbm _instance = new AccessTokenDbm();
    
        private AccessTokenDbm() {
        }
    
        public static AccessTokenDbm getInstance() {
            return _instance;
        }
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java

                form.permissions = stream(entity.getPermissions()).get(stream -> stream.map(s -> permissionHelper.decode(s))
                        .filter(StringUtil::isNotBlank).distinct().collect(Collectors.joining("\n")));
            }).orElse(() -> {
                throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id), this::asListHtml);
            });
            saveToken();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.1K bytes
    - Viewed (0)
Back to top