Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for lgamma (0.17 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/multicluster/httproute-gamma.yaml

    Alexander Zielenski <******@****.***> 1697824555 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 365 bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r24/BuildInvocationsCrossVersionSpec.groovy

              task alpha {
                description = 'ALPHA from sub project'
              }
              task beta {
                description = 'BETA from sub project'
              }
              task gamma {
                description = 'GAMMA from sub'
              }
            '''
    
            when:
            def buildInvocations = withConnection { ProjectConnection connection ->
                connection.getModel(BuildInvocations.class)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. src/crypto/elliptic/params.go

    	z3.Mul(z3, z3)
    	z3.Sub(z3, gamma)
    	if z3.Sign() == -1 {
    		z3.Add(z3, curve.P)
    	}
    	z3.Sub(z3, delta)
    	if z3.Sign() == -1 {
    		z3.Add(z3, curve.P)
    	}
    	z3.Mod(z3, curve.P)
    
    	beta.Lsh(beta, 2)
    	beta.Sub(beta, x3)
    	if beta.Sign() == -1 {
    		beta.Add(beta, curve.P)
    	}
    	y3 := alpha.Mul(alpha, beta)
    
    	gamma.Mul(gamma, gamma)
    	gamma.Lsh(gamma, 3)
    	gamma.Mod(gamma, curve.P)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. src/math/cmplx/pow.go

    // What you see here may be used freely but it comes with no support or
    // guarantee.
    //
    //   The two known misprints in the book are repaired here in the
    // source listings for the gamma function and the incomplete beta
    // integral.
    //
    //   Stephen L. Moshier
    //   ******@****.***
    
    // Complex power function
    //
    // DESCRIPTION:
    //
    // Raises complex A to the complex Zth power.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/comparison/ExhaustiveLinesSearcherTest.groovy

            given:
            comparer = ExhaustiveLinesSearcher.useUnifiedDiff()
            def expectedLines = ["cat", "bird", "dog"]
            def actualLines = ["kangaroo", "cat", "llama", "dog", "turtle", "cat", "moose", "dog"]
    
            when:
            comparer.assertLinesContainedIn(expectedLines, actualLines)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool.cc

        return row * pool.w_out + col;
      };
    
      std::vector<float> correction_data(out_shaped_type.getNumElements(), 1.0);
    
      const float kern_size = pool.kh * pool.kw;
    
      // LEMMA 1: Changing the rounding mode from floor to ceil will increase an
      // output dimension by at most 1 (see `ComputeSpatialOutDim`). This is because
      // for any `x`, `ceil(x) - floor(x) <= 1`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. src/strings/builder_test.go

    }
    
    func TestBuilderString(t *testing.T) {
    	var b Builder
    	b.WriteString("alpha")
    	check(t, &b, "alpha")
    	s1 := b.String()
    	b.WriteString("beta")
    	check(t, &b, "alphabeta")
    	s2 := b.String()
    	b.WriteString("gamma")
    	check(t, &b, "alphabetagamma")
    	s3 := b.String()
    
    	// Check that subsequent operations didn't change the returned strings.
    	if want := "alpha"; s1 != want {
    		t.Errorf("first String result is now %q; want %q", s1, want)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 19:51:15 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top