Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for zetas (0.11 sec)

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

    	return r
    }
    
    func TestZetas(t *testing.T) {
    	ζ := big.NewInt(17)
    	q := big.NewInt(q)
    	for k, zeta := range zetas {
    		// ζ^BitRev7(k) mod q
    		exp := new(big.Int).Exp(ζ, big.NewInt(int64(BitRev7(uint8(k)))), q)
    		if big.NewInt(int64(zeta)).Cmp(exp) != 0 {
    			t.Errorf("zetas[%d] = %v, expected %v", k, zeta, exp)
    		}
    	}
    }
    
    func TestGammas(t *testing.T) {
    	ζ := big.NewInt(17)
    	q := big.NewInt(q)
    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/crypto/internal/mlkem768/mlkem768.go

    	k := 1
    	for len := 128; len >= 2; len /= 2 {
    		for start := 0; start < 256; start += 2 * len {
    			zeta := zetas[k]
    			k++
    			// Bounds check elimination hint.
    			f, flen := f[start:start+len], f[start+len:start+len+len]
    			for j := 0; j < len; j++ {
    				t := fieldMul(zeta, flen[j])
    				flen[j] = fieldSub(f[j], t)
    				f[j] = fieldAdd(f[j], t)
    			}
    		}
    	}
    	return nttElement(f)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/table_test.go

    				}
    
    				// Validate extra column for v1
    				if i == 1 {
    					zeta := metav1beta1.TableColumnDefinition{Name: "Zeta", Type: "integer", Format: "int64", Description: "the zeta field", Priority: 42}
    					if got, expected := tbl.ColumnDefinitions[6], zeta; got != expected {
    						t.Errorf("expected column definition %#v, got %#v", expected, got)
    					}
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 19:34:41 UTC 2021
    - 18.9K bytes
    - Viewed (0)
  4. src/math/lgamma.go

    //              lgamma(x) = 0.5*s + s*P(s)/Q(s)
    //      with accuracy
    //              |P/Q - (lgamma(x)-0.5s)| < 2**-61.71
    //      Our algorithms are based on the following observation
    //
    //                             zeta(2)-1    2    zeta(3)-1    3
    // lgamma(2+s) = s*(1-Euler) + --------- * s  -  --------- * s  + ...
    //                                 2                 3
    //
    //      where Euler = 0.5772156649... is the Euler constant, which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. samples/bookinfo/src/productpage/templates/productpage.html

    {% block metas %}
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    {% endblock %}
    
    <title>Simple Bookstore App</title>
    {% block scripts %}
    <script src="static/tailwind/tailwind.css"></script>
    <script type="text/javascript">
      window.addEventListener("DOMContentLoaded", (event) => {
        const dialog = document.querySelector("dialog");
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/mdo/reader-stax.vm

            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");
            entities.put("Iota", "\u0399");
            entities.put("Kappa", "\u039a");
            entities.put("Lambda", "\u039b");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/upgrade/compute.go

    		// Worth noticing is that when the release-1.X branch is cut; there are two versions tagged: v1.X.0-beta.0 AND v1.(X+1).alpha.0
    		// The v1.(X+1).alpha.0 is pretty much useless and should just be ignored, as more betas may be released that have more features than the initial v1.(X+1).alpha.0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. src/mdo/reader.vm

            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");
            entities.put("Iota", "\u0399");
            entities.put("Kappa", "\u039a");
            entities.put("Lambda", "\u039b");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  9. src/encoding/xml/xml.go

    	"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",
    	"Mu":       "\u039C",
    	"Nu":       "\u039D",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/gateway_simulation_test.go

    				},
    			},
    		},
    		simulationTest{
    			name: "duplicate cross namespace gateway collision - selected first",
    			config: createGateway("gateway", "istio-system", tcpServer) +
    				createGateway("gateway", "zeta", tcpServer) + // namespace comes after istio-system
    				gatewayCollision,
    			calls: []simulation.Expect{
    				{
    					Name:   "call",
    					Call:   simulation.Call{Port: 80, Protocol: simulation.TCP},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top