Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 721 for 10 (0.18 sec)

  1. .github/ISSUE_TEMPLATE/10-proposal.yml

    Dmitri Shuralyov <******@****.***> 1700681497 -0500
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Nov 22 20:49:24 GMT 2023
    - 471 bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

    Vlad Chesnokov <******@****.***> 1708069772 +0400
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 16 07:49:32 GMT 2024
    - 3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/convert/TimestampConversionUtilTest.java

        //    }
    
        /**
         * @throws Exception
         */
        //    @Test
        //    public void testToDate_FullStyle() throws Exception {
        //        final Date date = toDate("2010年9月7日 11時49分10JST", Locale.JAPAN);
        //        final SimpleDateFormat df = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
        //        df.setTimeZone(TimeZone.getTimeZone("JST"));
        //        assertThat(df.format(date), is("2010/09/07 11:49:10"));
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.4K bytes
    - Viewed (0)
  4. utils/utils.go

    	case int:
    		return strconv.FormatInt(int64(v), 10)
    	case int8:
    		return strconv.FormatInt(int64(v), 10)
    	case int16:
    		return strconv.FormatInt(int64(v), 10)
    	case int32:
    		return strconv.FormatInt(int64(v), 10)
    	case int64:
    		return strconv.FormatInt(v, 10)
    	case uint:
    		return strconv.FormatUint(uint64(v), 10)
    	case uint8:
    		return strconv.FormatUint(uint64(v), 10)
    	case uint16:
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Mon Apr 22 06:43:02 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/DocumentHelperTest.java

            assertEquals("1234567...", documentHelper.getDigest(responseData, "12345678901", dataMap, 10));
            assertEquals("1234567890", documentHelper.getDigest(responseData, "1234567890", dataMap, 10));
            assertEquals("123456789", documentHelper.getDigest(responseData, "123456789", dataMap, 10));
            assertEquals("1234567", documentHelper.getDigest(responseData, "1234567", dataMap, 10));
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11K bytes
    - Viewed (0)
  6. logger/sql_test.go

    		},
    		{
    			SQL:           "create table users (name, age, height, actived, bytes, create_at, update_at, deleted_at, email, role, pass) values ($3, $4, $1, $2, $7, $8, $5, $6, $9, $10, $11)",
    			NumericRegexp: regexp.MustCompile(`\$(\d+)`),
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Thu Mar 21 08:00:02 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        public String userFavorite;
    
        @Size(max = 10)
        public String webApiJson;
    
        @Size(max = 10000)
        public String appValue;
    
        @Size(max = 1000)
        public String defaultLabelValue;
    
        @Size(max = 1000)
        public String defaultSortValue;
    
        @Size(max = 10000)
        public String virtualHostValue;
    
        @Size(max = 10)
        public String appendQueryParameter;
    
        @Size(max = 10)
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/connection/InetAddressOrderTest.kt

        val result =
          reorderForHappyEyeballs(
            listOf(
              ipv4_10_0_0_6,
              ipv4_10_0_0_1,
              ipv4_10_0_0_4,
              ipv6_ab,
              ipv6_fc,
            ),
          )
    
        assertThat(result).isEqualTo(
          listOf(ipv6_ab, ipv4_10_0_0_6, ipv6_fc, ipv4_10_0_0_1, ipv4_10_0_0_4),
        )
      }
    
      @Test fun ipv6Only() {
        val result = reorderForHappyEyeballs(listOf(ipv6_ab, ipv6_fc))
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java

                    assertEquals(11, list.getCurrentStartRecordNumber());
                    assertEquals(0, list.getOffset());
                    assertEquals(10, list.getPageSize());
                    assertEquals(10, list.getStart());
                    assertEquals("10", list.get(0).get(ID_FIELD));
                    assertEquals("19", list.get(9).get(ID_FIELD));
                } else {
                    fail();
                }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 25.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/convert/TimeConversionUtilTest.java

        public void testToDate_MediumStyle() throws Exception {
            final Date date = toDate("11:49:10");
            assertThat(new SimpleDateFormat("HH:mm:ss").format(date), is("11:49:10"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testToDate_LongStyle() throws Exception {
            final Date date = toDate("11:49:10 JST");
            final SimpleDateFormat df = new SimpleDateFormat("HH:mm:ss");
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 9.5K bytes
    - Viewed (0)
Back to top