Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 84 of 84 for test_main (0.08 sec)

  1. guava-tests/test/com/google/common/primitives/FloatsTest.java

        assertThat(Float.isNaN(max(VALUES))).isTrue();
      }
    
      @GwtIncompatible
      public void testMin_noArgs() {
        assertThrows(IllegalArgumentException.class, () -> min());
      }
    
      public void testMin() {
        assertThat(min(LEAST)).isEqualTo(LEAST);
        assertThat(min(GREATEST)).isEqualTo(GREATEST);
        assertThat(min((float) 8, (float) 6, (float) 7, (float) 5, (float) 3, (float) 0, (float) 9))
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/primitives/LongsTest.java

            .isEqualTo((long) 9);
      }
    
      public void testMin_noArgs() {
        assertThrows(IllegalArgumentException.class, () -> min());
      }
    
      public void testMin() {
        assertThat(min(MIN_VALUE)).isEqualTo(MIN_VALUE);
        assertThat(min(MAX_VALUE)).isEqualTo(MAX_VALUE);
        assertThat(min((long) 8, (long) 6, (long) 7, (long) 5, (long) 3, (long) 0, (long) 9))
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. src/main/resources/fess_label.properties

    labels.notification_search_top=Search top page
    labels.storage_endpoint=Endpoint
    labels.storage_access_key=Access Key
    labels.storage_secret_key=Secret Key
    labels.storage_bucket=Bucket
    labels.send_testmail=Send TestMail
    labels.backup_configuration=Back Up
    labels.backup_name=Name
    labels.backup_bulk_file=Bulk File
    labels.backup_button_upload=Upload
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Bucket */
        public static final String LABELS_storage_bucket = "{labels.storage_bucket}";
    
        /** The key of the message: Send TestMail */
        public static final String LABELS_send_testmail = "{labels.send_testmail}";
    
        /** The key of the message: Back Up */
        public static final String LABELS_backup_configuration = "{labels.backup_configuration}";
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
Back to top