- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 195 for insertID (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
callbacks/create.go
return } pkField = db.Statement.Schema.PrioritizedPrimaryField pkFieldName = db.Statement.Schema.PrioritizedPrimaryField.DBName } insertID, err := result.LastInsertId() insertOk := err == nil && insertID > 0 if !insertOk { if !supportReturning { db.AddError(err) } return } // append @id column with value for auto-increment primary key
Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Tue Jul 29 11:06:13 GMT 2025 - 13K bytes - Click Count (0) -
clause/insert.go
package clause type Insert struct { Table Table Modifier string } // Name insert clause name func (insert Insert) Name() string { return "INSERT" } // Build build insert clause func (insert Insert) Build(builder Builder) { if insert.Modifier != "" { builder.WriteString(insert.Modifier) builder.WriteByte(' ') } builder.WriteString("INTO ") if insert.Table.Name == "" {Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Mon Mar 09 09:07:00 GMT 2020 - 767 bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.13.md
### SIG GCP - Added tolerations for Stackdriver Logging and Metadata Agents. ([#69737](https://github.com/kubernetes/kubernetes/pull/69737), [@qingling128](https://github.com/qingling128))
Created: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Thu May 05 13:44:43 GMT 2022 - 273.1K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/concurrent/TaskQueue.kt
} } // Insert in chronological order. Always compare deltas because nanoTime() is permitted to wrap. var insertAt = futureTasks.indexOfFirst { it.nextExecuteNanoTime - now > delayNanos } if (insertAt == -1) insertAt = futureTasks.size futureTasks.add(insertAt, task) // Impact the coordinator if we inserted at the front. return insertAt == 0 } /**Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed May 28 23:28:25 GMT 2025 - 7.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/auth/AuthenticationManager.java
* Default constructor for AuthenticationManager. */ public AuthenticationManager() { // Default constructor } /** * Inserts a new user across all authentication chains. * @param user The user to insert. */ public void insert(final User user) { chains().of(stream -> stream.forEach(c -> c.update(user))); } /**Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.1K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/UrlQueueService.java
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 2.6K bytes - Click Count (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java
urlQueue.setMethod(Constants.GET_METHOD); insert(urlQueue); } /** * Inserts a URL queue entry into the OpenSearch index. * * @param urlQueue The URL queue entry to insert. */ @Override public void insert(final OpenSearchUrlQueue urlQueue) { try { super.insert(urlQueue, urlQueue.getId() == null ? OpType.CREATE : OpType.INDEX);
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Nov 20 08:40:57 GMT 2025 - 16.9K bytes - Click Count (1) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
throw new CrawlingAccessException("[" + e.status() + "] Failed to insert " + id, e); } throw new OpenSearchAccessException("[" + e.status() + "] Failed to insert " + id, e); } catch (final Exception e) { throw new OpenSearchAccessException("Failed to insert " + id, e); } } /** * Inserts multiple documents into the OpenSearch index using bulk operations. *
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Nov 20 08:40:57 GMT 2025 - 34.3K bytes - Click Count (0) -
cmd/benchmark-utils_test.go
// create bucket. err = obj.MakeBucket(b.Context(), bucket, MakeBucketOptions{}) if err != nil { b.Fatal(err) } objSize := 128 * humanize.MiByte // PutObjectPart returns etag of the object inserted. // etag variable is assigned with that value. var etag string // get text data generated for number of bytes equal to object size. textData := generateBytesData(objSize) // generate md5sum for the generated data.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 8.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
} }); } /** * Inserts or updates a user in LDAP directory. * * @param user the user object to insert or update */ public void insert(final User user) { if (!fessConfig.isLdapAdminEnabled(user.getName())) { return; }Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 86.3K bytes - Click Count (0)