Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 391 for salary (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

        ConvertToTensorShapeProto(tensor_type.getShape(), &tensor_shape_proto);
        return PartialTensorShape(tensor_shape_proto);
      }
    
      // If type is not a RankedTensor or UnrankedTensor, it must be a scalar.
      // Empty TensorShape indicates a scalar.
      return TensorShape();
    }
    
    mlir::TF::ShapeAttr ConvertTypeToTensorShapeAttr(const mlir::Type& type) {
      if (mlir::isa<mlir::UnrankedTensorType>(type)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/extract_test.go

      map:
        fields:
        - name: apiVersion
          type:
            scalar: string
        - name: fieldsType
          type:
            scalar: string
        - name: fieldsV1
          type:
            namedType: io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1
        - name: manager
          type:
            scalar: string
        - name: operation
          type:
            scalar: string
        - name: time
          type:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 22 22:32:45 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/fake_session.cc

          t.scalar<tensorflow::ResourceHandle>()().set_name("var1");
          t.scalar<tensorflow::ResourceHandle>()().set_device(kDeviceName);
    
          outputs->push_back(t);
        } else if (output_name == "var2") {
          Tensor t = Tensor(tensorflow::DT_RESOURCE, tensorflow::TensorShape({1}));
          t.scalar<tensorflow::ResourceHandle>()().set_name("var2");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/impl/BUILD

        deps = [
            ":iostream",
            ":none",
            ":scalars",
            ":string",
            ":tensor_spec",
            "//tensorflow/core:framework",
            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
        ],
    )
    
    cc_library(
        name = "scalars",
        hdrs = [
            "scalars.h",
        ],
    )
    
    tf_cc_test(
        name = "scalars_test",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 09:47:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. src/crypto/elliptic/nistec_p256.go

    		k = new(big.Int).Neg(k)
    	}
    	if k.Cmp(c.params.N) >= 0 {
    		// This should never happen.
    		k = new(big.Int).Mod(k, c.params.N)
    	}
    	scalar := k.FillBytes(make([]byte, 32))
    	inverse, err := nistec.P256OrdInverse(scalar)
    	if err != nil {
    		panic("crypto/elliptic: nistec rejected normalized scalar")
    	}
    	return new(big.Int).SetBytes(inverse)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 696 bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/injection.yaml

        name: server
    ---
    # Control plane pod proving the existence of istio.io/rev 'canary'
    apiVersion: v1
    kind: Pod
    metadata:
      name: istiod-canary-1234567890-12345
      namespace: istio-system
      labels:
        app: istiod
        istio: pilot
        istio.io/rev: canary
    spec:
      containers:
      - image: gcr.io/google-samples/microservices-demo/adservice:v0.1.1
        name: server
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 14:06:10 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/custom_aggregator_op.cc

        .Attr("max_percentile: float = 0.0")
        .SetShapeFn([](::tensorflow::shape_inference::InferenceContext* c) {
          c->set_output(0, c->input(0));
          c->set_output(1, c->Scalar());
          c->set_output(2, c->Scalar());
    
          const tensorflow::AttrValue* num_bins_attr;
          TF_RETURN_IF_ERROR(c->GetAttr("num_bins", &num_bins_attr));
          c->set_output(3, c->MakeShape({num_bins_attr->i()}));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. tests/integration/pilot/revisions/revisions_test.go

    			stable := namespace.NewOrFail(t, t, namespace.Config{
    				Prefix:   "stable",
    				Inject:   true,
    				Revision: "stable",
    			})
    			canary := namespace.NewOrFail(t, t, namespace.Config{
    				Prefix:   "canary",
    				Inject:   true,
    				Revision: "canary",
    			})
    
    			echos := deployment.New(t).
    				WithClusters(t.Clusters()...).
    				WithConfig(echo.Config{
    					Service:   "client",
    					Namespace: stable,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 27 15:52:38 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    cond: A Tensor. If the tensor is a scalar of non-boolean type, the
        scalar is converted to a boolean according to the
        following rule: if the scalar is a numerical value, non-zero means
        True and zero means False; if the scalar is a string, non-empty
        means True and empty means False. If the tensor is not a scalar,
        being empty means False and being non-empty means True.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/UserAgentHelper.java

                        } else if (userAgent.indexOf("Chrome") >= 0) {
                            uaType = UserAgentType.CHROME;
                        } else if (userAgent.indexOf("Safari") >= 0) {
                            uaType = UserAgentType.SAFARI;
                        } else if (userAgent.indexOf("Opera") >= 0) {
                            uaType = UserAgentType.OPERA;
                        }
                    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top