- Sort Score
- Num 10 results
- Language All
Results 1001 - 1010 of 1,508 for LENGTH (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/AbstractLifecycleMappingProvider.java
private final LifecycleMapping lifecycleMapping; protected AbstractLifecycleMappingProvider(String[] pluginBindings) { requireNonNull(pluginBindings); final int len = pluginBindings.length; if (len < 2 || len % 2 != 0) { throw new IllegalArgumentException("Plugin bindings must have more than 0, even count of elements"); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Dec 22 12:24:35 GMT 2024 - 3.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java
final Set<String> roleSet = ComponentUtil.getRoleQueryHelper().build(searchRequestType); if (roleSet.isEmpty()) { for (final LabelTypeItem item : labelList) { if (item.getPermissions().length == 0) { final Map<String, String> map = new HashMap<>(2); map.put(Constants.ITEM_LABEL, item.getLabel()); map.put(Constants.ITEM_VALUE, item.getValue());
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 14.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/search/SearchAction.java
RenderDataUtil.register(data, "relatedContents", relatedContents); final String[] relatedQueries = relatedQueryHelper.getRelatedQueries(form.getQuery()); if (relatedQueries.length > 0) { RenderDataUtil.register(data, "relatedQueries", relatedQueries); } }); } catch (final InvalidQueryException e) { if (logger.isDebugEnabled()) {
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 14K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy
if (name == behaviorName && methodDescriptor == behavior.getSignature()) { Type[] argumentTypes = Type.getArgumentTypes(methodDescriptor) parametersNullability = new ArrayList<>(argumentTypes.length) for (Type ignored : argumentTypes) { parametersNullability.add(false) } return new MethodVisitor(AsmConstants.ASM_LEVEL) {
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Oct 27 09:26:32 GMT 2025 - 15.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterTest.java
assertEquals(1, elevateWords.length); assertEquals("test", elevateWords[0].getElevateWord()); suggester.indexer().deleteElevateWord(elevateWord.getElevateWord(), true); suggester.refresh(); elevateWords = suggester.settings().elevateWord().get(); assertEquals(0, elevateWords.length); } @Test
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 37.4K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
.setException(e)); throw problems.newModelBuildingException(); } catch (IOException e) { String msg = e.getMessage(); if (msg == null || msg.length() <= 0) { // NOTE: There's java.nio.charset.MalformedInputException and sun.io.MalformedInputException if (e.getClass().getName().endsWith("MalformedInputException")) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Mar 30 23:08:08 GMT 2025 - 55.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/ErrorToWarnRewritePolicy.java
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.4K bytes - Click Count (0) -
android/guava-tests/benchmark/com/google/common/io/CharStreamsCopyBenchmark.java
long r = 0; String localData = data; TargetSupplier localTarget = target; CopyStrategy localStrategy = strategy; for (int i = 0; i < reps; i++) { Appendable appendable = localTarget.get(localData.length()); r += localStrategy.copy(new StringReader(localData), appendable); } return r; }Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue May 13 18:46:00 GMT 2025 - 3.2K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-UtilJvm.kt
currentThread.name = name try { block() } finally { currentThread.name = oldName } } /** Returns the Content-Length as reported by the response headers. */ internal fun Response.headersContentLength(): Long = headers["Content-Length"]?.toLongOrDefault(-1L) ?: -1L /** Returns an immutable wrap of this. */ @Suppress("NOTHING_TO_INLINE")Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Thu Jul 31 04:18:40 GMT 2025 - 10.2K bytes - Click Count (1) -
guava/src/com/google/common/collect/Lists.java
checkNotNull(elements); // for GWT // Avoid integer overflow when a large array is passed in int capacity = computeArrayListCapacity(elements.length); ArrayList<E> list = new ArrayList<>(capacity); Collections.addAll(list, elements); return list; } /**
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 42.6K bytes - Click Count (0)