Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 281 for salary (0.14 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ComponentAttributesDynamicVersionIntegrationTest.groovy

                failure.assertThatCause(containsNormalizedString("Incompatible because this component declares attribute 'quality' with value 'qa' and the consumer needed attribute 'quality' with value '$requested'"))
            }
    
            where:
            requested | outcome
            'qa'      | 'succeeds'
            'canary'  | 'fails'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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/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)
  7. 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)
  8. 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)
  9. 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)
  10. tensorflow/compiler/mlir/tensorflow/transforms/rewrite_util.h

    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    
    namespace mlir {
    namespace TF {
    
    // Returns int, float or complex DenseElementsAttr with scalar shape with the
    // given element type and the integer value.
    template <typename T>
    DenseElementsAttr GetScalarOfType(Type ty, T raw_value) {
      RankedTensorType scalar_ty = RankedTensorType::get({}, ty);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top