Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Facet (0.1 sec)

  1. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                        }
                        buf.append('}');
                    }
                }
                buf.append(']');
                if (facetResponse != null && facetResponse.hasFacetResponse()) {
                    // facet field
                    buf.append(',');
                    buf.append("\"facet_field\":[");
                    if (facetResponse.getFieldList() != null) {
                        boolean first1 = true;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ==== Adding `jst.ejb` with the `eclipse wtp` plugin now removes the `jst.utility` facet
    
    The `eclipse wtp` plugin adds the `jst.utility` facet to java projects.
    Now, adding the `jst.ejb` facet implicitly removes the `jst.utility` facet:
    
    ```
    eclipse {
        wtp {
            facet {
                facet name: 'jst.ejb', version: '3.2'
            }
        }
    }
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.plugins.ide.eclipse.model.Facet.appendNode(groovy.util.Node)> has arguments/return type groovy.util.Node that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (Facet.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                stream(facetInfo.field).of(stream -> stream.forEach(f -> {
                    if (!queryFieldConfig.isFacetField(f)) {
                        throw new SearchQueryException("Invalid facet field: " + f);
                    }
                    final String encodedField = BaseEncoding.base64().encode(f.getBytes(StandardCharsets.UTF_8));
                    final TermsAggregationBuilder termsBuilder =
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
Back to top