Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 391 for salary (0.14 sec)

  1. tests/migrate_test.go

    	type UserMigrateColumn struct {
    		ID       uint
    		Name     string
    		Salary   float64
    		Birthday time.Time `gorm:"precision:4"`
    	}
    
    	DB.Migrator().DropTable(&UserMigrateColumn{})
    
    	DB.AutoMigrate(&UserMigrateColumn{})
    
    	type UserMigrateColumn2 struct {
    		ID                  uint
    		Name                string    `gorm:"size:128"`
    		Salary              float64   `gorm:"precision:2"`
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  2. internal/s3select/sql/analysis.go

    // row. They have an output for each input row.
    //
    // Some types of a queries are not valid. For example, an aggregation
    // function combined with a row function is meaningless ("AVG(s.Age) +
    // s.Salary"). Analysis determines if such a scenario exists so an
    // error can be returned.
    
    var (
    	// Fatal error for query processing.
    	errNestedAggregation      = errors.New("Cannot nest aggregations")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/scalar.go

    func (s *Scalar) Add(x, y *Scalar) *Scalar {
    	// s = 1 * x + y mod l
    	fiatScalarAdd(&s.s, &x.s, &y.s)
    	return s
    }
    
    // Subtract sets s = x - y mod l, and returns s.
    func (s *Scalar) Subtract(x, y *Scalar) *Scalar {
    	// s = -1 * y + x mod l
    	fiatScalarSub(&s.s, &x.s, &y.s)
    	return s
    }
    
    // Negate sets s = -x mod l, and returns s.
    func (s *Scalar) Negate(x *Scalar) *Scalar {
    	// s = -1 * x + 0 mod l
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/impl/scalars.h

    namespace tf {
    namespace libtf {
    namespace impl {
    
    /** A thin wrapper around a C++ scalar value.
     * This wrapper makes the scalar immutable.
     */
    template <typename T>
    class Scalar final {
     public:
      explicit Scalar(T x) : value_(x) {}
      Scalar(const Scalar<T>& o) : value_(o.value_) {}
    
      bool operator==(const Scalar<T>& o) const { return o.value_ == value_; }
    
      T get() const { return value_; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 30 17:28:28 UTC 2021
    - 2K bytes
    - Viewed (0)
  5. docs/en/docs/img/sponsors/scalar.svg

    scalar.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Nov 28 10:52:35 UTC 2023
    - 35.8K bytes
    - Viewed (0)
  6. docs/en/docs/img/sponsors/scalar-banner.svg

    scalar-banner.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Nov 28 10:52:35 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/v1/defaults_test.go

    					{Name: string(v1.ResourceCPU)},
    					{Name: "scalar.io/scalar0"},
    					{Name: "scalar.io/scalar1", Weight: 1},
    				},
    			},
    			want: &configv1.NodeResourcesBalancedAllocationArgs{
    				Resources: []configv1.ResourceSpec{
    					{Name: string(v1.ResourceCPU), Weight: 1},
    					{Name: "scalar.io/scalar0", Weight: 1},
    					{Name: "scalar.io/scalar1", Weight: 1},
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-scalar-input.pbtxt

    # Verify that we match correctly the input / output when they are scalar.
    
    # CHECK-LABEL: func @main
    # CHECK-SAME:  (%{{[a-z0-9]+}}: tensor<f32> {tf.device = "/device:CPU:0"})
    # CHECK-SAME:  control_outputs = ""
    # CHECK-SAME:  inputs = "input"
    # CHECK-SAME:  outputs = "out:1,out"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  9. src/crypto/elliptic/p256_test.go

    	p256 := P256()
    	p256Generic := genericParamsForCurve(p256)
    
    	scalars := make([]*big.Int, 0, len(p224BaseMultTests)+1)
    	for _, e := range p224BaseMultTests {
    		k, _ := new(big.Int).SetString(e.k, 10)
    		scalars = append(scalars, k)
    	}
    	k := new(big.Int).SetInt64(1)
    	k.Lsh(k, 500)
    	scalars = append(scalars, k)
    
    	for i, k := range scalars {
    		x, y := p256.ScalarBaseMult(k.Bytes())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 16:58:48 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/types_test.go

    				AllowedPodNumber: 80,
    				ScalarResources:  map[v1.ResourceName]int64{"scalar.test/scalar1": 1, "hugepages-test": 2},
    			},
    			expected: &Resource{
    				MilliCPU:         4,
    				Memory:           2000,
    				EphemeralStorage: 5000,
    				AllowedPodNumber: 80,
    				ScalarResources:  map[v1.ResourceName]int64{"scalar.test/scalar1": 1, "hugepages-test": 2},
    			},
    		},
    	}
    
    	for i, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
Back to top