Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 80 for 012345678 (0.1 sec)

  1. pkg/kubelet/network/dns/dns_test.go

    		{"nameserver\t1.2.3.4", []string{"1.2.3.4"}, []string{}, []string{}, false},
    		{"nameserver \t 1.2.3.4", []string{"1.2.3.4"}, []string{}, []string{}, false},
    		{"nameserver 1.2.3.4\nnameserver 5.6.7.8", []string{"1.2.3.4", "5.6.7.8"}, []string{}, []string{}, false},
    		{"nameserver 1.2.3.4 #comment", []string{"1.2.3.4"}, []string{}, []string{}, false},
    		{"search ", []string{}, []string{}, []string{}, false},  // search empty
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation_test.go

    		{"now-with-dashes/simple": "bar"},
    		{"now-with-dashes/now-with-dashes": "bar"},
    		{"now.with.dots/simple": "bar"},
    		{"now-with.dashes-and.dots/simple": "bar"},
    		{"1-num.2-num/3-num": "bar"},
    		{"1234/5678": "bar"},
    		{"1.2.3.4/5678": "bar"},
    		{"UpperCaseAreOK123": "bar"},
    		{"goodvalue": "123_-.BaR"},
    	}
    	for i := range successCases {
    		errs := ValidateLabels(successCases[i], field.NewPath("field"))
    		if len(errs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/scanner.go

    	case -1:
    		if nlsemi {
    			s.lit = "EOF"
    			s.tok = _Semi
    			break
    		}
    		s.tok = _EOF
    
    	case '\n':
    		s.nextch()
    		s.lit = "newline"
    		s.tok = _Semi
    
    	case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
    		s.number(false)
    
    	case '"':
    		s.stdString()
    
    	case '`':
    		s.rawString()
    
    	case '\'':
    		s.rune()
    
    	case '(':
    		s.nextch()
    		s.tok = _Lparen
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    			wantLogs: []string{
    				`"encrypting content using envelope service" uid="UID"`,
    				`"encrypting content using DEK" uid="UID" key="0123456789" group="" version="" resource="" subresource="" verb="" namespace="" name=""`,
    				`"decrypting content using envelope service" uid="UID" key="0123456789" group="" version="" resource="" subresource="" verb="" namespace="" name=""`,
    			},
    		},
    		{
    			desc: "request info in context",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/validation/objectmeta_test.go

    		{"now-with-dashes/simple": "bar"},
    		{"now-with-dashes/now-with-dashes": "bar"},
    		{"now.with.dots/simple": "bar"},
    		{"now-with.dashes-and.dots/simple": "bar"},
    		{"1-num.2-num/3-num": "bar"},
    		{"1234/5678": "bar"},
    		{"1.2.3.4/5678": "bar"},
    		{"UpperCase123": "bar"},
    		{"a": strings.Repeat("b", TotalAnnotationSizeLimitB-1)},
    		{
    			"a": strings.Repeat("b", TotalAnnotationSizeLimitB/2-1),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 07 03:12:31 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  6. src/text/tabwriter/tabwriter_test.go

    			"\n" +
    			"666666\t666666\t666666\t\t4444\n" +
    			"1\t1\t<font color=red attr=日本語>999999999</font>\t0000000000\n",
    	},
    
    	{
    		"14",
    		1, 0, 2, ' ', AlignRight,
    		".0\t.3\t2.4\t-5.1\t\n" +
    			"23.0\t12345678.9\t2.4\t-989.4\t\n" +
    			"5.1\t12.0\t2.4\t-7.0\t\n" +
    			".0\t0.0\t332.0\t8908.0\t\n" +
    			".0\t-.3\t456.4\t22.1\t\n" +
    			".0\t1.2\t44.4\t-13.3\t\t",
    
    		"    .0          .3    2.4    -5.1\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    		}
    	}
    
    	// extract the numerator
    Num:
    	for i := pos; ; i++ {
    		if i >= end {
    			num = str[pos:end]
    			value = str[0:end]
    			return
    		}
    		switch str[i] {
    		case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
    		default:
    			num = str[pos:i]
    			pos = i
    			break Num
    		}
    	}
    
    	// if we stripped all numerator positions, always return 0
    	if len(num) == 0 {
    		num = "0"
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/expr3.go

    	type A0 [0]int
    	_ = A0{}
    	_ = A0{0 /* ERRORx `index .* out of bounds` */}
    	_ = A0{0 /* ERRORx `index .* out of bounds` */ : 0}
    
    	type A1 [10]int
    	_ = A1{}
    	_ = A1{0, 1, 2}
    	_ = A1{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}
    	_ = A1{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 /* ERRORx `index .* out of bounds` */ }
    	_ = A1{- /* ERROR "negative" */ 1: 0}
    	_ = A1{8: 8, 9}
    	_ = A1{8: 8, 9, 10 /* ERRORx `index .* out of bounds` */ }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 22:41:49 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  9. src/fmt/scan.go

    			s.error(errBool)
    		}
    		return false
    	}
    	return false
    }
    
    // Numerical elements
    const (
    	binaryDigits      = "01"
    	octalDigits       = "01234567"
    	decimalDigits     = "0123456789"
    	hexadecimalDigits = "0123456789aAbBcCdDeEfF"
    	sign              = "+-"
    	period            = "."
    	exponent          = "eEpP"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  10. src/test/java/jcifs/tests/TimeoutTest.java

                f.createNewFile();
                try {
                    try ( OutputStream os = f.getOutputStream() ) {
                        os.write(new byte[] {
                            1, 2, 3, 4, 5, 6, 7, 8
                        });
                    }
    
                    try ( InputStream is = f.getInputStream() ) {
                        for ( int i = 0; i < 8; i++ ) {
                            is.read();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12.4K bytes
    - Viewed (0)
Back to top