Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 86 of 86 for assertGet (0.23 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            )
        )
        quantize_model._populate_quantization_component_spec(
            options.quantization_method
        )
    
        # Quantize activation, weight and bias for static range quantization.
        self.assertLen(options.quantization_method.quantization_component_specs, 3)
    
      def test_invalid_spec_raise_value_error(self):
        options = quant_opts_pb2.QuantizationOptions(
            quantization_method=quant_opts_pb2.QuantizationMethod(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/order.go

    		o.stmt(as)
    
    		// Emit eval+insert of dynamic entries, one at a time.
    		for _, r := range dynamics {
    			lhs := typecheck.AssignExpr(ir.NewIndexExpr(base.Pos, m, r.Key)).(*ir.IndexExpr)
    			base.AssertfAt(lhs.Op() == ir.OINDEXMAP, lhs.Pos(), "want OINDEXMAP, have %+v", lhs)
    			lhs.RType = n.RType
    
    			as := ir.NewAssignStmt(base.Pos, lhs, r.Value)
    			typecheck.Stmt(as)
    			o.stmt(as)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  3. cmd/server_test.go

    	response, err := s.client.Do(request)
    	c.Assert(err, nil)
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	// constructing HTTP request to fetch a non-existent object.
    	// expected to fail, error response asserted for expected error values later.
    	objectName := "testObject"
    	request, err = newTestSignedRequest(http.MethodGet, getGetObjectURL(s.endPoint, bucketName, objectName),
    		0, nil, s.accessKey, s.secretKey, s.signer)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  4. src/crypto/x509/x509.go

    	// RFC 5280, 4.2.1.9:
    	// "If the basic constraints extension is not present in a version 3
    	// certificate, or the extension is present but the cA boolean is not
    	// asserted, then the certified public key MUST NOT be used to verify
    	// certificate signatures."
    	if parent.Version == 3 && !parent.BasicConstraintsValid ||
    		parent.BasicConstraintsValid && !parent.IsCA {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.30.md

    - OIDC authentication will now fail if the username asserted based on a CEL expression config is the empty string.  Previously the request would be authenticated with the username set to the empty string. ([#123568](https://github.com/kubernetes/kubernetes/pull/123568), [@enj](https://github.com/enj))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  6. src/reflect/value.go

    				// in the heap. That uintptr is the address of a not-in-heap object.
    				// In general, pointers to not-in-heap objects can be total junk.
    				// But Elem() is asking to dereference it, so the user has asserted
    				// that at least it is a valid pointer (not just an integer stored in
    				// a pointer slot). So let's check, to make sure that it isn't a pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top