Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 80 for 012345678 (0.22 sec)

  1. src/math/big/ratconv.go

    // This file implements rat-to-string conversion functions.
    
    package big
    
    import (
    	"errors"
    	"fmt"
    	"io"
    	"strconv"
    	"strings"
    )
    
    func ratTok(ch rune) bool {
    	return strings.ContainsRune("+-/0123456789.eE", ch)
    }
    
    var ratZero Rat
    var _ fmt.Scanner = &ratZero // *Rat must implement fmt.Scanner
    
    // Scan is a support routine for fmt.Scanner. It accepts the formats
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/connection/RouteSelectorTest.kt

            Proxy(Proxy.Type.HTTP, InetSocketAddress.createUnresolved("proxy.example.com", 1003)),
            InetSocketAddress(ipv4Address, 5678),
          ).toString(),
        ).isEqualTo("example.com:1003 via proxy 1.2.3.4:5678")
      }
    
      @Test fun routeToStringIpv6() {
        val ipv6Address =
          InetAddress.getByAddress(
            byteArrayOf(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
          )
        assertThat(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Mar 06 17:33:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. cmd/xl-storage-format_test.go

    			},
    		},
    		Erasure: ErasureInfo{
    			Algorithm:    ReedSolomon.String(),
    			DataBlocks:   4,
    			ParityBlocks: 2,
    			BlockSize:    10000,
    			Index:        1,
    			Distribution: []int{1, 2, 3, 4, 5, 6, 7, 8},
    			Checksums: []ChecksumInfo{
    				{
    					PartNumber: 1,
    					Algorithm:  HighwayHash256S,
    					Hash:       nil,
    				},
    				{
    					PartNumber: 2,
    					Algorithm:  HighwayHash256S,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/expvar/expvar_test.go

    		`\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\u0008\t\n\u000b\u000c\r\u000e\u000f` +
    		`\u0010\u0011\u0012\u0013\u0014\u0015\u0016\u0017\u0018\u0019\u001a\u001b\u001c\u001d\u001e\u001f` +
    		` !\"#$%\u0026'()*+,-./0123456789:;\u003c=\u003e?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_` +
    		"`" + `abcdefghijklmnopqrstuvwxyz{|}~` + "\x7f" + `\u2028\u2029"`
    	if got != want {
    		t.Errorf("appendJSONQuote mismatch:\ngot  %v\nwant %v", got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:46:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. src/encoding/json/decode.go

    				i++ // escaped char
    			case '"':
    				i++ // tokenize the closing quote too
    				break Switch
    			}
    		}
    	case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-': // number
    		for ; i < len(data); i++ {
    			switch data[i] {
    			case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
    				'.', 'e', 'E', '+', '-':
    			default:
    				break Switch
    			}
    		}
    	case 't': // true
    		i += len("rue")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  6. src/internal/syscall/windows/registry/registry_test.go

    package registry_test
    
    import (
    	"bytes"
    	"crypto/rand"
    	"os"
    	"syscall"
    	"testing"
    	"unsafe"
    
    	"internal/syscall/windows/registry"
    )
    
    func randKeyName(prefix string) string {
    	const numbers = "0123456789"
    	buf := make([]byte, 10)
    	rand.Read(buf)
    	for i, b := range buf {
    		buf[i] = numbers[b%byte(len(numbers))]
    	}
    	return prefix + string(buf)
    }
    
    func TestReadSubKeyNames(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. src/strconv/quote.go

    			// single-byte string, possibly not UTF-8
    			value = v
    			break
    		}
    		if !utf8.ValidRune(v) {
    			err = ErrSyntax
    			return
    		}
    		value = v
    		multibyte = true
    	case '0', '1', '2', '3', '4', '5', '6', '7':
    		v := rune(c) - '0'
    		if len(s) < 2 {
    			err = ErrSyntax
    			return
    		}
    		for j := 0; j < 2; j++ { // one digit already; two more
    			x := rune(s[j]) - '0'
    			if x < 0 || x > 7 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  8. pkg/volume/util/atomic_writer.go

    //     <target-dir>/k8s -> ..data/k8s
    //
    //     The data directory itself is a link to a timestamped directory with
    //     the real data:
    //     <target-dir>/..data          -> ..2016_02_01_15_04_05.12345678/
    //     NOTE(claudiub): We need to create these symlinks AFTER we've finished creating and
    //     linking everything else. On Windows, if a target does not exist, the created symlink
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/topologymanager/policy_test.go

    			1: {11, 10, 12, 12},
    			2: {12, 12, 10, 11},
    			3: {12, 12, 11, 10},
    		},
    	}
    }
    
    func commonNUMAInfoEightNodes() *NUMAInfo {
    	return &NUMAInfo{
    		Nodes: []int{0, 1, 2, 3, 4, 5, 6, 7},
    		NUMADistances: NUMADistances{
    			0: {10, 11, 12, 12, 30, 30, 30, 30},
    			1: {11, 10, 12, 12, 30, 30, 30, 30},
    			2: {12, 12, 10, 11, 30, 30, 30, 30},
    			3: {12, 12, 11, 10, 30, 30, 30, 30},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:08 UTC 2022
    - 34.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/yaml/yaml_test.go

    			data: []byte(`
    apiVersion: v1
    data:
    a: &a [1234567890.12345678,1234567890.12345678,1234567890.12345678,1234567890.12345678,1234567890.12345678,1234567890.12345678,1234567890.12345678,1234567890.12345678,1234567890.12345678]
    b: &b [*a,*a,*a,*a,*a,*a,*a,*a,*a,*a,*a,*a,*a,*a,*a,*a,*a,*a]
    c: &c [*b,*b,*b,*b,*b,*b,*b,*b,*b,*b,*b,*b,*b,*b,*b,*b,*b,*b]
    d: &d [*c,*c,*c,*c,*c,*c,*c,*c,*c,*c,*c,*c,*c,*c,*c,*c,*c,*c]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 06 20:18:22 UTC 2020
    - 14.3K bytes
    - Viewed (0)
Back to top