Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 334 for salary (0.15 sec)

  1. platforms/documentation/docs/src/docs/css/manual.css

    /** Address variable `h1` font-size and margin within `section` and `article` contexts in Firefox 4+, Safari 5, and Chrome. */
    h1 {
    	font-size: 2em;
    	margin: 0.67em 0;
    }
    
    /** Address styling not present in IE 8/9, Safari 5, and Chrome. */
    abbr[title] {
    	border-bottom: 1px dotted;
    }
    
    /** Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
    b,
    strong {
    	font-weight: bold;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. operator/cmd/mesh/verify.go

      istioctl verify-install -f $HOME/istio.yaml
    
      # Verify the deployment matches the Istio Operator deployment definition
      istioctl verify-install --revision <canary>
    
      # Verify the installation of specific revision
      istioctl verify-install -r 1-9-0`,
    		Args: func(cmd *cobra.Command, args []string) error {
    			if len(filenames) > 0 && opts.Revision != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 16:26:13 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/internal/saved_model_api_test.cc

      const TF_TensorSpec* tensor_spec_a = TF_SignatureDefParamTensorSpec(param_a);
      const TF_Shape* shape_a = TF_TensorSpecShape(tensor_spec_a);
    
      // Input "a" is a scalar, float32 tensor
      EXPECT_EQ("a", std::string(TF_SignatureDefParamName(param_a)));
      EXPECT_EQ(TF_FLOAT, TF_TensorSpecDataType(tensor_spec_a));
      EXPECT_EQ(0, TF_ShapeDims(shape_a));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 08:08:45 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting_test.go

    var objectObjectSchema *spec.Schema = &spec.Schema{
    	SchemaProps: spec.SchemaProps{
    		Type: spec.StringOrArray{"object"},
    		Properties: map[string]spec.Schema{
    			"nested": *objectSchema,
    		},
    	},
    }
    
    // Shows scalar fields of objects can be ratcheted
    func TestObjectScalarFieldsRatcheting(t *testing.T) {
    	validator := validation.NewRatchetingSchemaValidator(objectSchema, nil, "", strfmt.Default)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 18:20:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. src/encoding/gob/encgen.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package gob
    
    import (
    	"reflect"
    )
    
    `
    
    const arrayHelper = `
    func enc%[2]sArray(state *encoderState, v reflect.Value) bool {
    	// Can only slice if it is addressable.
    	if !v.CanAddr() {
    		return false
    	}
    	return enc%[2]sSlice(state, v.Slice(0, v.Len()))
    }
    `
    
    const sliceHelper = `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:39:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      //
      // 1) `atomic`: the list is treated as a single entity, like a scalar.
      //      Atomic lists will be entirely replaced when updated. This extension
      //      may be used on any type of list (struct, scalar, ...).
      // 2) `set`:
      //      Sets are lists that must not have multiple items with the same value. Each
      //      value must be a scalar, an object with x-kubernetes-map-type `atomic` or an
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      // Val tensor must be a scalar or of a shape [1, ... , 1, elements_depth].
      const int elements_rank = elements_shape.size();
      for (int i = 0; i < elements_rank - 1; ++i) {
        if (elements_shape[i] != 1) {
          return false;
        }
      }
    
      auto elements_depth = elements_shape.empty() ? 1 : elements_shape.back();
      // If elements depth equals 1 (i.e., scalar or tensor with 1 element), then we
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/canonicalize.td

      [(CopyAttrs $src, $dest)]>;
    
    // Canonicalize: Log(1.0 + x) to Log1p(x)
    //
    // We currently do this rewrite only if the constant `1` is a scalar, because
    // it is safely broadcastable to any shape. To be able to canonicalize when
    // constant values is not a scalar, we have to first prove that it is
    // broadcastable to `x`, which requires static shape information.
    def LogToLog1p : Pat<
      (TF_LogOp:$src (TF_AddV2Op $arg,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:42:28 UTC 2023
    - 17K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_network_linux.go

    		iptClient := iptClients[i]
    		if kl.syncIPTablesRules(iptClient) {
    			klog.InfoS("Initialized iptables rules.", "protocol", iptClient.Protocol())
    			go iptClient.Monitor(
    				utiliptables.Chain("KUBE-KUBELET-CANARY"),
    				[]utiliptables.Table{utiliptables.TableMangle, utiliptables.TableNAT, utiliptables.TableFilter},
    				func() { kl.syncIPTablesRules(iptClient) },
    				1*time.Minute, wait.NeverStop,
    			)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 20:51:47 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/test_utils.cc

        result.push_back(dt);
      }
      return result;
    }
    
    std::vector<std::vector<int64_t>> InterestingShapes() {
      std::vector<std::vector<int64_t>> interesting_shapes;
      interesting_shapes.push_back({});             // Scalar
      interesting_shapes.push_back({10});           // 1D Vector
      interesting_shapes.push_back({3, 3});         // 2D Matrix
      interesting_shapes.push_back({1, 4, 6, 10});  // Higher Dimension Tensor
      return interesting_shapes;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:13:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top