Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for EQUAL_TO (0.21 sec)

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

                ContiguousSet.create(Range.closed(1, 3), NOT_EQUAL_TO_INTEGERS),
                ContiguousSet.create(Range.closedOpen(1, 4), NOT_EQUAL_TO_INTEGERS),
                ContiguousSet.create(Range.openClosed(0, 3), NOT_EQUAL_TO_INTEGERS),
                ContiguousSet.create(Range.open(0, 4), NOT_EQUAL_TO_INTEGERS),
                ImmutableSortedSet.of(1, 2, 3))
            .addEqualityGroup(
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 19.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ContiguousSetTest.java

                ContiguousSet.create(Range.closed(1, 3), NOT_EQUAL_TO_INTEGERS),
                ContiguousSet.create(Range.closedOpen(1, 4), NOT_EQUAL_TO_INTEGERS),
                ContiguousSet.create(Range.openClosed(0, 3), NOT_EQUAL_TO_INTEGERS),
                ContiguousSet.create(Range.open(0, 4), NOT_EQUAL_TO_INTEGERS),
                ImmutableSortedSet.of(1, 2, 3))
            .addEqualityGroup(
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 19.1K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/testing/EqualsTester.java

          assertTrue(item + " must not be Object#equals to null", !item.equals(null));
          assertTrue(
              item + " must not be Object#equals to an arbitrary object of another class",
              !item.equals(NotAnInstance.EQUAL_TO_NOTHING));
          assertTrue(item + " must be Object#equals to itself", item.equals(item));
          assertEquals(
              "the Object#hashCode of " + item + " must be consistent",
              item.hashCode(),
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Oct 31 19:11:50 GMT 2023
    - 6K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/testing/EqualsTester.java

          assertTrue(item + " must not be Object#equals to null", !item.equals(null));
          assertTrue(
              item + " must not be Object#equals to an arbitrary object of another class",
              !item.equals(NotAnInstance.EQUAL_TO_NOTHING));
          assertTrue(item + " must be Object#equals to itself", item.equals(item));
          assertEquals(
              "the Object#hashCode of " + item + " must be consistent",
              item.hashCode(),
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Oct 31 19:11:50 GMT 2023
    - 6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

                    + facetResponse + "]";
        }
    
        static class SearchResultBuilder {
    
            private long allRecordCount;
            private String allRecordCountRelation = Relation.GREATER_THAN_OR_EQUAL_TO.toString();
            private long queryTime;
            private boolean partialResults;
            private FacetResponse facetResponse;
            private final List<Map<String, Object>> documentList = new ArrayList<>();
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

                final SearchResult searchResult = searchers[0].search(query, reqParams, userBean);
                long allRecordCount = searchResult.getAllRecordCount();
                if (Relation.EQUAL_TO.toString().equals(searchResult.getAllRecordCountRelation())) {
                    allRecordCount += offset;
                }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.5K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp

                                        <div id="subheader" class="row top10">
                                            <div class="col-12">
                                                <c:if test="${allRecordCountRelation=='EQUAL_TO'}">
                                                    <la:message key="labels.search_result_status"
                                                                arg0="${f:h(q)}" arg1="${f:h(allRecordCount)}"
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Sep 24 13:09:22 GMT 2020
    - 20K bytes
    - Viewed (1)
  8. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    	<div class="col">
    		<p>
    			<c:if test="${allRecordCountRelation=='EQUAL_TO'}">
    				<la:message key="labels.search_result_status"
    					arg0="${displayQuery}" arg1="${fe:formatNumber(allRecordCount,'###,###')}"
    					arg2="${f:h(currentStartRecordNumber)}"
    					arg3="${f:h(currentEndRecordNumber)}" />
    			</c:if><c:if test="${allRecordCountRelation!='EQUAL_TO'}">
    				<la:message key="labels.search_result_status_over"
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Jun 09 04:29:42 GMT 2022
    - 9K bytes
    - Viewed (1)
  9. src/main/webapp/WEB-INF/view/searchResults.jsp

    	<div class="col">
    		<p>
    			<c:if test="${allRecordCountRelation=='EQUAL_TO'}">
    				<la:message key="labels.search_result_status"
    					arg0="${displayQuery}" arg1="${fe:formatNumber(allRecordCount,'###,###')}"
    					arg2="${f:h(currentStartRecordNumber)}"
    					arg3="${f:h(currentEndRecordNumber)}" />
    			</c:if><c:if test="${allRecordCountRelation!='EQUAL_TO'}">
    				<la:message key="labels.search_result_status_over"
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Jun 09 04:29:42 GMT 2022
    - 9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java

                    builder.addDocument(doc);
                }
                builder.allRecordCount(allRecordCount);
                if (allRecordCount < 10000) {
                    builder.allRecordCountRelation(Relation.EQUAL_TO.toString());
                }
                return builder.build();
            }
        }
    
        static class TestSubSearcher extends RankFusionSearcher {
    
            private int mainSize;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 25.6K bytes
    - Viewed (0)
Back to top