Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 91 for E$1 (0.02 sec)

  1. src/math/cbrt.go

    		C              = 5.42857142857142815906e-01  // 19/35     = 0x3FE15F15F15F15F1
    		D              = -7.05306122448979611050e-01 // -864/1225 = 0xBFE691DE2532C834
    		E              = 1.41428571428571436819e+00  // 99/70     = 0x3FF6A0EA0EA0EA0F
    		F              = 1.60714285714285720630e+00  // 45/28     = 0x3FF9B6DB6DB6DB6E
    		G              = 3.57142857142857150787e-01  // 5/14      = 0x3FD6DB6DB6DB6DB7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/fiat/p384_invert.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Code generated by addchain. DO NOT EDIT.
    
    package fiat
    
    // Invert sets e = 1/x, and returns e.
    //
    // If x == 0, Invert returns e = 0.
    func (e *P384Element) Invert(x *P384Element) *P384Element {
    	// Inversion is implemented as exponentiation with exponent p − 2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/fiat/p224_invert.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Code generated by addchain. DO NOT EDIT.
    
    package fiat
    
    // Invert sets e = 1/x, and returns e.
    //
    // If x == 0, Invert returns e = 0.
    func (e *P224Element) Invert(x *P224Element) *P224Element {
    	// Inversion is implemented as exponentiation with exponent p − 2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_downup_pseudo_artifact.txt

    # a --- b
    #  \     \
    #   \     \
    #    c --- d
    #
    # The module dependency graph initially looks like:
    #
    # a --- b.3
    #  \      \
    #   \      \
    #   c.2 --- d.2
    #
    # c.1 --- b.2 (pseudo)
    #
    # b.1 --- e.1
    
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod.orig go.mod
    
    # When we downgrade d.2 to d.1, no dependency on e should be added
    # because nothing else in the module or import graph requires it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  5. buildscripts/checkdeps.sh

    ## FIXME:
    ## In OSX, 'sort -V' option does not exist, hence
    ## we have our own version compare function.
    ## Once OSX has the option, below function is good enough.
    ##
    ## check_minimum_version() {
    ##     versions=($(echo -e "$1\n$2" | sort -V))
    ##     return [ "$1" == "${versions[0]}" ]
    ## }
    ##
    check_minimum_version() {
    	IFS='.' read -r -a varray1 <<<"$1"
    	IFS='.' read -r -a varray2 <<<"$2"
    
    	for i in "${!varray1[@]}"; do
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/envoyfilter/util_test.go

    package envoyfilter
    
    import (
    	"testing"
    
    	"istio.io/istio/pkg/slices"
    )
    
    func TestReplaceAndInsert(t *testing.T) {
    	f := func(e int) (bool, int) {
    		// replace 1 with 10
    		if e == 1 {
    			return true, 10
    		}
    		return false, 0
    	}
    
    	cases := []struct {
    		name         string
    		input        []int
    		replace      []int
    		insertBefore []int
    		insertAfter  []int
    		applied      bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/fiat/generate.go

    	// converted in Bytes and SetBytes.
    	x {{ .Prefix }}MontgomeryDomainFieldElement
    }
    
    const {{ .Prefix }}ElementLen = {{ .BytesLen }}
    
    type {{ .Prefix }}UntypedFieldElement = {{ .FiatType }}
    
    // One sets e = 1, and returns e.
    func (e *{{ .Element }}) One() *{{ .Element }} {
    	{{ .Prefix }}SetOne(&e.x)
    	return e
    }
    
    // Equal returns 1 if e == t, and zero otherwise.
    func (e *{{ .Element }}) Equal(t *{{ .Element }}) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalGroovyCompilationIntegrationTest.groovy

            run("impl:${language.compileTaskName}")
    
            then:
            impl.recompiledClasses('B', 'C', 'C$Inner', 'D', 'D$Inner', 'E', 'E$1', 'F', 'F$Inner')
    
            where:
            visibility << ['public', 'private', '']
        }
    
        def "does full recompilation if change of constant value in annotation"() {
            source api: [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_downup_artifact.txt

    #
    # The module dependency graph initially looks like:
    #
    # m ---- a.1
    # |       |
    # +----- b.1
    # |       |
    # +----- c.1
    # |
    # +----- d.1
    #
    # b.2 ---- c.2
    #  |
    #  +------ d.2
    #  |
    #  +------ e.1
    #
    # If we upgrade module b to version 2, we will upgrade c and d and add a new
    # dependency on e. If b version 2 is disallowed because of any of those
    # dependencies, the other dependencies should not be upgraded as a side-effect.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  10. src/math/floor.go

    		// - Add 0.499.. or 0.5 before truncating depending on whether the truncated
    		//   number is even or odd (respectively).
    		const halfMinusULP = (1 << (shift - 1)) - 1
    		e -= bias
    		bits += (halfMinusULP + (bits>>(shift-e))&1) >> e
    		bits &^= fracMask >> e
    	} else if e == bias-1 && bits&fracMask != 0 {
    		// Round 0.5 < abs(x) < 1.
    		bits = bits&signMask | uvone // +-1
    	} else {
    		// Round abs(x) <= 0.5 including denormals.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top