Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for contradiction (0.27 sec)

  1. src/crypto/internal/boring/aes.go

    	NewGCM(nonceSize, tagSize int) (cipher.AEAD, error)
    }
    
    var _ extraModes = (*aesCipher)(nil)
    
    func NewAESCipher(key []byte) (cipher.Block, error) {
    	c := &aesCipher{key: bytes.Clone(key)}
    	// Note: 0 is success, contradicting the usual BoringCrypto convention.
    	if C._goboringcrypto_AES_set_decrypt_key((*C.uint8_t)(unsafe.Pointer(&c.key[0])), C.uint(8*len(c.key)), &c.dec) != 0 ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/math/big/ratconv.go

    	// We start with the largest factor f = tab[len(tab)-1]
    	// that evenly divides q. It does so at most once because
    	// otherwise f·f would also divide q. That can't be true
    	// because f·f is the next higher table entry, contradicting
    	// how f was chosen in the first place.
    	// The same reasoning applies to the subsequent factors.
    	var p5 uint
    	for i := len(tab) - 1; i >= 0; i-- {
    		if t, r = t.div(r, q, tab[i]); len(r) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. ChangeLog.md

    - [`KT-65255`](https://youtrack.jetbrains.com/issue/KT-65255) K2 / KJS: "IllegalArgumentException: Candidate is not successful, but system has no contradiction"
    - [`KT-65195`](https://youtrack.jetbrains.com/issue/KT-65195) K2: Unexpected exception when executing dynamic array element inc/dec
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  4. src/testdata/Isaac.Newton-Opticks.txt

    Object-glasses, and thereby to make the Rings contract and dilate: The
    Contraction or Dilatation of each Ring thus made by the variation of its
    Colour was swiftest in the red, and slowest in the violet, and in the
    intermediate Colours it had intermediate degrees of Celerity. Comparing
    the quantity of Contraction and Dilatation made by all the degrees of
    each Colour, I found that it was greatest in the red; less in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  5. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    to make all the several Colours fall successively upon the Object-glasses, and thereby to make the Rings contract and dilate: The Contraction or Dilatation of each Ring thus made by the variation of its Colour was swiftest in the red, and slowest in the violet, and in the intermediate Colours it had intermediate degrees of Celerity. Comparing the quantity of Contraction and Dilatation made by all the degrees of each Colour, I found that it was greatest in the red; less in the yellow, still less in...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  6. src/math/big/nat.go

    	//
    	// since all the yi for i > 1 are 0 by choice of k: If any of them
    	// were > 0, then yh >= b^2 and thus y >= b^2. Then k' = k*2 would
    	// be a larger valid threshold contradicting the assumption about k.
    	//
    	if k < n || m != n {
    		tp := getNat(3 * k)
    		t := *tp
    
    		// add x0*y1*b
    		x0 := x0.norm()
    		y1 := y[k:]       // y1 is normalized because y is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            //  c. There is no path from B to A in the cycles graph (but there may
            //     be a path from A to B).
            //
            // So check the legality of the edge contraction by checking if any of
            // the n^2 pairs of resource variable operations are forbidden.
            if (unsafe_resource_deps_.contains(
                    {resource_var_from, resource_var_to})) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let hasVerifier = 1;
    }
    
    def TF_EinsumOp : TF_Op<"Einsum", [Pure]> {
      let summary = [{
    Tensor contraction according to Einstein summation convention.
      }];
    
      let description = [{
    Implements generalized Tensor contraction and reduction. Each input Tensor must
    have a corresponding input subscript appearing in the comma-separated left-hand
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				required("spec", "validation", "openAPIV3Schema", "properties[spanning-defaults-with-missing-typemeta]", "default", "embedded", "kind"),
    			},
    		},
    		{
    			name: "contradicting meta field types",
    			resource: &apiextensions.CustomResourceDefinition{
    				ObjectMeta: metav1.ObjectMeta{Name: "plural.group.com"},
    				Spec: apiextensions.CustomResourceDefinitionSpec{
    					Group:    "group.com",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  10. RELEASE.md

            `batch_dims` case.
        *   Removing of dtype in the constructor of initializers and partition_info
            in call.
        *   Add `tf.math.nextafter` op.
        *   Turn on MKL-DNN contraction kernels by default. MKL-DNN dynamically
            dispatches the best kernel implementation based on CPU vector
            architecture. To disable them, build with
            `--define=tensorflow_mkldnn_contraction_kernel=0`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top