Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 319 for nInterface (0.07 sec)

  1. cmd/object-api-interface.go

    1. func (o *ObjectOptions) SetEvalRetentionBypassFn(f EvalRetentionBypassFn) {
    2. o.EvalRetentionBypassFn = f
    3. }
    4.  
    5. // ObjectLayer implements primitives for object API layer.
    6. type ObjectLayer interface {
    7. // Locking operations on object.
    8. NewNSLock(bucket string, objects ...string) RWLocker
    9.  
    10. // Storage operations.
    11. Shutdown(context.Context) error
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 22 21:57:20 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. internal/jwt/parser.go

    1. }
    2.  
    3. // Lookup returns the value and if the key is found.
    4. func (c *MapClaims) Lookup(key string) (value string, ok bool) {
    5. if c == nil {
    6. return "", false
    7. }
    8. var vinterface interface{}
    9. vinterface, ok = c.MapClaims[key]
    10. if ok {
    11. value, ok = vinterface.(string)
    12. }
    13. return
    14. }
    15.  
    16. // SetExpiry sets expiry in unix epoch secs
    17. func (c *MapClaims) SetExpiry(t time.Time) {
    18. c.MapClaims["exp"] = t.Unix()
    19. }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 17 16:45:46 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. schema/schema.go

    1. Relationships Relationships
    2. CreateClauses []clause.Interface
    3. QueryClauses []clause.Interface
    4. UpdateClauses []clause.Interface
    5. DeleteClauses []clause.Interface
    6. BeforeCreate, AfterCreate bool
    7. BeforeUpdate, AfterUpdate bool
    8. BeforeDelete, AfterDelete bool
    9. BeforeSave, AfterSave bool
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Thu Jun 20 12:19:31 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

    1. }
    2. }
    3.  
    4. // and interfaces
    5. Class<?>[] interfaces = clazz.getInterfaces();
    6.  
    7. for (Class<?> anInterface : interfaces) {
    8. Method interfaceMethod = getPublicMethod(anInterface, name, paramTypes);
    9.  
    10. if (interfaceMethod != null) {
    11. return interfaceMethod;
    12. }
    13. }
    14.  
    15. return null;
    16. }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. api/go1.21.txt

    1. pkg slices, func Replace[$0 interface{ ~[]$1 }, $1 interface{}]($0, int, int, ...$1) $0 #57433
    2. pkg slices, func Reverse[$0 interface{ ~[]$1 }, $1 interface{}]($0) #58565
    3. pkg slices, func Sort[$0 interface{ ~[]$1 }, $1 cmp.Ordered]($0) #60091
    4. pkg slices, func SortFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1, $1) int) #60091
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Aug 07 09:39:17 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  6. api/go1.8.txt

    1. pkg database/sql/driver, type RowsNextResultSet interface, NextResultSet() error
    2. pkg database/sql/driver, type RowsNextResultSet interface, Next([]Value) error
    3. pkg database/sql/driver, type StmtExecContext interface { ExecContext }
    4. pkg database/sql/driver, type StmtExecContext interface, ExecContext(context.Context, []NamedValue) (Result, error)
    5. pkg database/sql/driver, type StmtQueryContext interface { QueryContext }
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Dec 21 05:25:57 UTC 2016
    - 16.3K bytes
    - Viewed (0)
  7. statement.go

    1. Preloads map[string][]interface{}
    2. Settings sync.Map
    3. ConnPool ConnPool
    4. Schema *schema.Schema
    5. Context context.Context
    6. RaiseErrorOnNotFound bool
    7. SkipHooks bool
    8. SQL strings.Builder
    9. Vars []interface{}
    10. CurDestIndex int
    11. attrs []interface{}
    12. assigns []interface{}
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Mon Jun 24 09:42:59 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. migrator/migrator.go

    1. gorm.Dialector
    2. }
    3.  
    4. type printSQLLogger struct {
    5. logger.Interface
    6. }
    7.  
    8. func (l *printSQLLogger) Trace(ctx context.Context, begin time.Time, fc func() (sql string, rowsAffected int64), err error) {
    9. sql, _ := fc()
    10. fmt.Println(sql + ";")
    11. l.Interface.Trace(ctx, begin, fc, err)
    12. }
    13.  
    14. // GormDataTypeInterface gorm data type interface
    15. type GormDataTypeInterface interface {
    16. GormDBDataType(*gorm.DB, *schema.Field) string
    17. }
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  9. callbacks/create.go

    1. switch values := db.Statement.Dest.(type) {
    2. case map[string]interface{}:
    3. values[pkFieldName] = insertID
    4. case *map[string]interface{}:
    5. (*values)[pkFieldName] = insertID
    6. case []map[string]interface{}, *[]map[string]interface{}:
    7. mapValues, ok := values.([]map[string]interface{})
    8. if !ok {
    9. if v, ok := values.(*[]map[string]interface{}); ok {
    10. if *v != nil {
    11. mapValues = *v
    12. }
    13. }
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Mon Apr 08 03:29:55 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. association.go

    1. Unscope: true,
    2. }
    3. }
    4.  
    5. func (association *Association) Find(out interface{}, conds ...interface{}) error {
    6. if association.Error == nil {
    7. association.Error = association.buildCondition().Find(out, conds...).Error
    8. }
    9. return association.Error
    10. }
    11.  
    12. func (association *Association) Append(values ...interface{}) error {
    13. if association.Error == nil {
    14. switch association.Relationship.Type {
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top