Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 339 for salary (0.13 sec)

  1. tests/integration/pilot/revisions/revision_tag_test.go

    				error    string
    			}{
    				{
    					"prod tag pointed to stable",
    					"prod",
    					"stable",
    					"istio.io/rev=prod",
    					"",
    				},
    				{
    					"prod tag pointed to canary",
    					"prod",
    					"canary",
    					"istio.io/rev=prod",
    					"",
    				},
    				{
    					"tag pointed to non existent revision",
    					"prod",
    					"fake-revision",
    					"istio.io/rev=prod",
    					"cannot modify tag",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. docs/tr/docs/deployment/cloud.md

    Bazı bulut sağlayıcılar ✨ [**FastAPI destekçileridir**](../help-fastapi.md#sponsor-the-author){.internal-link target=_blank} ✨, bu FastAPI ve **ekosisteminin** sürekli ve sağlıklı bir şekilde **gelişmesini** sağlar.
    
    Ayrıca, size **iyi servisler** sağlamakla kalmayıp, **iyi ve sağlıklı bir framework** olan FastAPI'a bağlılıklarını gösterir.
    
    Bu hizmetleri denemek ve kılavuzlarını incelemek isteyebilirsiniz:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 28 14:05:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/templates/service.yaml

        istio.io/rev: {{ .Values.revision | quote }}
        {{- else }}
        # Label used by the 'default' service. For versioned deployments we match with app and version.
        # This avoids default deployment picking the canary
        istio: pilot
        {{- end }}
      {{- if .Values.pilot.ipFamilyPolicy }}
      ipFamilyPolicy: {{ .Values.pilot.ipFamilyPolicy }}
      {{- end }}
      {{- if .Values.pilot.ipFamilies }}
      ipFamilies:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_experimental_test.cc

      TFE_OpSetAttrType(fill_op, "T", TF_FLOAT);
      TFE_OpSetAttrType(fill_op, "Tshape", TF_INT32);
    
      float five = 5.0;
      TFE_TensorHandle* scalar = TestScalarTensorHandle(tfe_context_, five);
      TF_Tensor* scalarTensor = TFE_TensorHandleResolve(scalar, status_);
      CHECK_EQ(TF_OK, TF_GetCode(status_)) << TF_Message(status_);
      CheckOutputShapes(fill_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 17 22:27:52 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server_test.go

    				"istiod.istio-system.svc.cluster.local",
    			},
    		},
    		{
    			name:             "canary revision",
    			customHost:       "a.com,b.com,c.com",
    			discoveryAddress: "istiod.istio-system.svc.cluster.local",
    			revision:         "canary",
    			sans: []string{
    				"a.com", "b.com", "c.com",
    				"istio-pilot.istio-system.svc",
    				"istiod-canary.istio-system.svc",
    				"istiod-remote.istio-system.svc",
    				"istiod.istio-system.svc",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. src/internal/pkgbits/encoder.go

    // bitstream.
    func (w *Encoder) Value(val constant.Value) {
    	w.Sync(SyncValue)
    	if w.Bool(val.Kind() == constant.Complex) {
    		w.scalar(constant.Real(val))
    		w.scalar(constant.Imag(val))
    	} else {
    		w.scalar(val)
    	}
    }
    
    func (w *Encoder) scalar(val constant.Value) {
    	switch v := constant.Val(val).(type) {
    	default:
    		errorf("unhandled %v (%v)", val, val.Kind())
    	case bool:
    		w.Code(ValBool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 10 23:26:58 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      if (!IsOfRankOrUnranked(op.getDepth(), 0)) {
        return op.emitOpError() << "requires depth to be a scalar";
      }
      if (!IsOfRankOrUnranked(op.getOnValue(), 0)) {
        return op.emitOpError() << "requires on_value to be a scalar";
      }
      if (!IsOfRankOrUnranked(op.getOffValue(), 0)) {
        return op.emitOpError() << "requires off_value to be a scalar";
      }
    
      DenseIntElementsAttr depth_attr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGeneratorTest.groovy

            impl.otherValue {
                value = "12"
            }
    
            then:
            1 * prop.setValue("12")
            0 * state._
        }
    
        def "mixes in converting setter for managed property with scalar type"() {
            def state = Mock(ModelElementState)
    
            given:
            def proxyClass = generate(SomeType)
            def impl = proxyClass.newInstance(state, typeConverter)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/ir/tfr_ops.cc

          rewriter.replaceOp(cst_tensor_op, new_cst->getResult(0));
          return success();
        }
    
        TypedAttr scalar;
        if (matchPattern(cst_tensor_op.getArg(), m_Constant(&scalar))) {
          Type new_out_type = RankedTensorType::get({}, scalar.getType());
          new_cst = rewriter.create<TF::ConstOp>(loc, new_out_type, scalar);
          if (out_type.isa<TFRTensorType>()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 16:55:41 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  10. docs/tr/docs/advanced/index.md

    Bazı kurs sağlayıcıları ✨ [**FastAPI destekçileridir**](../help-fastapi.md#sponsor-the-author){.internal-link target=_blank} ✨, bu FastAPI ve **ekosisteminin** sürekli ve sağlıklı bir şekilde **gelişmesini** sağlar.
    
    Ayrıca, size **iyi bir öğrenme deneyimi** sağlamakla kalmayıp, **iyi ve sağlıklı bir framework** olan FastAPI'a ve ve **topluluğuna** (yani size) olan gerçek bağlılıklarını gösterir.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 05 00:05:51 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top