Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for SplitN (0.05 sec)

  1. AzureAdAuthenticator.java

    KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.sso.aad; L17: L18:import static org.codelibs.core.stream.StreamUtil.split; L19: L20:import java.io.IOException; L21:import java.net.URI; L22:import java.net.URLEncoder; L23:import java.util.ArrayList; L24:import java.util.Arrays; L25:import java.util.Collections; L26:import java.util.HashMap; L27:import java.util.List; L28:import...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      28.2K bytes
  2. AdminAccesstokenAction.java

    express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.app.web.admin.accesstoken; L17: L18:import static org.codelibs.core.stream.StreamUtil.split; L19:import static org.codelibs.core.stream.StreamUtil.stream; L20: L21:import java.util.stream.Collectors; L22: L23:import org.apache.logging.log4j.LogManager; L24:import org.apache.logging.log4j.Logger; L25:import org.codelibs.core.beans.util.BeanUtil;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      14.7K bytes
  3. AdminLabeltypeAction.java

    express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.app.web.admin.labeltype; L17: L18:import static org.codelibs.core.stream.StreamUtil.split; L19:import static org.codelibs.core.stream.StreamUtil.stream; L20: L21:import java.util.stream.Collectors; L22:import java.util.stream.Stream; L23: L24:import org.apache.logging.log4j.LogManager; L25:import org.apache.logging.log4j.Logger; L26:import...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      15.1K bytes
  4. AdminElevatewordAction.java

    express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.app.web.admin.elevateword; L17: L18:import static org.codelibs.core.stream.StreamUtil.split; L19:import static org.codelibs.core.stream.StreamUtil.stream; L20: L21:import java.io.BufferedReader; L22:import java.io.BufferedWriter; L23:import java.io.InputStream; L24:import java.io.InputStreamReader; L25:import java.io.OutputStreamWriter; L26:import...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      18.7K bytes
  5. security.js

    .addValidator({name:"creditcard",validatorFunction:function(b,f){var g=a.split(f.valAttr("allowing")||"");if(e=a.inArray("amex",g)>-1,d=e&&1===g.length,g.length>0){var h=!1;if(a.each(g,function(d,e){if(e in c){if(b.length>=c[e][0]&&b.length<=c[e][1])return h=!0,!1}else a.formUtils.warn('Use of unknown credit card "'+e+'"',!0)}),!h)return!1}if(""!==b.replace(new RegExp("[0-9]","g"),""))return!1;var i=0;return a.each(b.split("").reverse(),function(a,b){b=parseInt(b,10),a%2===0?i+=b:(b*=2,i+=b<10?b...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Mon Jan 01 05:12:47 UTC 2018
      10.5K bytes
  6. AdminPluginAction.java

    item.put("version", artifact.getVersion()); L189: item.put("url", artifact.getUrl()); L190: return item; L191: } L192: L193: private Artifact getArtifactFromInstallForm(final InstallForm form) { L194: final String[] values = form.id.split(":"); L195: return ComponentUtil.getPluginHelper().getArtifact(values[0], values[1]); L196: } L197: L198: public static void installArtifact(final Artifact artifact) { L199: new Thread(() -> { L200: final PluginHelper...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.9K bytes
  7. AdminGeneralAction.java

    @Execute L92: @Secured({ ROLE }) L93: public HtmlResponse sendmail(final MailForm form) { L94: validate(form, messages -> {}, () -> asHtml(path_AdminGeneral_AdminGeneralJsp)); L95: L96: final String[] toAddresses = form.notificationTo.split(","); L97: final Map<String, Object> dataMap = new HashMap<>(); L98: dataMap.put("hostname", systemHelper.getHostname()); L99: L100: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L101: final Postbox postbox...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      12.8K bytes
  8. DocumentHelper.java

    L252: } L253: L254: public String appendLineNumber(final String prefix, final String content) { L255: if (StringUtil.isBlank(content)) { L256: return StringUtil.EMPTY; L257: } L258: final String[] values = content.split("\n"); L259: final StringBuilder buf = new StringBuilder((int) (content.length() * 1.3)); L260: buf.append(prefix).append(1).append(':').append(values[0]); L261: for (int i = 1; i < values.length; i++) { L262: buf.a...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      12K bytes
  9. DataConfig.java

    ERTY, userAgent); L162: } L163: L164: // web auth L165: final String webAuthStr = paramMap.get(CRAWLER_WEB_AUTH); L166: if (StringUtil.isNotBlank(webAuthStr)) { L167: final String[] webAuthNames = webAuthStr.split(","); L168: final List<Authentication> basicAuthList = new ArrayList<>(); L169: for (final String webAuthName : webAuthNames) { L170: final String scheme = paramMap.get(CRAWLER_WEB_AUTH + "." + webAuthName + ".scheme");...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:15 UTC 2024
      18.5K bytes
  10. FileListIndexUpdateCallbackImpl.java

    L253: // remove L254: String[] ignoreFields; L255: if (paramMap.containsKey("ignore.field.names")) { L256: ignoreFields = ((String) paramMap.get("ignore.field.names")).split(","); L257: } else { L258: ignoreFields = new String[] { Constants.INDEXING_TARGET, Constants.SESSION_ID }; L259: } L260: stream(ignoreFields).of(stream -> stream.map(...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      16.8K bytes
Back to top