Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for 5e10 (0.08 sec)

  1. src/net/mac.go

    //	00:00:00:00:fe:80:00:00:00:00:00:00:02:00:5e:10:00:00:00:01
    //	00-00-5e-00-53-01
    //	02-00-5e-10-00-00-00-01
    //	00-00-00-00-fe-80-00-00-00-00-00-00-02-00-5e-10-00-00-00-01
    //	0000.5e00.5301
    //	0200.5e10.0000.0001
    //	0000.0000.fe80.0000.0000.0000.0200.5e10.0000.0001
    func ParseMAC(s string) (hw HardwareAddr, err error) {
    	if len(s) < 14 {
    		goto error
    	}
    
    	if s[2] == ':' || s[2] == '-' {
    		if (len(s)+1)%3 != 0 {
    			goto error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. src/net/mac_test.go

    	{"0000.5e00.5301", HardwareAddr{0x00, 0x00, 0x5e, 0x00, 0x53, 0x01}, ""},
    
    	// See RFC 7042, Section 2.2.2.
    	{"02:00:5e:10:00:00:00:01", HardwareAddr{0x02, 0x00, 0x5e, 0x10, 0x00, 0x00, 0x00, 0x01}, ""},
    	{"02-00-5e-10-00-00-00-01", HardwareAddr{0x02, 0x00, 0x5e, 0x10, 0x00, 0x00, 0x00, 0x01}, ""},
    	{"0200.5e10.0000.0001", HardwareAddr{0x02, 0x00, 0x5e, 0x10, 0x00, 0x00, 0x00, 0x01}, ""},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 27 02:36:14 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/CombinatorsTest.kt

            assertSuccess(parser(".5"))
            assertSuccess(parser("0.5"))
            assertSuccess(parser("0.5e10"))
    
            assertSuccess(parser("0f"))
            assertSuccess(parser("0F"))
            assertSuccess(parser("12e3F"))
            assertSuccess(parser(".5f"))
            assertSuccess(parser("0.5f"))
            assertSuccess(parser("0.5e10f"))
    
            assertFailure(
                parser("bar"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/resources/META-INF/analysis-api/analysis-api-fe10.xml

        />
    
        <projectService
            serviceInterface="org.jetbrains.kotlin.idea.references.KotlinReferenceProviderContributor"
            serviceImplementation="org.jetbrains.kotlin.references.fe10.base.KtFe10KotlinReferenceProviderContributor"
        />
    
        <projectService
            serviceInterface="org.jetbrains.kotlin.idea.references.ReadWriteAccessChecker"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. test/literal2.go

    	assert(0. == 0.0)
    	assert(.0 == 0.0)
    	assert(1_0. == 10.0)
    	assert(.0_1 == 0.01)
    	assert(1_0.0_1 == 10.01)
    	assert(1_0.0_1i == complex(0, 10.01))
    
    	assert(0.e1_0 == 0.0e10)
    	assert(.0e1_0 == 0.0e10)
    	assert(1_0.e1_0 == 10.0e10)
    	assert(.0_1e1_0 == 0.01e10)
    	assert(1_0.0_1e1_0 == 10.01e10)
    	assert(1_0.0_1e1_0i == complex(0, 10.01e10))
    
    	// hexadecimal floats
    	assert(equal(0x1p-2, 0.25))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 22:45:09 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  6. src/image/png/testdata/pngsuite/basn0g16.sng

    0200 0b00 1400 1d00 2600 2f00 3800 4100 4a00 5300 5c00 6500 6e00 7700 8000 8900 9200 9b00 a400 ad00 b600 bf00 c800 d100 da00 e300 ec00 f500 fe00 eaff cfff b4ff 
    0400 0d00 1600 1f00 2800 3100 3a00 4300 4c00 5500 5e00 6700 7000 7900 8200 8b00 9400 9d00 a600 af00 b800 c100 ca00 d300 dc00 e500 ee00 f700 ffff e4ff c9ff aeff 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 5.2K bytes
    - Viewed (0)
  7. test/fixedbugs/issue43480.go

    // Issue #43480: ICE on large uint64 constants in switch cases.
    
    package main
    
    func isPow10(x uint64) bool {
    	switch x {
    	case 1e0, 1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8, 1e9,
    		1e10, 1e11, 1e12, 1e13, 1e14, 1e15, 1e16, 1e17, 1e18, 1e19:
    		return true
    	}
    	return false
    }
    
    func main() {
    	var x uint64 = 1
    
    	for {
    		if !isPow10(x) || isPow10(x-1) || isPow10(x+1) {
    			panic(x)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 04 10:30:07 UTC 2021
    - 626 bytes
    - Viewed (0)
  8. src/internal/fmtsort/sort_test.go

    	ct(reflect.TypeOf(uintptr(0)), 0, 1, 5),
    	ct(reflect.TypeOf(string("")), "", "a", "ab"),
    	ct(reflect.TypeOf(float32(0)), math.NaN(), math.Inf(-1), -1e10, 0, 1e10, math.Inf(1)),
    	ct(reflect.TypeOf(float64(0)), math.NaN(), math.Inf(-1), -1e10, 0, 1e10, math.Inf(1)),
    	ct(reflect.TypeOf(complex64(0+1i)), -1-1i, -1+0i, -1+1i, 0-1i, 0+0i, 0+1i, 1-1i, 1+0i, 1+1i),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. pkg/api/testing/node_example.json

                {
                    "type": "LegacyHostIP",
                    "address": "104.197.20.11"
                }
            ],
            "nodeInfo": {
                "machineID": "",
                "systemUUID": "D59FA3FA-7B5B-7287-5E1A-1D79F13CB577",
                "bootID": "44a832f3-8cfb-4de5-b7d2-d66030b6cd95",
                "kernelVersion": "3.16.0-0.bpo.4-amd64",
                "osImage": "Debian GNU/Linux 7 (wheezy)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 00:36:50 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. src/internal/runtime/syscall/defs_linux_mips64x.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux && (mips64 || mips64le)
    
    package syscall
    
    const (
    	SYS_MPROTECT      = 5010
    	SYS_FCNTL         = 5070
    	SYS_EPOLL_CTL     = 5208
    	SYS_EPOLL_PWAIT   = 5272
    	SYS_EPOLL_CREATE1 = 5285
    	SYS_EPOLL_PWAIT2  = 5441
    	SYS_EVENTFD2      = 5284
    
    	EFD_NONBLOCK = 0x80
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 14:54:29 UTC 2024
    - 538 bytes
    - Viewed (0)
Back to top