Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Igamma (0.1 sec)

  1. src/crypto/internal/mlkem768/mlkem768_test.go

    		}
    	}
    }
    
    func TestGammas(t *testing.T) {
    	ζ := big.NewInt(17)
    	q := big.NewInt(q)
    	for k, gamma := range gammas {
    		// ζ^2BitRev7(i)+1
    		exp := new(big.Int).Exp(ζ, big.NewInt(int64(BitRev7(uint8(k)))*2+1), q)
    		if big.NewInt(int64(gamma)).Cmp(exp) != 0 {
    			t.Errorf("gammas[%d] = %v, expected %v", k, gamma, exp)
    		}
    	}
    }
    
    func TestRoundTrip(t *testing.T) {
    	dk, err := GenerateKey()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 15:27:18 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/bytes/buffer_test.go

    	{"hello\x01world", 1, []string{"hello\x01"}, nil},
    	{"foo\nbar", 0, []string{"foo\nbar"}, io.EOF},
    	{"alpha\nbeta\ngamma\n", '\n', []string{"alpha\n", "beta\n", "gamma\n"}, nil},
    	{"alpha\nbeta\ngamma", '\n', []string{"alpha\n", "beta\n", "gamma"}, io.EOF},
    }
    
    func TestReadBytes(t *testing.T) {
    	for _, test := range readBytesTests {
    		buf := NewBufferString(test.buffer)
    		var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:31:36 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_patterns.td

        $t, $m, $v, $beta, $gamma, F32Attr:$variance_epsilon, ConstBoolAttrFalse:$scale_after_normalization),
      (TF_AddOp
        (TF_MulOp $t, (TF_RsqrtOp:$rsqrt (TF_AddOp $v, (TF_ConstOp $variance_epsilon)))),
        (TF_SubOp $beta, (TF_MulOp $m, $rsqrt)))>;
    def ConvertBatchNormWithGlobalNormalization_2 : Pat<
      (TF_BatchNormWithGlobalNormalizationOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. src/mdo/reader-stax.vm

            entities.put("fnof", "\u0192");
            entities.put("Alpha", "\u0391");
            entities.put("Beta", "\u0392");
            entities.put("Gamma", "\u0393");
            entities.put("Delta", "\u0394");
            entities.put("Epsilon", "\u0395");
            entities.put("Zeta", "\u0396");
            entities.put("Eta", "\u0397");
            entities.put("Theta", "\u0398");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  5. src/crypto/internal/mlkem768/mlkem768.go

    }
    
    // nttElement is an NTT representation, an element of T_q, represented as an
    // array according to FIPS 203 (DRAFT), Section 2.4.
    type nttElement [n]fieldElement
    
    // gammas are the values ζ^2BitRev7(i)+1 mod q for each index i.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TestProgressCrossVersionSpec.groovy

                         Thread.sleep(100);
                         org.junit.Assert.assertEquals(1, 1);
                    }
                    @org.junit.Test public void gamma() throws Exception {
                         Thread.sleep(100);
                         org.junit.Assert.assertEquals(1, 1);
                    }
                    @org.junit.Test public void delta() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. src/encoding/xml/xml.go

    	"ucirc":    "\u00FB",
    	"uuml":     "\u00FC",
    	"yacute":   "\u00FD",
    	"thorn":    "\u00FE",
    	"yuml":     "\u00FF",
    	"fnof":     "\u0192",
    	"Alpha":    "\u0391",
    	"Beta":     "\u0392",
    	"Gamma":    "\u0393",
    	"Delta":    "\u0394",
    	"Epsilon":  "\u0395",
    	"Zeta":     "\u0396",
    	"Eta":      "\u0397",
    	"Theta":    "\u0398",
    	"Iota":     "\u0399",
    	"Kappa":    "\u039A",
    	"Lambda":   "\u039B",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  8. docs/az/docs/index.md

        * Bir çox proqramlaşdırma dilləri üçün avtomatlaşdırılmış <abbr title="Müştəri: Client">müştəri</abbr> kodu yaratma sistemləri.
    * 2 interaktiv sənədləşmə veb interfeysini birbaşa təmin edəcək.
    
    ---
    
    Yeni başlamışıq, amma siz artıq işin məntiqini başa düşmüsünüz.
    
    İndi aşağıdakı sətri dəyişdirməyə çalışın:
    
    ```Python
        return {"item_name": item.name, "item_id": item_id}
    ```
    
    ...bundan:
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top