Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 238 for sizes (0.09 sec)

  1. popper.min.js.map

    left: rect.left,\n top: rect.top,\n width: rect.right - rect.left,\n height: rect.bottom - rect.top,\n };\n\n // subtract scrollbar size from sizes\n const sizes = element.nodeName === 'HTML' ? getWindowSizes(element.ownerDocument) : {};\n const width =\n sizes.width || element.clientWidth || result.width;\n const height =\n sizes.height || element.clientHeight || result.height;\n\n let horizScrollbar = element.offsetWidth - width;\n let vertScrollbar = element.offsetHeight...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Sat Oct 26 01:49:09 UTC 2024
      120.9K bytes
  2. bootstrap.min.css.map

    line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1, .h1 { @include font-size($h1-font-size); }\nh2, .h2 { @include font-size($h2-font-size); }\nh3, .h3 { @include font-size($h3-font-size); }\nh4, .h4 { @include font-size($h4-font-size); }\nh5, .h5 { @include font-size($h5-font-size); }\nh6, .h6 { @include font-size($h6-font-size); }\n\n.lead {\n @include font-size($lead-font-size);\n font-weight: $lead-font-weight;\n}\n\n// Type display classes\n.display-1 {\n @include f...
    github.com/codelibs/fess/src/main/webapp/css/ad...
    Sat Oct 26 01:49:09 UTC 2024
      639.3K bytes
  3. adminlte.min.css.map

    {\n border-radius: 0.25rem;\n}\n\n.img-circle {\n border-radius: 50%;\n}\n\n.img-size-64,\n.img-size-50,\n.img-size-32 {\n height: auto;\n}\n\n.img-size-64 {\n width: 64px;\n}\n\n.img-size-50 {\n width: 50px;\n}\n\n.img-size-32 {\n width: 32px;\n}\n\n.size-32,\n.size-40,\n.size-50 {\n display: block;\n text-align: center;\n}\n\n.size-32 {\n height: 32px;\n line-height: 32px;\n width: 32px;\n}\n\n.size-40 {\n height: 40px;\n line-height: 40px;\n width: 40px;\n}\n\n.size-50 {\n height:...
    github.com/codelibs/fess/src/main/webapp/css/ad...
    Sat Oct 26 01:49:09 UTC 2024
      3.7M bytes
  4. SynonymFile.java

    String[] outputs; L140: L141: final List<String> sides = split(line, "=>"); L142: if (sides.size() > 1) { // explicit mapping L143: if (sides.size() != 2) { L144: throw new DictionaryException("more than one explicit mapping specified on the same line"); L145: } L146: final List<String> inputStrings = split(sides.get(0), ","); L147: inputs = new String[inputStrings.size()];...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      12.5K bytes
  5. MemoryUtil.java

    public static String byteCountToDisplaySize(final long size) { L49: return byteCountToDisplaySize(BigInteger.valueOf(size)); L50: } L51: L52: private static String byteCountToDisplaySize(final BigInteger size) { L53: Objects.requireNonNull(size, "size"); L54: final String displaySize; L55: L56: if (size.divide(ONE_EB_BI).compareTo(BigInteger.ZERO) > 0) { L57: displaySize = new BigDecimal(size.divide(ONE_PB_BI)).divide(BigDecimal.valueOf(1000)) + "EB";...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      4.6K bytes
  6. CreateForm.java

    ts.Min; L26:import jakarta.validation.constraints.Size; L27: L28:/** L29: * @author codelibs L30: * @author Keiichi Watanabe L31: */ L32:public class CreateForm { L33: L34: @ValidateTypeFailure L35: public Integer crudMode; L36: L37: @Required L38: @Size(max = 200) L39: public String name; L40: L41: @Size(max = 1000) L42: public String description; L43: L44: @Required L45: @CustomSize(maxKey = "form.admin.max.input.size") L46: public String handlerName; L47: L48: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      2.4K bytes
  7. CreateForm.java

    @Size(max = 10) L48: public String protocolScheme; L49: L50: @Required L51: @Size(max = 100) L52: public String username; L53: L54: @Size(max = 100) L55: public String password; L56: L57: @Size(max = 1000) L58: public String parameters; L59: L60: @Required L61: @Size(max = 1000) L62: public String webConfigId; L63: L64: @Size(max = 1000) L65: public String createdBy; L66: L67: @ValidateTypeFailure L68: public Long createdTime; L69: L70: public void initialize()...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1.9K bytes
  8. CreateForm.java

    @Required L48: @Size(max = 100) L49: public String username; L50: L51: @Size(max = 100) L52: public String password; L53: L54: @Size(max = 1000) L55: public String parameters; L56: L57: @Required L58: @Size(max = 1000) L59: public String fileConfigId; L60: L61: @Size(max = 1000) L62: public String createdBy; L63: L64: @ValidateTypeFailure L65: public Long createdTime; L66: L67: public void initialize() { L68: crudMode = CrudMode.CREATE; L69: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1.9K bytes
  9. SearchForm.java

    requestedTimeRange; L34: L35: public String accessType; L36: L37: public String size; L38: L39: public void setPageSize(final int size) { L40: this.size = Integer.toString(size); L41: } L42: L43: public int getPageSize() { L44: if (StringUtil.isBlank(size)) { L45: return SearchLogPager.DEFAULT_PAGE_SIZE; L46: } L47: try { L48: final int value = Integer.parseInt(size); L49: if (value <= 0 || value > ComponentUtil.getFessConfig().ge...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.7K bytes
  10. CreateForm.java

    rsion.ValidateTypeFailure; L22: L23:import jakarta.validation.constraints.Size; L24: L25:public class CreateForm { L26: L27: @ValidateTypeFailure L28: public Integer crudMode; L29: L30: @Required L31: @Size(max = 10000) L32: public String term; L33: L34: @Required L35: @Size(max = 10000) L36: public String queries; L37: L38: @Size(max = 1000) L39: public String virtualHost; L40: L41: @Size(max = 1000) L42: public String createdBy; L43: L44: @ValidateTypeFailure...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1.5K bytes
Back to top