Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for SELF (0.09 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.val3 > self.val7",
    
    				"self.val1 < int(self.val7)",
    				"self.val3 > int(self.val7)",
    
    				"self.val1 < self.val8",
    				"self.val3 > self.val8",
    
    				"self.val1 < self.val8",
    				"self.val3 > self.val8",
    
    				"self.val1 < self.val9",
    				"self.val3 > self.val9",
    
    				"self.val1 < self.val9",
    				"self.val3 > self.val9",
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          }
    
      def test_static_range_quantization_by_default(self):
        model = self.SimpleModel()
    
        saved_model_save.save(model, self._input_saved_model_path)
    
        # Use default QuantizationOptions.
        converted_model = quantize_model.quantize(
            self._input_saved_model_path,
            representative_dataset=self._simple_model_data_gen(),
        )
    
        self.assertIsNotNone(converted_model)
        self.assertCountEqual(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  3. fastapi/routing.py

            self.path_regex, self.path_format, self.param_convertors = compile_path(path)
            self.dependant = get_dependant(path=self.path_format, call=self.endpoint)
            for depends in self.dependencies[::-1]:
                self.dependant.dependencies.insert(
                    0,
                    get_parameterless_sub_dependant(depends=depends, path=self.path_format),
                )
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  4. fastapi/applications.py

                ),
            ],
        ) -> None:
            self.debug = debug
            self.title = title
            self.summary = summary
            self.description = description
            self.version = version
            self.terms_of_service = terms_of_service
            self.contact = contact
            self.license_info = license_info
            self.openapi_url = openapi_url
            self.openapi_tags = openapi_tags
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    e(t)||Mt(this.$el,":hover")||this.hide()}},{name:"beforeshow",self:!0,handler:function(){this.clearTimers(),ni.cancel(this.$el),this.position()}},{name:"show",self:!0,handler:function(){var n=this;(pn=this).tracker.init(),Kt(this.$el,"updatearia");var t=vn(document,"click",function(t){var e=t.defaultPrevented,i=t.target;e||Yt(i,n.$el)||n.toggle&&Yt(i,n.toggle.$el)||n.hide(!1)});Gt(this.$el,"hide",t,{self:!0})}},{name:"beforehide",self:!0,handler:function(){this.clearTimers()}},{name:"hide",handler:function(t){var...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    the x-kubernetes-validations extension in the schema. The `self` variable in the CEL expression is bound to the scoped value. Example: - Rule scoped to the root of a resource with a status subresource: {\"rule\": \"self.status.actual <= self.spec.maxDesired\"}\n\nIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via `self.field` and field presence can be checked via `has(self.field)`. Null valued fields are treated as absent fields in...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  7. src/crypto/x509/x509_test.go

    	}
    
    	if cert := serialiseAndParse(t, template); len(cert.AuthorityKeyId) != 0 {
    		t.Fatalf("self-signed certificate contained default authority key id")
    	}
    
    	template.AuthorityKeyId = []byte{1, 2, 3, 4}
    	if cert := serialiseAndParse(t, template); len(cert.AuthorityKeyId) == 0 {
    		t.Fatalf("self-signed certificate erased explicit authority key id")
    	}
    }
    
    func TestNoSubjectKeyIdInCert(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  8. cmd/site-replication.go

    			if !(ps.Peers[id].ReplicateILMExpiry == peer.ReplicateILMExpiry) {
    				flagEqual = false
    				break
    			}
    		}
    		if flagEqual {
    			continue
    		}
    
    		// Dont apply the self state to self
    		if dID == globalDeploymentID() {
    			continue
    		}
    
    		// Send details to other sites for healing
    		admClient, err := c.getAdminClient(ctx, dID)
    		if err != nil {
    			return wrapSRErr(err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  9. src/crypto/x509/verify_test.go

    var unknownAuthorityErrorTests = []struct {
    	name     string
    	cert     string
    	expected string
    }{
    	{"self-signed, cn", selfSignedWithCommonName, "x509: certificate signed by unknown authority (possibly because of \"empty\" while trying to verify candidate authority certificate \"test\")"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    operation is `UPSERT`. type: string type: object x-kubernetes-validations: - message: value must be set when operation is UPSERT rule: '((has(self.operation) ? self.operation : '''') == ''UPSERT'') ? self.value != '''' : true' - message: value must not be set when operation is REMOVE rule: '((has(self.operation) ? self.operation : '''') == ''REMOVE'') ? !has(self.value) : true' description: Optional. type: object type: object type: array providers: description: Optional. items: properties: name: description:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top