Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,255 for zeta (0.07 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionConstraint.java

     *     <li>The string "SNAPSHOT" <b>has no special meaning</b>, and is sorted alphabetically like any other string part: 1.0-alpha {@literal <} 1.0-SNAPSHOT {@literal <} 1.0-zeta {@literal <} 1.0-rc {@literal <} 1.0.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 11:49:12 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    ** The strings `rc`, `snapshot`, `final`, `ga`, `release` and `sp` are considered **higher** than any other string part (sorted in this order): `1.0-zeta` < `1.0-rc` < `1.0-snapshot` < `1.0-final` < `1.0-ga` < `1.0-release` < `1.0-sp` < `1.0`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. 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)
  6. 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");
            entities.put("Iota", "\u0399");
    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. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&Zcaron;":                          "\u017d",
    	"&Zcy;":                             "\u0417",
    	"&Zdot;":                            "\u017b",
    	"&ZeroWidthSpace;":                  "\u200b",
    	"&Zeta;":                            "\u0396",
    	"&Zfr;":                             "\u2128",
    	"&Zopf;":                            "\u2124",
    	"&Zscr;":                            "\U0001d4b5",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  8. src/mdo/reader.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");
            entities.put("Iota", "\u0399");
    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

    	"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",
    	"Mu":       "\u039C",
    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

    				},
    			},
    			{
    				Name: "http beta",
    				Call: simulation.Call{
    					Port:       80,
    					HostHeader: "example.com",
    					Path:       "/beta",
    					Protocol:   simulation.HTTP,
    				},
    				Result: simulation.Result{
    					ListenerMatched:    "0.0.0.0_80",
    					RouteConfigMatched: "http.80",
    					ClusterMatched:     "outbound|80||beta.default.svc.cluster.local",
    				},
    			},
    			{
    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