Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 334 for salary (0.39 sec)

  1. src/cmd/go/testdata/script/version_buildvcs_fossil.txt

    rm $GOBIN/a$GOEXE
    
    -- $WORK/fakebin/fossil --
    #!/bin/sh
    exit 1
    -- $WORK/fakebin/fossil.bat --
    exit 1
    -- repo/README --
    Far out in the uncharted backwaters of the unfashionable end of the western
    spiral arm of the Galaxy lies a small, unregarded yellow sun.
    -- repo/fslckout --
    -- repo/a/go.mod --
    module example.com/a
    
    go 1.18
    -- repo/a/a.go --
    package main
    
    func main() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta/algorithm_test.go

    		expected              string
    		expectedError         bool
    		expectedUnknownFields []string
    	}{
    		{name: "empty", json: "null", schema: nil, expected: "null"},
    		{name: "scalar", json: "4", schema: &structuralschema.Structural{}, expected: "4"},
    		{name: "scalar array", json: "[1,2]", schema: &structuralschema.Structural{
    			Items: &structuralschema.Structural{},
    		}, expected: "[1,2]"},
    		{name: "x-kubernetes-embedded-resource", json: `
    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 02:09:41 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td

      let name = "tfl";
    
      let description = [{
        The TensorFlow Lite dialect.
    
        This dialect maps to TensorFlow Lite operations.
    
        Invariants:
    
        * All values are of Tensor type (in particular, scalars are
          represented using zero-dimensional tensors);
      }];
    
      let cppNamespace = "::mlir::TFL";
    
      let useDefaultAttributePrinterParser = 1;
      let useDefaultTypePrinterParser = 1;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/mark_initialized_variables.cc

        bool is_variable_initialized = false;
        if (resource_tensor.dtype() != tensorflow::DT_RESOURCE) {
          is_variable_initialized = true;
        } else {
          auto handle = resource_tensor.scalar<tensorflow::ResourceHandle>()();
          is_variable_initialized =
              IsVariableInitialized(var_op, handle.device(), mgr, session);
        }
        var_op->setAttr("_is_initialized",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 19:14:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. manifests/charts/README.md

    fork of the Istio helm templates, refactored to increase modularity and isolation.
    
    Goals:
    - Improve upgrade experience: users should be able to gradually roll upgrades, with proper
    canary deployments for Istio components. It should be possible to deploy a new version while keeping the
    stable version in place and gradually migrate apps to the new version.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ScalarCollectionModelView.java

                    // collection is null to initialize it to an empty list, but this is how the specs define reaw-write
                    // collections of scalar types.
                    delegate = initializeEmptyCollection();
                }
            }
            return delegate == null ? null : toMutationSafe(delegate);
        }
    
        private Collection<E> initializeEmptyCollection() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. docs/tr/docs/benchmarks.md

        * Ancak yol bazlı yönlendirme vb. basit web uygulamaları oluşturmak için araçlar sağlar.
        * Eğer Starlette'i karşılaştırıyorsanız, Sanic, Flask, Django, vb. frameworkler (veya mikroframeworkler) ile karşılaştırın.
    * **FastAPI**:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 14:10:30 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. tensorflow/c/eager/unified_api_testutil.h

          TestTensorHandleWithDims<T, datatype>(eager_ctx, data, dims, num_dims);
      *tensor =
          unwrap(TF_CreateAbstractTensorFromEagerTensor(input_eager, status.get()));
      return absl::OkStatus();
    }
    
    // Return a scalar tensor handle with given value.
    template <class T, TF_DataType datatype>
    Status TestScalarTensorHandle(AbstractContext* ctx, const T value,
                                  AbstractTensorHandle** tensor) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 13:57:45 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // TODO(ezhulenev): Add support for more valid concat patterns.
    
      // Tensor + Scalar: [..., 1] + []  <- scalar
      //                        ^
      //                        \- axis is the innermost dimension.
      //
      // Concatenate tensor arguments on the same axis as the original operation,
      // and concatenate scalars into the vector.
      if (is_all_tensors(0, axis) && is_all_scalars(1)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top