- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 49 for testtoken (0.05 seconds)
-
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java
protected EditBody createEditBody(final KuromojiItem entity, final String dictId) { final EditBody body = new EditBody(); body.id = entity.getId(); body.dictId = dictId; body.token = entity.getToken(); body.reading = entity.getReading(); body.pos = entity.getPos(); body.segmentation = entity.getSegmentation(); return body; }
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 9.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java
*/ public void setNewPos(final String newPos) { this.newPos = newPos; } /** * Returns the token. * * @return The token. */ public String getToken() { return token; } /** * Returns the segmentation. * * @return The segmentation. */ public String getSegmentation() { return segmentation;Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.3K bytes - Click Count (0) -
src/main/java/jcifs/http/Handler.java
final StringTokenizer tokenizer = new StringTokenizer(path, "|"); while (tokenizer.hasMoreTokens()) { final String provider = tokenizer.nextToken().trim(); if (provider.equals("jcifs")) { continue; } final String className = provider + "." + protocol + ".Handler";
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 6.9K bytes - Click Count (0) -
src/cmd/asm/internal/asm/parse.go
break } operands = operands1 p.symDefRef(w, word, operands) } return p.errorCount == 0 } // nextToken returns the next non-build-comment token from the lexer. // It reports misplaced //go:build comments but otherwise discards them. func (p *Parser) nextToken() lex.ScanToken { for { tok := p.lex.Next() if tok == lex.BuildComment { if p.sawCode {
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed Nov 12 03:59:40 GMT 2025 - 37.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsAccessTokenBhv.java
result.setParameterName(DfTypeUtil.toString(source.get("parameter_name"))); result.setPermissions(toStringArray(source.get("permissions"))); result.setToken(DfTypeUtil.toString(source.get("token"))); result.setUpdatedBy(DfTypeUtil.toString(source.get("updatedBy"))); result.setUpdatedTime(DfTypeUtil.toLong(source.get("updatedTime")));
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 9.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/accesstoken/ApiAdminAccesstokenAction.java
validateApi(body, messages -> {}); body.crudMode = CrudMode.CREATE; final AccessToken accessToken = getAccessToken(body).map(entity -> { entity.setToken(accessTokenHelper.generateAccessToken()); try { accessTokenService.store(entity); } catch (final Exception e) { logger.warn("Failed to process a request.", e);
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 8.3K bytes - Click Count (0) -
src/test/java/org/codelibs/core/lang/StringUtilTest.java
assertEquals("abc", StringUtil.substringToLast("abc", "dddd")); } /** * @throws Exception */ @Test public void testToHex() throws Exception { assertEquals("010203", StringUtil.toHex(new byte[] { 1, 2, 3 })); } /** * @throws Exception */ @Test public void testToHex2() throws Exception {
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat Nov 22 11:21:59 GMT 2025 - 11.4K bytes - Click Count (0) -
src/main/java/jcifs/Config.java
final int len = tok.countTokens(); final InetAddress[] arr = new InetAddress[len]; for (int i = 0; i < len; i++) { final String addr = tok.nextToken(); try { arr[i] = InetAddress.getByName(addr); } catch (final UnknownHostException uhe) { log.error("Unknown host " + addr, uhe);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 8.1K bytes - Click Count (0) -
impl/maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar
java.util.StringTokenizer cst; String cdelim; final boolean cdelimSingleChar; final char cdelimChar; boolean creturnDelims; String lastToken; boolean delimLast; public void EnhancedStringTokeni(String); public void EnhancedStringTokeni(String, String); public void EnhancedStringTokeni(String, String, boolean); public boolean hasMoreTokens(); private String internalNextToken(); public String nextToken(); private boolean isDelim(String); } org/codehaus/plexus/util/cli/StreamConsumer.class package org.codehaus.plexus.util.cli;...
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 164.6K bytes - Click Count (0) -
src/main/java/jcifs/config/BaseConfiguration.java
} else { final StringTokenizer st = new StringTokenizer(ro, ","); while (st.hasMoreTokens()) { final String s = st.nextToken().trim(); if (s.equalsIgnoreCase("LMHOSTS")) { this.resolverOrder.add(ResolverType.RESOLVER_LMHOSTS); } else if (s.equalsIgnoreCase("WINS")) {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 36.5K bytes - Click Count (0)