Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for setString (0.18 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

            // Outputs 3 and 4 are currently marked as "reserved spaces 1 and 2".
            // They are used to pass the per-batch mean and variance to the
            // gradiant. Here we maintain the same behavior by setting them to the
            // mean and variance calculated by BatchNormTraining.
            rewriter.replaceOp(op, {y_out, /*batch_mean=*/batch_mean,
                                    /*batch_variance=*/corrected_variance,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

    Setting options in `include_router` still makes sense in some cases, for example, to override or increase configurations from a third party router included in an app. But in a router that is part of a bigger application, it would probably make more sense to add those settings when creating the `APIRouter`.
    
    **In `FastAPI`**
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"boolean"},...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			},
    			errors: []validationMatch{
    				required("spec.versions[0].schema.openAPIV3Schema"),
    				required("spec.versions[1].schema.openAPIV3Schema"),
    			},
    		},
    		{
    			name: "setting defaults with enabled feature gate",
    			old: &apiextensions.CustomResourceDefinition{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "plural.group.com",
    					ResourceVersion: "42",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.27.md

    ### Bug or Regression
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  6. doc/go_spec.html

    x[i], i = 2, 1  // set x[0] = 2, i = 1
    
    x[0], x[0] = 1, 2  // set x[0] = 1, then x[0] = 2 (so x[0] == 2 at end)
    
    x[1], x[3] = 4, 5  // set x[1] = 4, then panic setting x[3] = 5.
    
    type Point struct { x, y int }
    var p *Point
    x[2], p.x = 6, 7  // set x[2] = 6, then panic setting p.x = 7
    
    i = 2
    x = []int{3, 5, 7}
    for i, x[i] = range x {  // set i, x[2] = 0, x[0]
    	break
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  7. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    0&&(r={}),n=i.call(this,g1(r))||this,n.type=u1.ATTRIBUTE,n.raws=n.raws||{},Object.defineProperty(n.raws,"unquoted",{get:Lr(function(){return n.value},"attr.raws.unquoted is deprecated. Call attr.value instead."),set:Lr(function(){return n.value},"Setting attr.raws.unquoted is deprecated and has no effect. attr.value is unescaped by default now.")}),n._constructed=!0,n}var t=e.prototype;return t.getQuotedValue=function(n){n===void 0&&(n={});var a=this._determineQuoteMark(n),s=ua[a],o=(0,Fr.default...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  8. pkg/apis/core/validation/validation.go

    	}
    	allErrs = append(allErrs, ValidateImmutableField(newPv.Spec.VolumeMode, oldPv.Spec.VolumeMode, field.NewPath("volumeMode"))...)
    
    	// Allow setting NodeAffinity if oldPv NodeAffinity was not set
    	if oldPv.Spec.NodeAffinity != nil {
    		allErrs = append(allErrs, validatePvNodeAffinity(newPv.Spec.NodeAffinity, oldPv.Spec.NodeAffinity, field.NewPath("nodeAffinity"))...)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier_test.go

    				Name:     ptr.To("p80"),
    				Port:     ptr.To[int32](80),
    				Protocol: ptr.To(v1.ProtocolTCP),
    			}}
    		}),
    		// create Local LoadBalancer endpoints. Note that since we aren't setting
    		// its NodeName, this endpoint will be considered non-local and ignored.
    		makeTestEndpointSlice("ns2", "svc2", 1, func(eps *discovery.EndpointSlice) {
    			eps.AddressType = discovery.AddressTypeIPv4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  10. pkg/registry/core/service/storage/storage_test.go

    			expectClusterIPs: true,
    		},
    		update: svcTestCase{
    			svc: svctest.MakeService("foo", svctest.SetTypeClusterIP,
    				func(s *api.Service) {
    					// Set it without setting the config
    					s.Spec.SessionAffinity = api.ServiceAffinityClientIP
    				}),
    			expectError: true,
    		},
    	}, {
    		name: "None-ClientIP",
    		create: svcTestCase{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
Back to top