Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 10 for forEach (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/opensearch/user/cbean/ca/bs/BsUserCA.java

                opLambda.callback(builder);
            }
            if (aggsLambda != null) {
                UserCA ca = new UserCA();
                aggsLambda.callback(ca);
                ca.getAggregationBuilderList().forEach(builder::subAggregation);
            }
        }
    
        public void global(String name, ConditionOptionCall<GlobalAggregationBuilder> opLambda, OperatorCall<BsUserCA> aggsLambda) {
    Created: 2026-03-31 13:07
    - Last Modified: 2025-03-15 06:53
    - 212.5K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsWebConfigCA.java

                opLambda.callback(builder);
            }
            if (aggsLambda != null) {
                WebConfigCA ca = new WebConfigCA();
                aggsLambda.callback(ca);
                ca.getAggregationBuilderList().forEach(builder::subAggregation);
            }
        }
    
        public void global(String name, ConditionOptionCall<GlobalAggregationBuilder> opLambda, OperatorCall<BsWebConfigCA> aggsLambda) {
    Created: 2026-03-31 13:07
    - Last Modified: 2025-03-15 06:53
    - 149K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsFileConfigCA.java

                opLambda.callback(builder);
            }
            if (aggsLambda != null) {
                FileConfigCA ca = new FileConfigCA();
                aggsLambda.callback(ca);
                ca.getAggregationBuilderList().forEach(builder::subAggregation);
            }
        }
    
        public void global(String name, ConditionOptionCall<GlobalAggregationBuilder> opLambda, OperatorCall<BsFileConfigCA> aggsLambda) {
    Created: 2026-03-31 13:07
    - Last Modified: 2025-03-15 06:53
    - 144.7K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            if (StringUtil.isNotBlank(httpAddress)) {
                System.setProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS, httpAddress);
            }
    
            waitForYellowStatus(fessConfig);
    
            indexConfigList.forEach(configName -> {
                final String[] values = configName.split("/");
                if (values.length == 2) {
                    final String configIndex = values[0];
                    final String configType = values[1];
    
    Created: 2026-03-31 13:07
    - Last Modified: 2026-03-26 14:36
    - 138.6K bytes
    - Click Count (1)
  5. guava/src/com/google/common/collect/Maps.java

            }
          }
          return new EntrySetImpl();
        }
    
        @Override
        public void forEach(BiConsumer<? super K, ? super V> action) {
          checkNotNull(action);
          // avoids allocation of entries
          backingSet().forEach(k -> action.accept(k, function.apply(k)));
        }
      }
    
      static <K extends @Nullable Object, V extends @Nullable Object>
    Created: 2026-04-03 12:43
    - Last Modified: 2026-04-01 17:27
    - 163.4K bytes
    - Click Count (0)
  6. src/main/webapp/js/admin/bootstrap.min.js.map

    Created: 2026-03-31 13:07
    - Last Modified: 2024-10-26 01:49
    - 180.9K bytes
    - Click Count (0)
  7. src/main/webapp/js/admin/popper.min.js.map

    Here we convert the string values into number values (in px)\n        .map(str => toValue(str, measurement, popperOffsets, referenceOffsets))\n    );\n  });\n\n  // Loop trough the offsets arrays and execute the operations\n  ops.forEach((op, index) => {\n    op.forEach((frag, index2) => {\n      if (isNumeric(frag)) {\n        offsets[index] += frag * (op[index2 - 1] === '-' ? -1 : 1);\n      }\n    });\n  });\n  return offsets;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object}...
    Created: 2026-03-31 13:07
    - Last Modified: 2024-10-26 01:49
    - 120.9K bytes
    - Click Count (0)
  8. src/main/webapp/js/admin/adminlte.min.js.map

    Created: 2026-03-31 13:07
    - Last Modified: 2024-10-26 01:49
    - 132.4K bytes
    - Click Count (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt

          override fun isOneShot(): Boolean = true
    
          override fun contentType(): MediaType? = "application/text-plain".toMediaTypeOrNull()
    
          override fun writeTo(sink: BufferedSink) {
            internalBody.forEach { item ->
              sink.writeUtf8(this@toOneShotRequestBody)
            }
          }
        }
    
      @Test
      fun secureResponseCachingAndRedirects() {
        server.useHttps(handshakeCertificates.sslSocketFactory())
    Created: 2026-04-03 11:42
    - Last Modified: 2026-03-20 09:13
    - 121K bytes
    - Click Count (0)
  10. src/main/webapp/js/admin/moment-with-locales.min.js.map

    Created: 2026-03-31 13:07
    - Last Modified: 2024-10-26 01:49
    - 224.8K bytes
    - Click Count (1)
Back to Top