Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 151 for EmptyList (0.04 sec)

  1. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

        val stepExecutionMode: ExecutionMode = if (isRetry) ExecutionMode.RUN_ONLY_ON_FAILURE else ExecutionMode.DEFAULT
        val extraBuildScanTags: List<String> = if (isRetry) listOf("RetriedBuild") else emptyList()
    
        val buildScanTags = model.buildScanTags + listOfNotNull(stage?.id) + extraBuildScanTags
        val parameters =
            (
                buildToolGradleParameters(maxParallelForks = maxParallelForks) +
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Jun 11 12:58:05 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/primitives/BytesTest.java

      }
    
      // `primitives` can't depend on `collect`, so this is what the prod code has to return.
      @SuppressWarnings("EmptyList")
      public void testAsListEmpty() {
        assertThat(Bytes.asList(EMPTY)).isSameInstanceAs(Collections.emptyList());
      }
    
      public void testReverse() {
        testReverse(new byte[] {}, new byte[] {});
        testReverse(new byte[] {1}, new byte[] {1});
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/multichannel/ChannelLoadBalancerTest.java

            assertEquals(channel1, selected);
        }
    
        @Test
        void testNoChannelsAvailable() {
            when(mockChannelManager.getHealthyChannels()).thenReturn(Collections.emptyList());
    
            assertThrows(ChannelLoadBalancer.NoAvailableChannelException.class, () -> loadBalancer.selectChannel(mockMessage));
        }
    
        @Test
        void testRoundRobinStrategy() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/exentity/ElevateWord.java

                        }
                        final LabelTypeBhv labelTypeBhv = ComponentUtil.getComponent(LabelTypeBhv.class);
                        labelTypeList = labelIdList.isEmpty() ? Collections.emptyList() : labelTypeBhv.selectList(cb -> {
                            cb.query().setId_InScope(labelIdList);
                            cb.query().addOrderBy_SortOrder_Asc();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

            assertNull(result.getFacetResponse());
        }
    
        public void test_constructor_withEmptyList() {
            // Test with empty document list
            List<Map<String, Object>> emptyList = new ArrayList<>();
            SearchResult result = new SearchResult(emptyList, 0L, "eq", 10L, false, null);
    
            assertNotNull(result.getDocumentList());
            assertTrue(result.getDocumentList().isEmpty());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/ProtwordsService.java

                protwordsPager.setPageNumberList(protwordsList.createPageNumberList());
    
                return (List<ProtwordsItem>) protwordsList;
            }).orElse(Collections.emptyList());
        }
    
        /**
         * Gets the protected words file for the specified dictionary ID.
         * @param dictId the dictionary ID
         * @return the protected words file if found
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/Booleans.java

       * @return a list view of the array
       */
      public static List<Boolean> asList(boolean... backingArray) {
        if (backingArray.length == 0) {
          return Collections.emptyList();
        }
        return new BooleanArrayAsList(backingArray);
      }
    
      private static final class BooleanArrayAsList extends AbstractList<Boolean>
          implements RandomAccess, Serializable {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/Booleans.java

       * @return a list view of the array
       */
      public static List<Boolean> asList(boolean... backingArray) {
        if (backingArray.length == 0) {
          return Collections.emptyList();
        }
        return new BooleanArrayAsList(backingArray);
      }
    
      private static final class BooleanArrayAsList extends AbstractList<Boolean>
          implements RandomAccess, Serializable {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  9. src/test/java/jcifs/ntlmssp/av/AvPairsTest.java

         * Test contains method with empty list
         */
        @Test
        @DisplayName("Contains should return false for empty list")
        void testContainsEmptyList() {
            List<AvPair> emptyList = new ArrayList<>();
            assertFalse(AvPairs.contains(emptyList, AvPair.MsvAvFlags), "Should return false for empty list");
        }
    
        /**
         * Test contains method with existing type
         */
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractConditionAggregation.java

        }
    
        public List<AbstractAggregationBuilder<?>> getAggregationBuilderList() {
            return aggregationAggregationBuilderList != null ? aggregationAggregationBuilderList : Collections.emptyList();
        }
    
        // ===================================================================================
        //                                                                         Aggregation
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 12.4K bytes
    - Viewed (0)
Back to top