Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 261 for 11 (0.15 sec)

  1. .github/workflows/build.yml

              distribution: 'zulu'
              java-version: 11
    
          - name: Configure JDK
            uses: actions/setup-java@v4
            with:
              distribution: 'zulu'
              java-version: 17
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
    
          - name: Run Checks
            run: ./gradlew test -Dtest.java.version=11
    
          - name: Publish Test Report
    Others
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Apr 15 01:51:50 GMT 2024
    - 17.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

        private static final String VERSION_13_8 = "13.8";
    
        private static final String VERSION_13_9 = "13.9";
    
        private static final String VERSION_13_10 = "13.10";
    
        private static final String VERSION_13_11 = "13.11";
    
        private static final String VERSION_13_12 = "13.12";
    
        private static final String VERSION_13_13 = "13.13";
    
        private static final String VERSION_13_14 = "13.14";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 46.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/base/StringsTest.java

        assertEquals("1%s%s", Strings.lenientFormat("%s%s%s", 1));
        assertEquals("5 + 6 = 11", Strings.lenientFormat("%s + 6 = 11", 5));
        assertEquals("5 + 6 = 11", Strings.lenientFormat("5 + %s = 11", 6));
        assertEquals("5 + 6 = 11", Strings.lenientFormat("5 + 6 = %s", 11));
        assertEquals("5 + 6 = 11", Strings.lenientFormat("%s + %s = %s", 5, 6, 11));
        assertEquals("null [null, null]", Strings.lenientFormat("%s", null, null, null));
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 10.3K bytes
    - Viewed (0)
  4. cmd/endpoint-ellipses_test.go

    			nil,
    			10,
    			false,
    		},
    		// Failure not divisible number of disks.
    		{
    			[]string{"http://host{1...11}/data{1...11}"},
    			[]uint64{121},
    			[][]uint64{{11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11}},
    			11,
    			true,
    		},
    		{
    			[]string{"data{1...60}"},
    			nil,
    			nil,
    			8,
    			false,
    		},
    		{
    			[]string{"data{1...64}"},
    			nil,
    			nil,
    			64,
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Dec 07 09:33:56 GMT 2023
    - 15.2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java

        MinMaxPriorityQueue<Integer> queue = MinMaxPriorityQueue.create();
        assertEquals(11, queue.capacity());
        checkUnbounded(queue);
        checkNatural(queue);
      }
    
      public void testCreation_comparator() {
        MinMaxPriorityQueue<Integer> queue = MinMaxPriorityQueue.orderedBy(SOME_COMPARATOR).create();
        assertEquals(11, queue.capacity());
        checkUnbounded(queue);
        assertSame(SOME_COMPARATOR, queue.comparator());
      }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 36.1K bytes
    - Viewed (0)
  6. 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分10秒 JST", Locale.JAPAN);
        //        final SimpleDateFormat df = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
        //        df.setTimeZone(TimeZone.getTimeZone("JST"));
    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)
  7. guava-tests/test/com/google/common/base/StringsTest.java

        assertEquals("1%s%s", Strings.lenientFormat("%s%s%s", 1));
        assertEquals("5 + 6 = 11", Strings.lenientFormat("%s + 6 = 11", 5));
        assertEquals("5 + 6 = 11", Strings.lenientFormat("5 + %s = 11", 6));
        assertEquals("5 + 6 = 11", Strings.lenientFormat("5 + 6 = %s", 11));
        assertEquals("5 + 6 = 11", Strings.lenientFormat("%s + %s = %s", 5, 6, 11));
        assertEquals("null [null, null]", Strings.lenientFormat("%s", null, null, null));
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 10.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/cache/CacheEvictionTest.java

        // evict 3, 4, 5
        getAll(cache, asList(10, 11, 12));
        CacheTesting.drainRecencyQueues(cache);
        assertThat(keySet).containsExactly(6, 7, 8, 9, 0, 1, 2, 10, 11, 12);
    
        // re-order
        getAll(cache, asList(6, 7, 8));
        CacheTesting.drainRecencyQueues(cache);
        assertThat(keySet).containsExactly(9, 0, 1, 2, 10, 11, 12, 6, 7, 8);
    
        // evict 9, 0, 1
        getAll(cache, asList(13, 14, 15));
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 14.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java

                    assertEquals(offset, list.size());
                    assertEquals(allRecordCount + offset, list.getAllRecordCount());
                    assertEquals(11, list.getAllPageCount());
                    assertEquals(1045, list.getCurrentEndRecordNumber());
                    assertEquals(11, list.getCurrentPageNumber());
                    assertEquals(1001, list.getCurrentStartRecordNumber());
                    assertEquals(offset, list.getOffset());
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 25.6K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/cache/CacheEvictionTest.java

        // evict 3, 4, 5
        getAll(cache, asList(10, 11, 12));
        CacheTesting.drainRecencyQueues(cache);
        assertThat(keySet).containsExactly(6, 7, 8, 9, 0, 1, 2, 10, 11, 12);
    
        // re-order
        getAll(cache, asList(6, 7, 8));
        CacheTesting.drainRecencyQueues(cache);
        assertThat(keySet).containsExactly(9, 0, 1, 2, 10, 11, 12, 6, 7, 8);
    
        // evict 9, 0, 1
        getAll(cache, asList(13, 14, 15));
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 14.9K bytes
    - Viewed (0)
Back to top