- Sort Score
- Result 10 results
- Languages All
Results 781 - 790 of 1,456 for created (0.04 sec)
-
BsFileConfig.java
eter"); L265: this.configParameter = value; L266: } L267: L268: public String getCreatedBy() { L269: checkSpecifiedProperty("createdBy"); L270: return convertEmptyToNull(createdBy); L271: } L272: L273: public void setCreatedBy(String value) { L274: registerModifiedProperty("createdBy"); L275: this.createdBy = value; L276: } L277: L278: public Long getCreatedTime() { L279: checkSpecifiedProperty("createdTime"); L280: return createdTime;...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 13.7K bytes -
BsThumbnailQueueCQ.java
createdBy, ConditionOptionCall<TermQueryBuilder> opLambda) { L203: TermQueryBuilder builder = regTermQ("createdBy", createdBy); L204: if (opLambda != null) { L205: opLambda.callback(builder); L206: } L207: } L208: L209: public void setCreatedBy_NotEqual(String createdBy) { L210: setCreatedBy_NotTerm(createdBy, null); L211: } L212: L213: public void setCreatedBy_NotTerm(String createdBy) { L214: setCreatedBy_NotTerm(createdBy, null); L215:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 51.1K bytes -
AdminSearchlistAction.java
LOBAL, form.id), this::asListHtml); L264: }); L265: saveToken(); L266: return asEditHtml(); L267: } L268: L269: @Execute L270: @Secured({ ROLE }) L271: public HtmlResponse create(final CreateForm form) { L272: verifyCrudMode(form.crudMode, CrudMode.CREATE); L273: validate(form, messages -> {}, this::asEditHtml); L274: validateFields(form.doc, v -> throwValidationError(v, this::asEditHtml)); L275: verifyToken(this::asEditHtml); L276: ...github.com/codelibs/fess/src/main/java/org/code...Wed Jul 24 09:03:45 UTC 2024 18.3K bytes -
AdminDictMappingAction.java
L282: // Actually Crud L283: // ------------- L284: @Execute L285: @Secured({ ROLE }) L286: public HtmlResponse create(final CreateForm form) { L287: verifyCrudMode(form.crudMode, CrudMode.CREATE, form.dictId); L288: validate(form, messages -> {}, this::asEditHtml); L289: verifyToken(this::asEditHtml); L290: createCharMappingItem(form, this::asEditHtml).ifPresent(entity -> { L291:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 19.5K bytes -
SetsTest.java
TestSuite(); L122: suite.addTestSuite(SetsTest.class); L123: L124: suite.addTest( L125: SetTestSuiteBuilder.using( L126: new TestStringSetGenerator() { L127: @Override L128: protected Set<String> create(String[] elements) { L129: return Sets.newConcurrentHashSet(asList(elements)); L130: } L131: }) L132: .named("Sets.newConcurrentHashSet") L133: .withFeatures(CollectionSize.ANY,...github.com/google/guava/guava-tests/test/com/go...Wed Oct 30 16:15:19 UTC 2024 48.6K bytes -
SafeTreeMapTest.java
suite.addTestSuite(SafeTreeMapTest.class); L48: suite.addTest( L49: NavigableMapTestSuiteBuilder.using( L50: new TestStringSortedMapGenerator() { L51: @Override L52: protected SortedMap<String, String> create(Entry<String, String>[] entries) { L53: NavigableMap<String, String> map = new SafeTreeMap<>(Ordering.natural()); L54: for (Entry<String, String> entry : entries) { L55: map.put(entry.getKey(),...github.com/google/guava/android/guava-testlib/t...Fri Mar 18 18:06:40 UTC 2022 4.4K bytes -
SafeTreeMapTest.java
suite.addTestSuite(SafeTreeMapTest.class); L48: suite.addTest( L49: NavigableMapTestSuiteBuilder.using( L50: new TestStringSortedMapGenerator() { L51: @Override L52: protected SortedMap<String, String> create(Entry<String, String>[] entries) { L53: NavigableMap<String, String> map = new SafeTreeMap<>(Ordering.natural()); L54: for (Entry<String, String> entry : entries) { L55: map.put(entry.getKey(),...github.com/google/guava/guava-testlib/test/com/...Fri Mar 18 18:06:40 UTC 2022 4.4K bytes -
ListenableFuture.java
L70: * <p>We encourage you to return {@code ListenableFuture} from your methods so that your users can L71: * take advantage of the {@linkplain Futures utilities built atop the class}. The way that you will L72: * create {@code ListenableFuture} instances depends on how you currently create {@code Future} L73: * instances: L74: * L75: * <ul> L76: * <li>If you receive them from an {@code java.util.concurrent.ExecutorService}, convert that L77: * service to a {@link ListeningExecutorService},...github.com/google/guava/android/guava/src/com/g...Mon Jun 26 21:13:41 UTC 2023 8K bytes -
FeatureSpecificTestSuiteBuilder.java
L40:import java.util.Set; L41:import java.util.logging.Logger; L42:import junit.framework.Test; L43:import junit.framework.TestCase; L44:import junit.framework.TestSuite; L45:import org.checkerframework.checker.nullness.qual.Nullable; L46: L47:/** L48: * Creates, based on your criteria, a JUnit test suite that exhaustively tests the object generated L49: * by a G, selecting appropriate tests by matching them against specified features. L50: * L51: * @param <B> The concrete type of this builder (the 'self-type')....github.com/google/guava/android/guava-testlib/s...Wed Oct 30 16:15:19 UTC 2024 10.4K bytes -
MathBenchmarking.java
* Generates a number in [0, 2^numBits) with an exponential distribution. The floor of the log2 of L92: * the result is chosen uniformly at random in [0, numBits), and then the result is chosen in that L93: * range uniformly at random. Zero is treated as having log2 == 0. L94: */ L95: static BigInteger randomNonNegativeBigInteger(int numBits) { L96: int digits = RANDOM_SOURCE.nextInt(numBits); L97: if (digits == 0) { L98: return new BigInteger(1, RANDOM_SOURCE); L99: } else { L100:...github.com/google/guava/guava-tests/test/com/go...Mon Dec 04 17:37:03 UTC 2017 4.1K bytes