Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 391 for salary (0.15 sec)

  1. pkg/scheduler/apis/config/scheme/scheme_test.go

            - name: memory    # weight 0 will be replaced by 1.
              weight: 0
            - name: scalar0
              weight: 1
            - name: scalar1   # default weight(1) will be set for scalar1
            - name: scalar2   # weight 0 will be replaced by 1.
              weight: 0
            - name: scalar3
              weight: 2
    `),
    			wantProfiles: []config.KubeSchedulerProfile{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch_test.go

            - 2
            - 3
      - description: patch with different scalar type
        original:
          foo: 1
        modified:
          foo: true
        current:
          foo: 1
          bar: 2
        threeWay:
          foo: true
        result:
          foo: true
          bar: 2
      - description: patch from scalar to list
        original:
          foo: 0
        modified:
          foo:
          - 1
          - 2
        current:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/ops.h

      /// construct an Initializer. Initializer stores the value it got constructed
      /// with in a Tensor object.
      struct Initializer {
        /// Construct from a scalar value of an arithmetic type or a type that can
        /// be converted to a string (eg. a string literal).
        template <typename T, typename = typename std::enable_if<
                                  std::is_arithmetic<T>::value ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. src/crypto/ecdh/nist.go

    	// invalid points and the point at infinity, and NewPrivateKey rejects
    	// invalid scalars and the zero value. BytesX returns an error for the point
    	// at infinity, but in a prime order group such as the NIST curves that can
    	// only be the result of a scalar multiplication if one of the inputs is the
    	// zero scalar or the point at infinity.
    
    	if boring.Enabled {
    		return boring.ECDH(local.boring, remote.boring)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

        istio: sidecar-injector
        operator.istio.io/component: Injector
        operator.istio.io/managed: Reconcile
        operator.istio.io/version: 1.3.1
        release: istio
      name: istio-sidecar-injector-canary
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/common/maplist.go

    	v, ok := obj[ks.key]
    	if !ok {
    		return nil, false
    	}
    
    	switch v.(type) {
    	case bool, float64, int64, string:
    		return v, true
    	default:
    		return nil, false // non-scalar
    	}
    }
    
    // multiKeyStrategy computes a composite key of all key values.
    type multiKeyStrategy struct {
    	sts Schema
    }
    
    // CompositeKeyFor returns a composite key computed from the values of all
    // keys.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 02:56:51 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_test.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    		},
    		"removed only": {
    			Original: `{"name":"foo","scalar":true,"complex":{"nested":true}}`,
    			Current:  `{"name":"foo","scalar":true,"complex":{"nested":true},"array":[1,2,3]}`,
    			Modified: `{"name":"foo"}`,
    
    			ExpectedTwoWay:         `{"complex":null,"scalar":null}`,
    			ExpectedTwoWayResult:   `{"name":"foo"}`,
    			ExpectedThreeWay:       `{"complex":null,"scalar":null}`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/scalar_alias_test.go

    			return checkAliasingTwoArgs(func(v, x, y *Scalar) *Scalar {
    				return v.MultiplyAdd(&fixed, x, y)
    			}, v, x, y)
    		},
    		"MultiplyAdd2": func(v, x, y, fixed Scalar) bool {
    			return checkAliasingTwoArgs(func(v, x, y *Scalar) *Scalar {
    				return v.MultiplyAdd(x, &fixed, y)
    			}, v, x, y)
    		},
    		"MultiplyAdd3": func(v, x, y, fixed Scalar) bool {
    			return checkAliasingTwoArgs(func(v, x, y *Scalar) *Scalar {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/nistec_test.go

    	testenv.SkipIfOptimizationOff(t)
    
    	t.Run("P224", func(t *testing.T) {
    		if allocs := testing.AllocsPerRun(10, func() {
    			p := nistec.NewP224Point().SetGenerator()
    			scalar := make([]byte, 28)
    			rand.Read(scalar)
    			p.ScalarBaseMult(scalar)
    			p.ScalarMult(p, scalar)
    			out := p.Bytes()
    			if _, err := nistec.NewP224Point().SetBytes(out); err != nil {
    				t.Fatal(err)
    			}
    			out = p.BytesCompressed()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 18:48:23 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top