Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 648 for max (0.03 sec)

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

        assertThrows(IllegalArgumentException.class, () -> max());
      }
    
      public void testMax() {
        assertThat(max(GREATEST)).isEqualTo(GREATEST);
        assertThat(max(LEAST)).isEqualTo(LEAST);
        assertThat(max((float) 8, (float) 6, (float) 7, (float) 5, (float) 3, (float) 0, (float) 9))
            .isEqualTo((float) 9);
    
        assertThat(max(-0f, 0f)).isEqualTo(0f);
        assertThat(max(0f, -0f)).isEqualTo(0f);
    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/DoublesTest.java

        assertThrows(IllegalArgumentException.class, () -> max());
      }
    
      public void testMax() {
        assertThat(max(LEAST)).isEqualTo(LEAST);
        assertThat(max(GREATEST)).isEqualTo(GREATEST);
        assertThat(
                max((double) 8, (double) 6, (double) 7, (double) 5, (double) 3, (double) 0, (double) 9))
            .isEqualTo((double) 9);
    
        assertThat(max(-0.0, 0.0)).isEqualTo(0.0);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/primitives/FloatsTest.java

        assertThrows(IllegalArgumentException.class, () -> max());
      }
    
      public void testMax() {
        assertThat(max(GREATEST)).isEqualTo(GREATEST);
        assertThat(max(LEAST)).isEqualTo(LEAST);
        assertThat(max((float) 8, (float) 6, (float) 7, (float) 5, (float) 3, (float) 0, (float) 9))
            .isEqualTo((float) 9);
    
        assertThat(max(-0f, 0f)).isEqualTo(0f);
        assertThat(max(0f, -0f)).isEqualTo(0f);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. src/bufio/export_test.go

    // Exported for testing only.
    import (
    	"unicode/utf8"
    )
    
    var IsSpace = isSpace
    
    const DefaultBufSize = defaultBufSize
    
    func (s *Scanner) MaxTokenSize(n int) {
    	if n < utf8.UTFMax || n > 1e9 {
    		panic("bad max token size")
    	}
    	if n < len(s.buf) {
    		s.buf = make([]byte, n)
    	}
    	s.maxTokenSize = n
    }
    
    // ErrOrEOF is like Err, but returns EOF. Used to test a corner case.
    func (s *Scanner) ErrOrEOF() error {
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Nov 02 17:17:44 UTC 2017
    - 597 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/general/MailForm.java

        public String csvFileEncoding;
    
        public String purgeSearchLogDay;
    
        public String purgeJobLogDay;
    
        public String purgeUserInfoDay;
    
        public String purgeByBots;
    
        @Required
        @Size(max = 1000)
        public String notificationTo;
    
        public String suggestSearchLog;
    
        public String suggestDocuments;
    
        public String purgeSuggestSearchLogDay;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/form-validator/lang/ko.js

    합니다.",badCreditCard:"신용카드번호를 정확하지 않습니다.",badCVV:"CVV 번호가 정확하지 않습니다.",wrongFileDim:"잘못된 이미지 크기 ,",imageTooTall:"이미지 길이가 ",imageTooTallEnd:" 보다 길어야 합니다.",imageTooWide:"이미지 넓이가 ",imageTooWideEnd:" 보다 넓어야 합니다.",imageTooSmall:"이미지 크기가 너무 작습니다.",min:"min",max:"max",imageRatioNotAccepted:"이미지 비율이 맞지 않습니다."}})}(a,window)});...
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 3K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig_edit.jsp

                                            <input type="number" name="depth" id="depth"
                                                   value="${f:h(depth)}" class="form-control"
                                                   min="0" max="10000">
                                        </div>
                                    </div>
                                    <div class="form-group row">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 15.9K bytes
    - Viewed (0)
  8. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

            )
          },
        )
    
      /**
       * ```
       * BasicConstraints ::= SEQUENCE {
       *   cA                      BOOLEAN DEFAULT FALSE,
       *   pathLenConstraint       INTEGER (0..MAX) OPTIONAL
       * }
       * ```
       */
      private val basicConstraints: BasicDerAdapter<BasicConstraints> =
        Adapters.sequence(
          "BasicConstraints",
          Adapters.BOOLEAN.optional(defaultValue = false),
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/user/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * @author Keiichi Watanabe
     */
    public class EditForm extends CreateForm {
    
        @Required
        @Size(max = 1000)
        public String id;
    
        @Required
        @ValidateTypeFailure
        public Integer versionNo;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_ko.properties

    constraints.Future.message = {item}은 미래에 있어야 합니다.
    constraints.Max.message = {item}는 {value} 다음에 하십시오.
    constraints.Min.message = {item}는 {value} 이상으로 하십시오.
    constraints.NotNull.message = {item}은 null이면 안됩니다.
    constraints.Null.message = {item}는 null이 아니면 안됩니다.
    constraints.Past.message = {item}은 과거의 값으로 해야 합니다.
    constraints.Pattern.message = {item}가 「{regexp}」 에 일치하지 않습니다.
    constraints.Size.message = {item}의 크기는 {min}에서 {max}의 범위합니다.
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Jul 07 06:11:30 UTC 2018
    - 11.1K bytes
    - Viewed (0)
Back to top