Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for endObject (0.04 sec)

  1. src/main/java/org/codelibs/fess/es/query/StoredLtrQueryBuilder.java

            }
            if (activeFeatures != null && !activeFeatures.isEmpty()) {
                builder.field(ACTIVE_FEATURES.getPreferredName(), activeFeatures);
            }
            printBoostAndQueryName(builder);
            builder.endObject();
        }
    
        @Override
        protected Query doToQuery(final QueryShardContext context) throws IOException {
            throw new UnsupportedOperationException("Query processing is not supported.");
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

            try (final JsonParser jsonParser = jsonFactory.createJsonParser(jwtClaim)) {
                while (jsonParser.nextToken() != JsonToken.END_OBJECT) {
                    final String name = jsonParser.getCurrentName();
                    if (name != null) {
                        jsonParser.nextToken();
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top