Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ZeroValue (0.45 sec)

  1. soft_delete.go

    	return []clause.Interface{SoftDeleteQueryClause{Field: f, ZeroValue: parseZeroValueTag(f)}}
    }
    
    func parseZeroValueTag(f *schema.Field) sql.NullString {
    	if v, ok := f.TagSettings["ZEROVALUE"]; ok {
    		if _, err := now.Parse(v); err == nil {
    			return sql.NullString{String: v, Valid: true}
    		}
    	}
    	return sql.NullString{Valid: false}
    }
    
    type SoftDeleteQueryClause struct {
    	ZeroValue sql.NullString
    	Field     *schema.Field
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 01 06:40:55 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/conversion/queryparams/convert.go

    		reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Float32,
    		reflect.Float64, reflect.Complex64, reflect.Complex128:
    		return true
    	default:
    		return false
    	}
    }
    
    func zeroValue(value reflect.Value) bool {
    	return reflect.DeepEqual(reflect.Zero(value.Type()).Interface(), value.Interface())
    }
    
    func customMarshalValue(value reflect.Value) (reflect.Value, bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/sets/set.go

    	}
    	return res
    }
    
    // PopAny returns a single element from the set.
    func (s Set[T]) PopAny() (T, bool) {
    	for key := range s {
    		s.Delete(key)
    		return key, true
    	}
    	var zeroValue T
    	return zeroValue, false
    }
    
    // Len returns the size of the set.
    func (s Set[T]) Len() int {
    	return len(s)
    }
    
    func less[T cmp.Ordered](lhs, rhs T) bool {
    	return lhs < rhs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:51:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. tests/soft_delete_test.go

    	}
    }
    
    func TestSoftDeleteZeroValue(t *testing.T) {
    	type SoftDeleteBook struct {
    		ID        uint
    		Name      string
    		Pages     uint
    		DeletedAt gorm.DeletedAt `gorm:"zeroValue:'1970-01-01 00:00:01'"`
    	}
    	DB.Migrator().DropTable(&SoftDeleteBook{})
    	if err := DB.AutoMigrate(&SoftDeleteBook{}); err != nil {
    		t.Fatalf("failed to auto migrate soft delete table")
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 01 06:40:55 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    	if offset >= len(src) {
    		return end
    	}
    	if width := bytes.IndexAny(src[offset:], " \n,():;[]+-*"); width > 0 {
    		end = start + token.Pos(width)
    	}
    	return end
    }
    
    func ZeroValue(f *ast.File, pkg *types.Package, typ types.Type) ast.Expr {
    	// TODO(adonovan): think about generics, and also generic aliases.
    	under := aliases.Unalias(typ)
    	// Don't call Underlying unconditionally: although it removes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. src/internal/fuzz/fuzz.go

    	c.warmupInputLeft = c.warmupInputCount
    
    	if len(c.corpus.entries) == 0 {
    		fmt.Fprintf(c.opts.Log, "warning: starting with empty corpus\n")
    		var vals []any
    		for _, t := range opts.Types {
    			vals = append(vals, zeroValue(t))
    		}
    		data := marshalCorpusFile(vals...)
    		h := sha256.Sum256(data)
    		name := fmt.Sprintf("%x", h[:4])
    		c.addCorpusEntries(false, CorpusEntry{Path: name, Data: data})
    	}
    
    	return c, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top