Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 197 for buildUrl (0.04 seconds)

  1. src/main/java/org/codelibs/fess/util/IpAddressUtil.java

         * @param port the port number
         * @param path the path (should start with "/" or be empty)
         * @return the complete URL string
         */
        public static String buildUrl(final String protocol, final InetAddress address, final int port, final String path) {
            if (protocol == null || address == null) {
                return null;
            }
            final String host = getUrlHost(address);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 08:31:03 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/util/IpAddressUtilTest.java

            assertEquals("http://127.0.0.1:8080/path", IpAddressUtil.buildUrl("http", ipv4, 8080, "/path"));
            assertEquals("http://127.0.0.1:8080/path", IpAddressUtil.buildUrl("http", ipv4, 8080, "path"));
    
            // IPv4 with port, no path
            assertEquals("http://127.0.0.1:8080", IpAddressUtil.buildUrl("http", ipv4, 8080, ""));
            assertEquals("http://127.0.0.1:8080", IpAddressUtil.buildUrl("http", ipv4, 8080, null));
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 08:31:03 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                        builder.removeAlias(oldIndexName, aliasName);
                        if (source != null) {
                            builder.addAlias(newIndexName, aliasName, source);
                        } else {
                            builder.addAlias(newIndexName, aliasName);
                        }
                    }));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
  4. build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/Builders.kt

    Vlad Chesnokov <******@****.***> 1769707712 +0100
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 15:37:56 GMT 2026
    - 3K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/query/QueryCommand.java

        /**
         * Functional interface for building query builders with field and boost parameters.
         */
        protected interface DefaultQueryBuilderFunction {
            /**
             * Applies the function to create a query builder for the specified field and boost.
             * @param field The field name.
             * @param boost The boost value.
             * @return The created query builder.
             */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Nov 23 11:39:05 GMT 2025
    - 11.6K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/entity/QueryContext.java

            boolQuery.accept(builder);
            if (builder.hasClauses()) {
                queryBuilder = builder;
            }
        }
    
        /**
         * Sets the query builder for this context.
         * @param queryBuilder The query builder to use.
         */
        public void setQueryBuilder(final QueryBuilder queryBuilder) {
            this.queryBuilder = queryBuilder;
        }
    
        /**
         * Adds sort builders to the query context.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Aug 19 14:09:36 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/util/SearchEngineUtil.java

             *
             * @param builder the XContentBuilder to use for building content
             * @param params the parameters to use during content building
             * @return the modified XContentBuilder
             * @throws IOException if an IO error occurs during building
             */
            XContentBuilder apply(XContentBuilder builder, ToXContent.Params params) throws IOException;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/helper/QueryHelper.java

                stream(defaultSortBuilders).of(stream -> stream.forEach(builder -> list.add(builder)));
            }
            list.add(createFieldSortBuilder(fieldName, SortOrder.DESC.toString().equalsIgnoreCase(order) ? SortOrder.DESC : SortOrder.ASC));
            defaultSortBuilders = list.toArray(new SortBuilder[list.size()]);
        }
    
        /**
         * Creates a sort builder for the specified field and order.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 19.9K bytes
    - Click Count (0)
  9. .teamcity/test-buckets.json

            "subprojects": [
              "declarative-dsl-provider",
              "declarative-dsl-tooling-builders",
              "enterprise",
              "execution-e2e-tests",
              "file-collections",
              "ide-plugins",
              "integ-test",
              "ivy",
              "jacoco",
              "kotlin-dsl-tooling-builders",
              "language-groovy",
              "maven",
              "platform-native",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 18:38:15 GMT 2026
    - 118.6K bytes
    - Click Count (0)
  10. .teamcity/subprojects.json

        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "declarative-dsl-tooling-builders",
        "path": "platforms/core-configuration/declarative-dsl-tooling-builders",
        "unitTests": false,
        "functionalTests": false,
        "crossVersionTests": true
      },
      {
        "name": "declarative-dsl-tooling-models",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 15:03:00 GMT 2026
    - 42K bytes
    - Click Count (0)
Back to Top