Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 92 for 12p6 (0.05 sec)

  1. src/math/big/floatconv_test.go

    		{"0o12", 10},
    		{"0O12E2", 1000},
    		{"0o.4", 0.5},
    		{"0o.01", 0.015625},
    		{"0o.01e3", 15.625},
    
    		// octal mantissa, binary exponent
    		{"0o0p+10", 0},
    		{"-0o0p-10", -zero_},
    		{"0o.12p6", 10},
    		{"0o4p-3", 0.5},
    		{"0o0014p-6", 0.1875},
    		{"0o.001p9", 1},
    		{"0o0.01p7", 2},
    		{"0O0.01P+2", 0.0625},
    
    		// hexadecimal mantissa and exponent
    		{"0x0", 0},
    		{"-0x0", -zero_},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.26.md

    ## Dependencies
    
    ### Added
    _Nothing has changed._
    
    ### Changed
    - github.com/google/cel-go: [v0.12.6 → v0.12.7](https://github.com/google/cel-go/compare/v0.12.6...v0.12.7)
    - go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp: v0.35.0 → v0.35.1
    
    ### Removed
    _Nothing has changed._
    
    
    
    # v1.26.8
    
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_CONNECTS                        = 0x4B5 // 1205
    	SYS_CONNECTSERVER                   = 0x4B5 // 1205
    	SYS_DISCONNE                        = 0x4B6 // 1206
    	SYS_DISCONNECTSERVER                = 0x4B6 // 1206
    	SYS_JOINWORK                        = 0x4B7 // 1207
    	SYS_JOINWORKUNIT                    = 0x4B7 // 1207
    	SYS_LEAVEWOR                        = 0x4B8 // 1208
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/dependencyReport.out

    log4j:log4j:1.2.16 FAILED
       Failures:
          - Could not resolve log4j:log4j:1.2.16.
              - Module 'log4j:log4j' has been rejected:
                   Cannot select module with conflict on capability 'log4j:log4j:1.2.16' also provided by [org.slf4j:log4j-over-slf4j:1.7.10(compile)]
    
    log4j:log4j:1.2.16 FAILED
    \--- org.apache.zookeeper:zookeeper:3.4.9
         \--- compileClasspath
    
    org.slf4j:log4j-over-slf4j:1.7.10 FAILED
       Failures:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/route/interface_openbsd.go

    		return nil, errInvalidMessage
    	}
    	m := &InterfaceAddrMessage{
    		Version: int(b[2]),
    		Type:    int(b[3]),
    		Flags:   int(nativeEndian.Uint32(b[12:16])),
    		Index:   int(nativeEndian.Uint16(b[6:8])),
    		raw:     b[:l],
    	}
    	var err error
    	m.Addrs, err = parseAddrs(uint(nativeEndian.Uint32(b[12:16])), parseKernelInetAddr, b[bodyOff:])
    	if err != nil {
    		return nil, err
    	}
    	return m, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/dist/README

    5. Using go_bootstrap, build the remaining Go 1.x standard library and commands.
    
    Because of backward compatibility, although the steps above say Go 1.20.6,
    in practice any release ≥ Go 1.20.6 but < Go 1.x will work as the bootstrap base.
    Releases ≥ Go 1.x are very likely to work as well.
    
    See https://go.dev/s/go15bootstrap for more details about the original bootstrap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 25 17:20:22 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/route/route_openbsd.go

    	nativeEndian.PutUint32(b[28:32], uint32(m.Seq))
    	attrs, err := marshalAddrs(b[sizeofRtMsghdr:], m.Addrs)
    	if err != nil {
    		return nil, err
    	}
    	if attrs > 0 {
    		nativeEndian.PutUint32(b[12:16], uint32(attrs))
    	}
    	return b, nil
    }
    
    func (*wireFormat) parseRouteMessage(_ RIBType, b []byte) (Message, error) {
    	if len(b) < sizeofRtMsghdr {
    		return nil, errMessageTooShort
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. test/typeparam/issue48462.dir/main.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"reflect"
    
    	"./a"
    )
    
    func main() {
    	e := []int{1, 2, 2, 3, 1, 6}
    
    	got := a.Unique(e)
    	want := []int{1, 2, 3, 6}
    	if !reflect.DeepEqual(got, want) {
    		panic(fmt.Sprintf("got %d, want %d", got, want))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 397 bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/route/route_classic.go

    	nativeEndian.PutUint32(b[20:24], uint32(m.Seq))
    	attrs, err := marshalAddrs(b[w.bodyOff:], m.Addrs)
    	if err != nil {
    		return nil, err
    	}
    	if attrs > 0 {
    		nativeEndian.PutUint32(b[12:16], uint32(attrs))
    	}
    	return b, nil
    }
    
    func (w *wireFormat) parseRouteMessage(typ RIBType, b []byte) (Message, error) {
    	if len(b) < w.bodyOff {
    		return nil, errMessageTooShort
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. src/crypto/aes/block.go

    	byteorder.BePutUint32(dst[8:12], s2)
    	byteorder.BePutUint32(dst[12:16], s3)
    }
    
    // Decrypt one block from src into dst, using the expanded key xk.
    func decryptBlockGo(xk []uint32, dst, src []byte) {
    	_ = src[15] // early bounds check
    	s0 := byteorder.BeUint32(src[0:4])
    	s1 := byteorder.BeUint32(src[4:8])
    	s2 := byteorder.BeUint32(src[8:12])
    	s3 := byteorder.BeUint32(src[12:16])
    
    	// First round just XORs input with key.
    	s0 ^= xk[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top