Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,568 for greater (0.15 sec)

  1. guava/src/com/google/common/collect/Ordering.java

     *
     * <ol>
     *   <li>First, if only one {@code Foo} is null, that null value is treated as <i>greater</i>
     *   <li>Next, non-null {@code Foo} values are passed to {@code getBarFunction} (we will be
     *       comparing {@code Bar} values from now on)
     *   <li>Next, if only one {@code Bar} is null, that null value is treated as <i>lesser</i>
     *   <li>Finally, natural ordering is used (i.e. the result of {@code Bar.compareTo(Bar)} is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/Quantiles.java

       * greater than or equal to that.
       */
      private static int partition(double[] array, int from, int to) {
        // Select a pivot, and move it to the start of the slice i.e. to index from.
        movePivotToStartOfSlice(array, from, to);
        double pivot = array[from];
    
        // Move all elements with indexes in (from, to] which are greater than the pivot to the end of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/base/PreconditionsTest.java

          Preconditions.checkPositionIndex(2, 1);
          fail();
        } catch (IndexOutOfBoundsException expected) {
          assertThat(expected)
              .hasMessageThat()
              .isEqualTo("index (2) must not be greater than size (1)");
        }
      }
    
      public void testCheckPositionIndex_withDesc_negative() {
        try {
          Preconditions.checkPositionIndex(-1, 1, "foo");
          fail();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/Graph.java

       *
       * <p>For undirected graphs, this is equal to {@code incidentEdges(node).size()} + (number of
       * self-loops incident to {@code node}).
       *
       * <p>If the count is greater than {@code Integer.MAX_VALUE}, returns {@code Integer.MAX_VALUE}.
       *
       * @throws IllegalArgumentException if {@code node} is not an element of this graph
       */
      @Override
      int degree(N node);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/Graph.java

       *
       * <p>For undirected graphs, this is equal to {@code incidentEdges(node).size()} + (number of
       * self-loops incident to {@code node}).
       *
       * <p>If the count is greater than {@code Integer.MAX_VALUE}, returns {@code Integer.MAX_VALUE}.
       *
       * @throws IllegalArgumentException if {@code node} is not an element of this graph
       */
      @Override
      int degree(N node);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. src/sort/zsortinterface.go

    			if partialInsertionSort(data, a, b) {
    				return
    			}
    		}
    
    		// Probably the slice contains many duplicate elements, partition the slice into
    		// elements equal to and elements greater than the pivot.
    		if a > 0 && !data.Less(a-1, pivot) {
    			mid := partitionEqual(data, a, b, pivot)
    			a = mid
    			continue
    		}
    
    		mid, alreadyPartitioned := partition(data, a, b, pivot)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_en.properties

    errors.invalid_query_cannot_process=The given query could not be processed.
    
    errors.crud_invalid_mode=Invalid mode(expected value is {0}, but it's {1}).
    errors.crud_failed_to_create_instance=Failed to create a new data.
    errors.crud_failed_to_create_crud_table=Failed to create a new data. ({0})
    errors.crud_failed_to_update_crud_table=Failed to update the data. ({0})
    errors.crud_failed_to_delete_crud_table=Failed to delete the data. ({0})
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. src/main/resources/fess_message.properties

    errors.invalid_query_cannot_process=The given query could not be processed.
    
    errors.crud_invalid_mode=Invalid mode(expected value is {0}, but it's {1}).
    errors.crud_failed_to_create_instance=Failed to create a new data.
    errors.crud_failed_to_create_crud_table=Failed to create a new data. ({0})
    errors.crud_failed_to_update_crud_table=Failed to update the data. ({0})
    errors.crud_failed_to_delete_crud_table=Failed to delete the data. ({0})
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  9. src/slices/zsortanyfunc.go

    			if partialInsertionSortCmpFunc(data, a, b, cmp) {
    				return
    			}
    		}
    
    		// Probably the slice contains many duplicate elements, partition the slice into
    		// elements equal to and elements greater than the pivot.
    		if a > 0 && !(cmp(data[a-1], data[pivot]) < 0) {
    			mid := partitionEqualCmpFunc(data, a, b, pivot, cmp)
    			a = mid
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/topologymanager/bitmask/bitmask_test.go

    		expectedFirstGreater bool
    	}{
    		{
    			name:                 "Check which value is greater of masks with equal bits set 1/1",
    			firstMask:            []int{0},
    			secondMask:           []int{0},
    			expectedFirstGreater: false,
    		},
    		{
    			name:                 "Check which value is greater of masks with unequal bits set 2/1",
    			firstMask:            []int{1},
    			secondMask:           []int{0},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:09 UTC 2022
    - 16.2K bytes
    - Viewed (0)
Back to top