- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 508 for stopTs (0.04 sec)
-
cmd/object-handlers.go
// to compute it server-side, with the same type as the source object. if dstOpts.WantChecksum != nil && dstOpts.WantChecksum.Type.IsMultipartComposite() { dstOpts.WantServerSideChecksumType = dstOpts.WantChecksum.Type.Base() srcInfo.Reader.AddServerSideChecksumHasher(dstOpts.WantServerSideChecksumType) dstOpts.WantChecksum = nil } } else {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Sep 07 16:13:09 UTC 2025 - 120.6K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ProjectScopeProvider.java
* <p> * This interface allows plugins and extensions to define and register additional project scopes * beyond the standard {@link ProjectScope#MAIN} and {@link ProjectScope#TEST} scopes. * Implementations of this interface will be discovered through the Java ServiceLoader mechanism * and their provided project scopes will be available throughout the Maven build process. * <p> * Example usage: * <pre>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/timer/TimeoutManager.java
thread.start(); if (logger.isDebugEnabled()) { logger.debug("TimeoutManager started."); } } } /** * Stops the process. */ public synchronized void stop() { if (thread != null) { thread.interrupt(); thread = null; if (logger.isDebugEnabled()) { logger.debug("TimeoutManager stopped.");
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 7.8K bytes - Viewed (0) -
cmd/object-multipart-handlers.go
if err != nil { writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL) return } if dstOpts.IndexCB != nil { dstOpts.IndexCB = compressionIndexEncrypter(objectEncryptionKey, dstOpts.IndexCB) } } srcInfo.PutObjReader = pReader copyObjectPart := objectAPI.CopyObjectPart // Copy source object to destination, if source and destination
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Sep 07 16:13:09 UTC 2025 - 39.5K bytes - Viewed (0) -
statement.go
} if len(stmt.Joins) > 0 { newStmt.Joins = make([]join, len(stmt.Joins)) copy(newStmt.Joins, stmt.Joins) } if len(stmt.scopes) > 0 { newStmt.scopes = make([]func(*DB) *DB, len(stmt.scopes)) copy(newStmt.scopes, stmt.scopes) } stmt.Settings.Range(func(k, v interface{}) bool { newStmt.Settings.Store(k, v) return true }) return newStmt }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Sep 04 13:13:16 UTC 2025 - 20.8K bytes - Viewed (0) -
cmd/bucket-replication.go
if _, ok := lkMap.Lookup(xhttp.AmzObjectLockLegalHold); ok { dstOpts.Internal.LegalholdTimestamp = objInfo.ModTime } if _, ok := lkMap.Lookup(xhttp.AmzObjectLockRetainUntilDate); ok { dstOpts.Internal.RetentionTimestamp = objInfo.ModTime } if objInfo.UserTags != "" { dstOpts.Internal.TaggingTimestamp = objInfo.ModTime }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 118K bytes - Viewed (0) -
chainable_api.go
// return func (db *gorm.DB) *gorm.DB { // return db.Scopes(AmountGreaterThan1000).Where("status in (?)", status) // } // } // // db.Scopes(AmountGreaterThan1000, OrderStatus([]string{"paid", "shipped"})).Find(&orders) func (db *DB) Scopes(funcs ...func(*DB) *DB) (tx *DB) { tx = db.getInstance() tx.Statement.scopes = append(tx.Statement.scopes, funcs...) return tx }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sun May 25 07:40:40 UTC 2025 - 14.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
* to register, retrieve, and discover available data stores. * * <p>Data stores are registered by name and class name, allowing flexible lookup. * The factory also supports dynamic discovery of data store plugins by scanning * JAR files for data store configurations.</p> * * <p>Thread-safe operations are supported for registration and retrieval of data stores.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/PathScopeProvider.java
* This interface allows plugins and extensions to define and register additional path scopes * beyond the standard ones provided by Maven. Path scopes define how dependencies are used * in different contexts, such as compilation, testing, or runtime. * <p> * Implementations of this interface will be discovered through the Java ServiceLoader mechanism * and their provided path scopes will be available throughout the Maven build process. * <p> * Example usage:
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 2.1K bytes - Viewed (0) -
src/packaging/rpm/init.d/fess
#!/bin/sh # # fess <summary> # # chkconfig: 2345 80 20 # description: Starts and stops a single fess instance on this system # ### BEGIN INIT INFO # Provides: Fess # Required-Start: $network $named # Required-Stop: $network $named # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: This service manages the fess daemon
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 3.7K bytes - Viewed (0)