- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 377 for sean (1.51 sec)
-
migrator/column_type.go
// Unique reports whether the column may be unique. func (ct ColumnType) Unique() (unique bool, ok bool) { return ct.UniqueValue.Bool, ct.UniqueValue.Valid } // ScanType returns a Go type suitable for scanning into using Rows.Scan. func (ct ColumnType) ScanType() reflect.Type { if ct.ScanTypeValue != nil { return ct.ScanTypeValue } return ct.SQLColumnType.ScanType() } // Comment returns the comment of current column.
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Mar 24 01:31:58 UTC 2022 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
}); } /** * Sets up the search conditions for user list queries based on pager criteria. * Configures the condition bean with search filters and ordering. * * @param cb the condition bean for the user query * @param userPager the pager containing search criteria */ protected void setupListCondition(final UserCB cb, final UserPager userPager) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.7K bytes - Viewed (0) -
cmd/data-scanner.go
// Skipped leaves have their totals transferred from the previous cycle. // // When selected there is a one in healObjectSelectProb that any object will be chosen for heal scan. // // Compaction happens when either: // // 1) The folder (and subfolders) contains less than dataScannerCompactLeastObject objects. // 2) The folder itself contains more than dataScannerCompactAtFolders folders.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 45.5K bytes - Viewed (0) -
tests/scopes_test.go
} var maxId int64 userTable := func(db *gorm.DB) *gorm.DB { return db.WithContext(context.Background()).Table("users") } if err := DB.Scopes(userTable).Select("max(id)").Scan(&maxId).Error; err != nil { t.Errorf("select max(id)") } } func TestComplexScopes(t *testing.T) { tests := []struct { name string queryFn func(tx *gorm.DB) *gorm.DB expected string }{
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Jan 12 08:42:21 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SearchLogService.java
} /** * Creates search conditions for search log queries based on pager criteria. * * @param pager The search log pager containing filter criteria * @param cb The search log condition bean to configure */ private void createSearchLogCondition(final SearchLogPager pager, final SearchLogCB cb) { if (StringUtil.isNotBlank(pager.queryId)) { cb.query().setQueryId_Term(pager.queryId);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 32.7K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AggregateFutureState.java
if (seenExceptions == null) { seenExceptions = newHashSet(); addInitialException(seenExceptions); } return seenExceptions; } abstract void addInitialException(Set<Throwable> seen); final int decrementRemainingAndGet() { return --remaining; } final void clearSeenExceptions() { seenExceptions = null; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 1.7K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/api/di/Singleton.java
*/ package org.apache.maven.api.di; import java.lang.annotation.Documented; import java.lang.annotation.Retention; import static java.lang.annotation.RetentionPolicy.RUNTIME; /** * Denotes that a bean should be created as a singleton instance. * <p> * Singleton-scoped beans are instantiated once and reused throughout the entire * Maven execution. This scope should be used for stateless services or components
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jan 30 23:28:59 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DataConfigService.java
op.setRefreshPolicy(Constants.TRUE); }); } /** * Sets up the search conditions for listing data configurations. * * <p>This method configures the condition bean with search criteria from the pager, * including name wildcards, handler name wildcards, and description matching. * Results are ordered by sort order and name in ascending order.</p> *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java
/** * Sets up the search conditions for retrieving file authentication configurations. * This method configures the query conditions and ordering for the database query. * * @param cb the condition bean for building the query * @param fileAuthenticationPager the pager containing search criteria */ protected void setupListCondition(final FileAuthenticationCB cb, final FileAuthPager fileAuthenticationPager) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
docs/iam/access-management-plugin.md
## Request and Response MinIO will make a `POST` request with a JSON body to the given plugin URL. If the auth token parameter is set, it will be sent as an authorization header. The JSON body structure can be seen from this sample: <details><summary>Request Body Sample</summary> ```json { "input": { "account": "minio", "groups": null, "action": "s3:ListBucket", "bucket": "test",
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Dec 13 22:28:48 UTC 2022 - 4.4K bytes - Viewed (1)