Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 387 for _value (0.04 sec)

  1. src/test/java/org/codelibs/fess/entity/RequestParameterTest.java

            // Test with normal name and values
            String name = "paramName";
            String[] values = { "value1", "value2", "value3" };
            RequestParameter param = new RequestParameter(name, values);
    
            assertEquals(name, param.getName());
            assertNotNull(param.getValues());
            assertEquals(3, param.getValues().length);
            assertEquals("value1", param.getValues()[0]);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/cache/CacheReferencesTest.java

          Key key1 = new Key(1);
          String value1 = key1.toString();
          Key key2 = new Key(2);
          String value2 = key2.toString();
          assertSame(value1, cache.getUnchecked(key1));
          assertSame(value2, cache.getUnchecked(key2));
          assertEquals(ImmutableSet.of(key1, key2), cache.asMap().keySet());
          assertThat(cache.asMap().values()).containsExactly(value1, value2);
          assertEquals(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 20:58:01 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java

            assertEquals(0, event.toSource().size());
    
            // Add elements to the map
            map1.put("key1", "value1");
            assertEquals(1, event.toSource().size());
    
            // Replace the map
            Map<String, Object> map2 = new HashMap<>();
            map2.put("key2", "value2");
            map2.put("key3", "value3");
            event.setSourceMap(map2);
            assertEquals(2, event.toSource().size());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/job/ExecJobTest.java

            // Test with property that doesn't exist and default value
            cmdList.clear();
            execJob.testAddSystemProperty(cmdList, "non.existent.property", "default.value", null);
            assertEquals(1, cmdList.size());
            assertEquals("-Dnon.existent.property=default.value", cmdList.get(0));
    
            // Test with property that doesn't exist and no default value
            cmdList.clear();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableMap.java

        }
    
        static final class DuplicateKey {
          private final Object key;
          private final Object value1;
          private final Object value2;
    
          DuplicateKey(Object key, Object value1, Object value2) {
            this.key = key;
            this.value1 = value1;
            this.value2 = value2;
          }
    
          IllegalArgumentException exception() {
            return new IllegalArgumentException(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 41.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/query/BooleanQueryCommandTest.java

            for (int i = 0; i < 3; i++) {
                boolQueryBuilder.add(new TermQuery(new Term("must" + i, "value" + i)), BooleanClause.Occur.MUST);
                boolQueryBuilder.add(new TermQuery(new Term("should" + i, "value" + i)), BooleanClause.Occur.SHOULD);
                boolQueryBuilder.add(new TermQuery(new Term("mustNot" + i, "value" + i)), BooleanClause.Occur.MUST_NOT);
            }
    
            BooleanQuery booleanQuery = boolQueryBuilder.build();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

        checkNotNull(value2);
        checkArgument(!Objects.equals(value1, value2), "Duplicate value provided.");
        distinctValues.replaceValues(type, ImmutableList.of(value1, value2));
        setDefault(type, value1);
        return this;
      }
    
      /**
       * Tests that {@code cls} properly checks null on all constructor and method parameters that
       * aren't annotated nullable (according to the rules of {@link NullPointerTester}). In details:
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java

            facetQueryView.addQuery("label1", "field1:value1");
            facetQueryView.addQuery("label2", "field2:value2");
    
            facetQueryView.init();
    
            // Should not modify query map when no filetype queries present
            assertEquals(2, facetQueryView.getQueryMap().size());
            assertEquals("field1:value1", facetQueryView.getQueryMap().get("label1"));
            assertEquals("field2:value2", facetQueryView.getQueryMap().get("label2"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

            request.setParameterValues("test", new String[] { "value1", "value2", "value1" });
            String[] result = SearchRequestParams.getParamValueArray(request, "test");
            assertEquals(2, result.length);
            assertEquals("value1", result[0]);
            assertEquals("value2", result[1]);
        }
    
        public void test_getParamValueArray_withNullParam() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/BiMap.java

       * @param value the value to be associated with the specified key
       * @return the value that was previously associated with the key, or {@code null} if there was no
       *     previous entry. (If the bimap contains null values, then {@code forcePut}, like {@code
       *     put}, returns {@code null} both if the key is absent and if it is present with a null
       *     value.)
       */
      @CanIgnoreReturnValue
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 17:32:30 UTC 2025
    - 4.2K bytes
    - Viewed (0)
Back to top