Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for zetas (0.17 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. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter_test.cc

      for (int i = 0; i < result->subgraph_metadata()->size(); ++i) {
        auto result_subgraph_metadata =
            result->subgraph_metadata()->GetAs<SubgraphMetadata>(i);
        auto expected_subgraph_metadata =
            expected->subgraph_metadata()->GetAs<SubgraphMetadata>(i);
        if (expected_subgraph_metadata->op_metadata() == nullptr &&
            result_subgraph_metadata->op_metadata() == nullptr) {
          return;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. 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)
  5. samples/bookinfo/src/productpage/templates/index.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">
    {% endblock %}
    
    {% block styles %}
    <style>
        table {
            color: #333;
            background: white;
            border: 1px solid grey;
            font-size: 12pt;
            border-collapse: collapse;
            width: 100%;
        }
    
        table thead th,
        table tfoot th {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. 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)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/versions/KotlinGradlePluginVersions.groovy

                return JavaVersion.VERSION_19
            }
            if (kotlinVersion.baseVersion < KOTLIN_1_9_20) {
                return JavaVersion.VERSION_20
            }
            // No baseVersion since the betas don't support Java 22
            if (kotlinVersion < KOTLIN_2_0_0) {
                return JavaVersion.VERSION_21
            }
            return null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/deleted_kinds.go

    	if e.isAlpha && e.strictRemovedHandlingInAlpha { // don't serve in alpha if we want strict handling
    		return false
    	}
    	if e.isAlpha { // alphas are allowed to continue serving expired betas while we clean up the test
    		return true
    	}
    	if e.serveRemovedAPIsOneMoreRelease { // cluster-admins are allowed to kick the can one release down the road
    		return true
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 16 03:02:49 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top