- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 2,758 for createId (0.35 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsElevateWordBhv.java
public int selectCount(CBCall<ElevateWordCB> cbLambda) { return facadeSelectCount(createCB(cbLambda)); } public OptionalEntity<ElevateWord> selectEntity(CBCall<ElevateWordCB> cbLambda) { return facadeSelectEntity(createCB(cbLambda)); } protected OptionalEntity<ElevateWord> facadeSelectEntity(ElevateWordCB cb) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsPathMappingBhv.java
public int selectCount(CBCall<PathMappingCB> cbLambda) { return facadeSelectCount(createCB(cbLambda)); } public OptionalEntity<PathMapping> selectEntity(CBCall<PathMappingCB> cbLambda) { return facadeSelectEntity(createCB(cbLambda)); } protected OptionalEntity<PathMapping> facadeSelectEntity(PathMappingCB cb) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProblemCollector.java
int limit = Integer.parseInt(protoSession.getUserProperties().get(Constants.MAVEN_BUILDER_MAX_PROBLEMS)); return create(limit, p -> true); } else { return create(100); } } /** * Creates new instance of problem collector with the specified maximum problem count limit, * but only preserves problems that match the given filter. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jul 18 17:30:19 UTC 2025 - 11.4K bytes - Viewed (0) -
docs/multi-user/README.md
} EOF ``` Create new canned policy by name `getonly` using `getonly.json` policy file. ``` mc admin policy create myminio getonly getonly.json ``` Create a new user `newuser` on MinIO use `mc admin user`. ``` mc admin user add myminio newuser newuser123 ``` Once the user is successfully created you can now apply the `getonly` policy for this user. ``` mc admin policy attach myminio getonly --user=newuser
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableSortedMultiset.java
*/ public static class Builder<E> extends ImmutableMultiset.Builder<E> { /** * Creates a new builder. The returned builder is equivalent to the builder generated by {@link * ImmutableSortedMultiset#orderedBy(Comparator)}. */ public Builder(Comparator<? super E> comparator) { super(TreeMultiset.<E>create(checkNotNull(comparator))); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 29.5K bytes - Viewed (0) -
tests/create_test.go
) func TestCreate(t *testing.T) { u1 := *GetUser("create", Config{}) if results := DB.Create(&u1); results.Error != nil { t.Fatalf("errors happened when create: %v", results.Error) } else if results.RowsAffected != 1 { t.Fatalf("rows affected expects: %v, got %v", 1, results.RowsAffected) } if u1.ID == 0 { t.Errorf("user's primary key should has value after create, got : %v", u1.ID) } if u1.CreatedAt.IsZero() {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jul 21 09:55:20 UTC 2025 - 26.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/container/StandardCrawlerContainer.java
* </ul> * * <p>Components can be registered in two ways: * <ul> * <li>As singletons, where one instance is shared throughout the container's lifecycle</li> * <li>As prototypes, where a new instance is created each time the component is requested</li> * </ul> * * <p>The container supports component initialization and destruction through consumer functions, * allowing custom setup and cleanup operations for components. *
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java
/** * Creates a new elevate word entry. * * @param form create form containing new elevate word data * @return redirect response to the main elevate word page */ @Execute @Secured({ ROLE }) public HtmlResponse create(final CreateForm form) { verifyCrudMode(form.crudMode, CrudMode.CREATE); validate(form, messages -> {}, this::asEditHtml);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.6K bytes - Viewed (0) -
.github/workflows/issue-on-pr-rollback.yml
# limitations under the License. # ============================================================================== name: Creates a GitHub Issue when a PR Rolled back via Commit to Master on: push: branches: - master permissions: {} jobs: create-issue-on-pr-rollback: runs-on: ubuntu-latest permissions: contents: read issues: write pull-requests: read
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Sep 01 15:40:11 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/WriterUtil.java
*/ protected WriterUtil() { } /** * Creates a {@link Writer} to output to a stream with the specified encoding. * * @param os the stream (must not be {@literal null}) * @param encoding the encoding (must not be {@literal null} or empty) * @return a {@link Writer} to output to the stream */ public static Writer create(final OutputStream os, final String encoding) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0)