Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 236 for powtab (0.2 sec)

  1. test/fixedbugs/issue41780.go

    	d  [8]byte // digits, big-endian representation
    	dp int     // decimal point
    }
    
    var powtab = []int{1, 3, 6, 9, 13, 16, 19, 23, 26}
    
    //go:noinline
    func foo(d *decimal) int {
    	exp := int(d.d[1])
    	if d.dp < 0 || d.dp == 0 && d.d[0] < '5' {
    		var n int
    		if -d.dp >= len(powtab) {
    			n = 27
    		} else {
    			n = powtab[-d.dp] // incorrect CMP -> CMN substitution causes indexing panic.
    		}
    		exp += n
    	}
    	return exp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 06 01:14:39 UTC 2020
    - 845 bytes
    - Viewed (0)
  2. src/strconv/atof.go

    	exp = 0
    	for d.dp > 0 {
    		var n int
    		if d.dp >= len(powtab) {
    			n = 27
    		} else {
    			n = powtab[d.dp]
    		}
    		d.Shift(-n)
    		exp += n
    	}
    	for d.dp < 0 || d.dp == 0 && d.d[0] < '5' {
    		var n int
    		if -d.dp >= len(powtab) {
    			n = 27
    		} else {
    			n = powtab[-d.dp]
    		}
    		d.Shift(n)
    		exp -= n
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/plugin-portal-plugin-page.png

    plugin-portal-plugin-page.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 199.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/plugin-portal-page.png

    plugin-portal-page.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 376K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/plugin-portal-api-keys.png

    plugin-portal-api-keys.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 71K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/plugin-portal-registration-page.png

    plugin-portal-registration-page.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[publishing_portal]]
    = Publishing Plugins to the Gradle Plugin Portal
    :portal: Gradle Plugin Portal
    :plugin: Greeting Plugin
    :publishplugin: Plugin Publishing Plugin
    :plugin-reference-documentation: https://plugins.gradle.org/docs/publish-plugin[reference documentation of the {publishplugin}]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_response_model/test_tutorial003_02.py

    client = TestClient(app)
    
    
    def test_get_portal():
        response = client.get("/portal")
        assert response.status_code == 200, response.text
        assert response.json() == {"message": "Here's your interdimensional portal."}
    
    
    def test_get_redirect():
        response = client.get("/portal", params={"teleport": True}, follow_redirects=False)
        assert response.status_code == 307, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. src/math/pow_s390x.s

    // Adjusted from asm to remove offset and convert
    DATA ·powtabi<> + 0(SB)/8, $0x1010101
    DATA ·powtabi<> + 8(SB)/8, $0x101020202020203
    DATA ·powtabi<> + 16(SB)/8, $0x303030404040405
    DATA ·powtabi<> + 24(SB)/8, $0x505050606060708
    DATA ·powtabi<> + 32(SB)/8, $0x90a0b0c0d0e0f10
    DATA ·powtabi<> + 40(SB)/8, $0x1011111212121313
    DATA ·powtabi<> + 48(SB)/8, $0x1314141414151515
    DATA ·powtabi<> + 56(SB)/8, $0x1516161617171717
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_response_model/test_tutorial003_05_py310.py

    
    @needs_py310
    def test_get_portal(client: TestClient):
        response = client.get("/portal")
        assert response.status_code == 200, response.text
        assert response.json() == {"message": "Here's your interdimensional portal."}
    
    
    @needs_py310
    def test_get_redirect(client: TestClient):
        response = client.get("/portal", params={"teleport": True}, follow_redirects=False)
        assert response.status_code == 307, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top