Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for x130 (0.04 sec)

  1. src/crypto/internal/nistec/fiat/p521_invert.go

    	//	x16       = _11111111 << 8 + _11111111
    	//	x32       = x16 << 16 + x16
    	//	x64       = x32 << 32 + x32
    	//	x65       = 2*x64 + 1
    	//	x129      = x65 << 64 + x64
    	//	x130      = 2*x129 + 1
    	//	x259      = x130 << 129 + x129
    	//	x260      = 2*x259 + 1
    	//	x519      = x260 << 259 + x259
    	//	return      x519 << 2 + 1
    	//
    
    	var z = new(P521Element).Set(e)
    	var t0 = new(P521Element)
    
    	z.Square(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. test/fixedbugs/bug385_64.go

    	z = x128
    	z = x129
    	z = x130
    	z = x131
    	z = x132
    	z = x133
    	z = x134
    	z = x135
    	z = x136
    	z = x137
    	z = x138
    	z = x139
    	z = x140
    	z = x141
    	z = x142
    	z = x143
    	z = x144
    	z = x145
    	z = x146
    	z = x147
    	z = x148
    	z = x149
    	z = x150
    	z = x151
    	z = x152
    	z = x153
    	z = x154
    	z = x155
    	z = x156
    	z = x157
    	z = x158
    	z = x159
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/groovy/repo/org.sample/api/1.3.0/ivy-1.3.0.xml

      ~ limitations under the License.
      -->
    
    <ivy-module version="2.0">
        <info organisation="org.sample"
              module="api"
              revision="1.3.0"
              status="milestone" />
        <publications>
            <artifact />
        </publications>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 852 bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/test/groovy/org/gradle/scala/compile/internal/ScalaCompileOptionsConfigurerTest.groovy

            8             | false             | '2.12.14'           | '-target:jvm-1.8'
            8             | false             | '2.13.0'            | '-target:jvm-1.8'
            8             | true              | '2.13.0'            | '-target:jvm-1.8'
    
            11            | true              | '2.11.12'           | '-target:jvm-1.8'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/kotlin/repo/org.sample/api/1.3.0/api-1.3.0.jar

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/kotlin/repo/org.sample/api/1.3.0/ivy-1.3.0.xml

      ~ limitations under the License.
      -->
    
    <ivy-module version="2.0">
        <info organisation="org.sample"
              module="api"
              revision="1.3.0"
              status="milestone" />
        <publications>
            <artifact />
        </publications>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 852 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/groovy/repo/org.sample/api/1.3.0/api-1.3.0.jar

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - Viewed (0)
  8. src/unicode/casetables.go

    package unicode
    
    var TurkishCase SpecialCase = _TurkishCase
    var _TurkishCase = SpecialCase{
    	CaseRange{0x0049, 0x0049, d{0, 0x131 - 0x49, 0}},
    	CaseRange{0x0069, 0x0069, d{0x130 - 0x69, 0, 0x130 - 0x69}},
    	CaseRange{0x0130, 0x0130, d{0, 0x69 - 0x130, 0}},
    	CaseRange{0x0131, 0x0131, d{0x49 - 0x131, 0, 0x49 - 0x131}},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 755 bytes
    - Viewed (0)
  9. src/unicode/example_test.go

    	const uci = 'İ'
    	fmt.Printf("%#U\n", t.ToLower(uci))
    	fmt.Printf("%#U\n", t.ToTitle(uci))
    	fmt.Printf("%#U\n", t.ToUpper(uci))
    
    	// Output:
    	// U+0069 'i'
    	// U+0130 'İ'
    	// U+0130 'İ'
    	// U+0069 'i'
    	// U+0130 'İ'
    	// U+0130 'İ'
    }
    
    func ExampleIsDigit() {
    	fmt.Printf("%t\n", unicode.IsDigit('৩'))
    	fmt.Printf("%t\n", unicode.IsDigit('A'))
    	// Output:
    	// true
    	// false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 00:18:29 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  10. docs/distributed/decom-compressed-sse-s3.sh

    kill $pid
    
    (minio server http://localhost:9000/tmp/xl/{1...10}/disk{0...1} http://localhost:9001/tmp/xl/{11...30}/disk{0...3} 2>&1 >/tmp/expanded_1.log) &
    pid_1=$!
    
    (minio server --address ":9001" http://localhost:9000/tmp/xl/{1...10}/disk{0...1} http://localhost:9001/tmp/xl/{11...30}/disk{0...3} 2>&1 >/tmp/expanded_2.log) &
    pid_2=$!
    
    sleep 30
    ./mc ready myminio
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top