Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 334 for salary (0.11 sec)

  1. pkg/config/analysis/analyzers/testdata/sidecar-default-selector.yaml

        istio-injection: enabled
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
      name: ns-not-ambient-rev
      labels:
        istio.io/dataplane-mode: ambient
        istio.io/rev: canary
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: namespace-not-ambient
      namespace: ns-not-ambient
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 23 13:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. tests/test_compat.py

    
    @needs_pydanticv1
    def test_union_scalar_list():
        # For coverage
        # TODO: there might not be a current valid code path that uses this, it would
        # potentially enable query parameters defined as both a scalar and a list
        # but that would require more refactors, also not sure it's really useful
        from fastapi._compat import is_pv1_scalar_field
    
        field_info = FieldInfo()
        field = ModelField(
            name="foo",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. src/internal/pkgbits/decoder.go

    	r.Sync(SyncValue)
    	isComplex := r.Bool()
    	val := r.scalar()
    	if isComplex {
    		val = constant.BinaryOp(val, token.ADD, constant.MakeImag(r.scalar()))
    	}
    	return val
    }
    
    func (r *Decoder) scalar() constant.Value {
    	switch tag := CodeVal(r.Code(SyncVal)); tag {
    	default:
    		panic(fmt.Errorf("unexpected scalar tag: %v", tag))
    
    	case ValBool:
    		return constant.MakeBool(r.Bool())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 20:58:46 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.js

    	});
    
    	if(navigator.userAgent.toLowerCase().indexOf('webkit') >= 0)
    		window.addEventListener('mousewheel', handleMouseWheel, false); // Chrome/Safari
    	else
    		window.addEventListener('DOMMouseScroll', handleMouseWheel, false); // Others
    }
    
    /**
     * Retrieves the root element for SVG manipulation. The element is then cached into the svgRoot global variable.
     */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/aot_only_var_handle_op.cc

        .Attr("dtype: type")
        .Attr("shape: shape")
        .Output("resource: resource")
        .SetIsStateful()
        .SetShapeFn([](shape_inference::InferenceContext* c) {
          c->set_output(0, c->Scalar());
          DataType t;
          TF_RETURN_IF_ERROR(c->GetAttr("dtype", &t));
          PartialTensorShape p;
          TF_RETURN_IF_ERROR(c->GetAttr("shape", &p));
          shape_inference::ShapeHandle s;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 09:57:04 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_function_test.cc

      Run({{func_feed, Int32Tensor(3)}}, func_op, 2 + 3);
      VerifyFDef(
          {"add_0", "scalar"}, M({{"feed1"}, {"feed2"}}), M({{"add"}}),
          {{"feed1", "add_0:0"}, {"feed2", "add_0:1"}, {"add_0:sum:0", "add"}},
          {{"^scalar", "add_0:2"}});
    }
    
    TEST_F(CApiFunctionTest, ControlDependencyOutsideOfBody) {
      /*
       *                  |  |    scalar
       *                  |  |    .
       *                  v  v   . <---- control dependency
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  7. tensorflow/c/tf_datatype.h

    #include <stddef.h>
    
    #include "tensorflow/c/c_api_macros.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    // --------------------------------------------------------------------------
    // TF_DataType holds the type for a scalar value.  E.g., one slot in a tensor.
    // The enum values here are identical to corresponding values in types.proto.
    typedef enum TF_DataType {
      TF_FLOAT = 1,
      TF_DOUBLE = 2,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:13:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ScalarTypesInManagedModelTest.groovy

    class ScalarTypesInManagedModelTest extends ProjectRegistrySpec {
    
        def classLoader = new GroovyClassLoader(this.class.classLoader)
    
        def "cannot have read only property of scalar type #someType.simpleName"() {
    
            when:
            def clazz = classLoader.parseClass """
                import org.gradle.api.artifacts.Configuration.State
                import org.gradle.model.Managed
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. tests/integration/pilot/cross_revision_test.go

    // This allows a conformance-style tests against existing installations in the cluster.
    // The test is completely skipped if ISTIO_TEST_EXTRA_REVISIONS is not set
    // To run, add each revision to test. eg `ISTIO_TEST_EXTRA_REVISIONS=canary,my-rev`.
    func TestRevisionTraffic(t *testing.T) {
    	rawExtraRevs, f := os.LookupEnv("ISTIO_TEST_EXTRA_REVISIONS")
    	if !f {
    		t.Skip("ISTIO_TEST_EXTRA_REVISIONS not specified")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. src/crypto/ecdh/ecdh.go

    	// checking that the result is lower than the order of the curve. The zero
    	// private key is also rejected, as the encoding of the corresponding public
    	// key would be irregular.
    	//
    	// For X25519, this only checks the scalar length.
    	NewPrivateKey(key []byte) (*PrivateKey, error)
    
    	// NewPublicKey checks that key is valid and returns a PublicKey.
    	//
    	// For NIST curves, this decodes an uncompressed point according to SEC 1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top