Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,079 for zeta (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    		Type:     "object",
    		Required: []string{"alpha", "beta"},
    		Properties: map[string]apiextensionsv1.JSONSchemaProps{
    			"alpha": {
    				Description: "Alpha is an alphanumeric string with underscores",
    				Type:        "string",
    				Pattern:     "^[a-zA-Z0-9_]*$",
    			},
    			"beta": {
    				Description: "Minimum value of beta is 10",
    				Type:        "number",
    				Minimum:     float64Ptr(10),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  10. src/html/entity.go

    		"Zcaron;":                          '\U0000017D',
    		"Zcy;":                             '\U00000417',
    		"Zdot;":                            '\U0000017B',
    		"ZeroWidthSpace;":                  '\U0000200B',
    		"Zeta;":                            '\U00000396',
    		"Zfr;":                             '\U00002128',
    		"Zopf;":                            '\U00002124',
    		"Zscr;":                            '\U0001D4B5',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
Back to top