Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 6,893 for Size (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        public Integer crawlingThreadCount;
    
        @Size(max = 10)
        public String searchLog;
    
        @Size(max = 10)
        public String userInfo;
    
        @Size(max = 10)
        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;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/MemoryUtil.java

            return byteCountToDisplaySize(BigInteger.valueOf(size));
        }
    
        private static String byteCountToDisplaySize(final BigInteger size) {
            Objects.requireNonNull(size, "size");
            final String displaySize;
    
            if (size.divide(ONE_EB_BI).compareTo(BigInteger.ZERO) > 0) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    		if size == 0 {
    			return H0 + Reg(Rd)
    		} else if size == 1 {
    			return S0 + Reg(Rd)
    		} else if size == 2 {
    			return D0 + Reg(Rd)
    		} else {
    			return nil
    		}
    
    	case arg_Vd_22_2__H_1__S_2:
    		size := (x >> 22) & (1<<2 - 1)
    		Rd := x & (1<<5 - 1)
    		if size == 1 {
    			return H0 + Reg(Rd)
    		} else if size == 2 {
    			return S0 + Reg(Rd)
    		} else {
    			return nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/util/Hexdump.java

            char[] c = new char[size];
            toHexChars(val, c, 0, size);
            return new String(c);
        }
    
    
        /**
         * 
         * @param src
         * @param srcIndex
         * @param size
         * @return hex string
         */
        public static String toHexString ( byte[] src, int srcIndex, int size ) {
            char[] c = new char[2 * size];
            for ( int i = 0, j = 0; i < size; i++ ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/google/MultimapReplaceValuesTester.java

      public void testReplaceEmptyValues() {
        int size = multimap().size();
        List<V> values = Arrays.asList(v0(), v2(), v3());
        multimap().replaceValues(k3(), values);
        assertGet(k3(), values);
        assertEquals(size + values.size(), multimap().size());
      }
    
      @MapFeature.Require({SUPPORTS_PUT, SUPPORTS_REMOVE})
      public void testReplaceValuesWithEmpty() {
        int size = multimap().size();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. internal/hash/reader_test.go

    		t.Errorf("Expected md5base64 \"4vxxTEcn7pOV8yTNLn8zHw==\", got \"%s\"", base64.StdEncoding.EncodeToString(md5sum))
    	}
    	if r.Size() != 4 {
    		t.Errorf("Expected size 4, got %d", r.Size())
    	}
    	if r.ActualSize() != 4 {
    		t.Errorf("Expected size 4, got %d", r.ActualSize())
    	}
    	expectedMD5, err := hex.DecodeString("e2fc714c4727ee9395f324cd2e7f331f")
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. fess-crawler/src/test/resources/extractor/eml/sample2.eml

    @media only screen and (max-width: 420px) {
    a[class="article-headline"] {
    font-size:22px !important;
    line-height:28px !important;
    }
    td[class="story-attribution"]{
    font-size: 13px !important;
    }
    td[class="context"]{
    -webkit-text-size-adjust:none !important;
    font-size: 12px !important;
    }
    a[class="action"]{
    -webkit-text-size-adjust:none !important;
    font-size: 12px !important;
    }
    td[class="margins"]{
    width:15px !important;
    }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Jan 16 07:50:35 UTC 2016
    - 91.6K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/impl/UrlFilterImplTest.java

            assertEquals(0, urlFilter.cachedExcludeSet.size());
            assertEquals(1, dataHelper.getIncludeUrlPatternList(sessionId).size());
            assertEquals(0, dataHelper.getExcludeUrlPatternList(sessionId).size());
        }
    
        public void test_addInclude2() {
            assertEquals(0, urlFilter.cachedIncludeSet.size());
            assertEquals(0, urlFilter.cachedExcludeSet.size());
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. src/runtime/mksizeclasses.go

    			continue
    		}
    		classes = append(classes, class{size: size, npages: npages})
    	}
    
    	// Increase object sizes if we can fit the same number of larger objects
    	// into the same number of pages. For example, we choose size 8448 above
    	// with 6 objects in 7 pages. But we can well use object size 9472,
    	// which is also 6 objects in 7 pages but +1024 bytes (+12.12%).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/testers/ListSubListTester.java

      public void testSubList_size() {
        List<E> list = getList();
        int size = getNumElements();
        assertEquals(size, list.subList(0, size).size());
        assertEquals(size - 1, list.subList(0, size - 1).size());
        assertEquals(size - 1, list.subList(1, size).size());
        assertEquals(0, list.subList(size, size).size());
        assertEquals(0, list.subList(0, 0).size());
      }
    
      @CollectionSize.Require(absent = {ZERO})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top