Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 9 of 9 for EmptyList (0.09 seconds)

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

  1. guava-tests/test/com/google/common/collect/IteratorsTest.java

    import static com.google.common.collect.testing.IteratorFeature.UNMODIFIABLE;
    import static com.google.common.truth.Truth.assertThat;
    import static java.util.Arrays.asList;
    import static java.util.Collections.emptyList;
    import static java.util.Collections.emptySet;
    import static java.util.Collections.singleton;
    import static java.util.Collections.singletonList;
    
    import com.google.common.annotations.GwtCompatible;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 57.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            setupMockComponents(Collections.emptyList());
    
            final String result = indexExportJob.format("json").query(QueryBuilders.matchAllQuery()).execute();
    
            assertEquals("Exported 0 documents.", result);
        }
    
        @Test
        public void test_execute_queryAndFormatChaining() {
            setupMockComponents(Collections.emptyList());
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 09:08:38 GMT 2026
    - 66.1K bytes
    - Click Count (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

       * | `http://host/?a=apple&b`          | `["apple"]`                 | `[null]`                    |
       */
      fun queryParameterValues(name: String): List<String?> {
        if (queryNamesAndValues == null) return emptyList()
        val result = ArrayList<String?>(4)
        for (i in 0 until queryNamesAndValues.size step 2) {
          if (name == queryNamesAndValues[i]) {
            result.add(queryNamesAndValues[i + 1])
          }
        }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 63.5K bytes
    - Click Count (0)
  4. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                CliRequest cliRequest, ClassRealm containerRealm, Set<String> providedArtifacts) throws Exception {
            if (cliRequest.multiModuleProjectDirectory == null) {
                return Collections.emptyList();
            }
    
            List<CoreExtension> extensions = new ArrayList<>();
    
            String installationExtensionsFile =
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Mon Oct 27 13:24:03 GMT 2025
    - 78.1K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

                            .filter(StringUtil::isNotBlank)
                            .collect(Collectors.toList());
                }
            }
            return Collections.emptyList();
        }
    
        /**
         * Extracts an integer array from JSON response.
         *
         * @param json the JSON response
         * @param key the key to extract
         * @return the extracted integer array
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  6. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            List<Profile> interpolatedActivations = getProfiles(rawModel);
    
            if (interpolatedActivations.isEmpty()) {
                return Collections.emptyList();
            }
            RegexBasedInterpolator interpolator = new RegexBasedInterpolator();
    
            interpolator.addValueSource(new MapBasedValueSource(context.getProjectProperties()));
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sun Mar 30 23:08:08 GMT 2025
    - 55.3K bytes
    - Click Count (0)
  7. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                            projectExecutionListener.afterProjectExecutionSuccess(
                                    new ProjectExecutionEvent(session, step.project, Collections.emptyList()));
                            reactorContext
                                    .getResult()
                                    .addBuildSummary(new BuildSuccess(step.project, clock.wallTime(), clock.execTime()));
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Oct 16 06:12:36 GMT 2025
    - 55.1K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            if (list == null) {
                final String value = getSystemProperty(Constants.DEFAULT_SORT_VALUE_PROPERTY);
                if (StringUtil.isBlank(value)) {
                    list = Collections.emptyList();
                } else {
                    final Set<String> keySet = new HashSet<>();
                    list = split(value, "\n").get(stream -> stream.filter(StringUtil::isNotBlank).map(s -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 92.3K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                        if (attrValue != null) {
                            attrList.add(attrValue);
                        }
                    }
                    return attrList;
                }
                return Collections.emptyList();
            } catch (final NamingException e) {
                throw new LdapOperationException("Failed to parse attribute values for " + name, e);
            }
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 08:06:20 GMT 2026
    - 85.2K bytes
    - Click Count (0)
Back to Top