- Sort Score
- Result 10 results
- Languages All
Results 2031 - 2040 of 6,150 for string (0.09 sec)
-
src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsPathMappingCA.java
} } public void scriptedMetric(String name, ConditionOptionCall<ScriptedMetricAggregationBuilder> opLambda) { ScriptedMetricAggregationBuilder builder = regScriptedMetricA(name); if (opLambda != null) { opLambda.callback(builder); } } public void topHits(String name, ConditionOptionCall<TopHitsAggregationBuilder> opLambda) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 59.9K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/ClassExtensionMetaData.groovy
package gradlebuild.docs.dsl.docbook.model class ClassExtensionMetaData { final String targetClass final Set<MixinMetaData> mixinClasses = [] final Set<ExtensionMetaData> extensionClasses = [] ClassExtensionMetaData(String targetClass) { this.targetClass = targetClass } def void addMixin(String plugin, String mixinClass) { mixinClasses.add(new MixinMetaData(plugin, mixinClass)) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FessUser.java
*/ package org.codelibs.fess.entity; import java.io.Serializable; public interface FessUser extends Serializable { String getName(); String[] getRoleNames(); String[] getGroupNames(); String[] getPermissions(); default boolean isEditable() { return false; } default boolean refresh() { return false; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 978 bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/AcceptedApiChange.groovy
* limitations under the License. */ package gradlebuild.binarycompatibility import groovy.transform.Immutable import groovy.transform.ToString @Immutable @ToString class AcceptedApiChange { String type String member String acceptation List<String> changes ApiChange toApiChange() { return new ApiChange(type, member, changes ?: []) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 952 bytes - Viewed (0) -
src/main/java/org/codelibs/core/crypto/CachedCipher.java
import org.codelibs.core.misc.Base64Util; public class CachedCipher { private static final String BLOWFISH = "Blowfish"; private static final String RSA = "RSA"; protected String algorithm = BLOWFISH; protected String transformation = RSA; protected String key; protected String charsetName = CoreLibConstants.UTF_8; protected Queue<Cipher> encryptoQueue = new ConcurrentLinkedQueue<>();
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 8.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/FilesTest.java
File temp = createTempFile(); LineProcessor<List<String>> collect = new LineProcessor<List<String>>() { List<String> collector = new ArrayList<>(); @Override public boolean processLine(String line) { collector.add(line); return true; } @Override public List<String> getResult() { return collector; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 22.1K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTestSupport.java
Path pom = cwd.resolve("pom.xml").toAbsolutePath(); Files.writeString(pom, pomString); String appJavaString = """ package org.apache.maven.samples.sample; public class App { public static void main(String... args) { System.out.println("Hello World!"); } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/cbean/ca/bs/BsUserCA.java
} } public void scriptedMetric(String name, ConditionOptionCall<ScriptedMetricAggregationBuilder> opLambda) { ScriptedMetricAggregationBuilder builder = regScriptedMetricA(name); if (opLambda != null) { opLambda.callback(builder); } } public void topHits(String name, ConditionOptionCall<TopHitsAggregationBuilder> opLambda) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 212.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryPathInformationResponse.java
bufferIndex += 2; this.info = info; return bufferIndex - start; } public String toString() { return new String( "Trans2QueryPathInformationResponse[" + super.toString() + "]" ); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java
} public void addClient(final List<String> regexList, final CrawlerClient client) { if (regexList == null || regexList.isEmpty()) { throw new CrawlerSystemException("A regular expression list is null or empty."); } if (client == null) { throw new CrawlerSystemException("CrawlerClient is null."); } for (final String regex : regexList) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 4.7K bytes - Viewed (0)