Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for minuut (0.05 sec)

  1. stopwords.txt

    L14:olisimme L15:olisitte L16:olisivat L17:olit L18:olin L19:olimme L20:olitte L21:olivat L22:ollut L23:olleet L24:en L25:et L26:ei L27:emme L28:ette L29:eivät L30:minä L31:minun L32:minut L33:minua L34:minussa L35:minusta L36:minuun L37:minulla L38:minulta L39:minulle L40:sinä L41:sinun L42:sinut L43:sinua L44:sinussa L45:sinusta L46:sinuun L47:sinulla L48:sinulta L49:sinulle L50:hän L51:hänen L52:hänet L53:häntä L54:hänessä L55:hänestä L56:häneen L57:hänellä L58:häneltä L59:hänelle L60:me L61:meidän L62:meidät...
    github.com/codelibs/fess/src/main/resources/fes...
    Mon Nov 27 12:59:36 UTC 2023
      1.7K bytes
  2. HtmlTagBasedGeneratorTest.java

    generator.saveImage(input, outputFile); L46: } L47: assertImageSize(outputFile, 100, 66); L48: L49: imagePath = "thumbnail/600x400.jpg"; L50: try (ImageInputStream input = ImageIO.createImageInputStream(classLoader.getResourceAsStream(imagePath))) { L51: generator.saveImage(input, outputFile); L52: } L53: assertImageSize(outputFile, 100, 66); L54: L55: imagePath = "thumbnail/400x400.png"; L56: try (ImageInputStream input = ImageIO.crea...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      4.1K bytes
  3. admin.js

    L1:$(function() { L2: $('input[type="text"],select,textarea', ".login-box,section.content") L3: .first() L4: .focus(); L5: $(".form-group .has-error") L6: .first() L7: .next("input,select,textarea") L8: .focus(); L9: L10: $("section.content input").keypress(function(e) { L11: if (e.which === 13) { L12: var $submitButton = $("input#submit, button#submit"); L13: if ($submitButton.size() > 0) { L14: $submitButton[0].submit(); L15: } L16: // ignore enter...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Mon Aug 06 20:44:47 UTC 2018
      3.1K bytes
  4. index.jsp

    </div> L48: <div class="input-group mb-3"> L49: <c:set var="ph_new_password"> L50: <la:message key="labels.profile.placeholder_new_password" /> L51: </c:set> L52: <la:password property="newPassword" class="form-control" L53: placeholder="${ph_new_password}" /> L54: <div class="input-group-append"> L55: <span class="input-group-text"><em class="fa fa-lock fa-fw"></span> L56: </div> L57: </div> L58: <div class="input-group mb-3"> L59: <c:set...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sat Oct 26 01:07:52 UTC 2024
      3.6K bytes
  5. ProtwordsItem.java

    org.codelibs.fess.dict.DictionaryItem; L21: L22:public class ProtwordsItem extends DictionaryItem { L23: private final String input; L24: L25: private String newInput; L26: L27: public ProtwordsItem(final long id, final String input) { L28: this.id = id; L29: this.input = input; L30: L31: if (id == 0) { L32: // create L33: newInput = input; L34: } L35: } L36: L37: public String getNewInput() { L38: return newInput; L39: } L40: L41: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      2.4K bytes
  6. index.jsp

    </div> L48: <div class="input-group mb-3"> L49: <c:set var="ph_new_password"> L50: <la:message key="labels.profile.placeholder_new_password" /> L51: </c:set> L52: <la:password property="newPassword" class="form-control" L53: placeholder="${ph_new_password}" /> L54: <div class="input-group-append"> L55: <span class="input-group-text"><em class="fa fa-lock fa-fw"></span> L56: </div> L57: </div> L58: <div class="input-group mb-3"> L59: <c:set...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sat Oct 26 01:07:52 UTC 2024
      3.6K bytes
  7. StopwordsItem.java

    org.codelibs.fess.dict.DictionaryItem; L21: L22:public class StopwordsItem extends DictionaryItem { L23: private final String input; L24: L25: private String newInput; L26: L27: public StopwordsItem(final long id, final String input) { L28: this.id = id; L29: this.input = input; L30: L31: if (id == 0) { L32: // create L33: newInput = input; L34: } L35: } L36: L37: public String getNewInput() { L38: return newInput; L39: } L40: L41: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      2.4K bytes
  8. profile.js

    L1:$(function() { L2: $('input[type="text"],select,textarea', ".login-box,section.content") L3: .first() L4: .focus(); L5: $(".form-group .has-error") L6: .first() L7: .next("input,select,textarea") L8: .focus(); L9: L10: $("section.content input").keypress(function(e) { L11: var $submitButton; L12: if (e.which === 13) { L13: $submitButton = $("input#submit, button#submit"); L14: if ($submitButton.length > 0) { L15: $submitButton[0].submit(); L16: } L17:...
    github.com/codelibs/fess/src/main/webapp/js/pro...
    Wed Sep 12 06:47:49 UTC 2018
      1.3K bytes
  9. newpassword.jsp

    </div> L37: <la:form styleId="newPassword" method="post"> L38: <div class="input-group mb-3"> L39: <c:set var="ph_new_password"> L40: <la:message key="labels.login.placeholder_new_password" /> L41: </c:set> L42: <la:password property="password" class="form-control" L43: placeholder="${ph_new_password}" /> L44: <div class="input-group-append"> L45: <span class="input-group-text"> L46: <em class="fa fa-lock fa-fw"> L47: </span> L48: ...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sat Oct 26 01:07:52 UTC 2024
      3K bytes
  10. index.jsp

    L37: </div> L38: <la:form styleId="login" method="post"> L39: <div class="input-group mb-3"> L40: <c:set var="ph_username"> L41: <la:message key="labels.login.placeholder_username" /> L42: </c:set> L43: <la:text property="username" styleId="username" L44: class="form-control" placeholder="${ph_username}" /> L45: <div class="input-group-append"> L46: <span class="input-group-text"> L47: <em class="fa fa-user fa-fw"> L48: </span>...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sat Oct 26 01:07:52 UTC 2024
      3K bytes
Back to top