Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for 1234567890123456 (0.2 sec)

  1. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

         */
        @Test
        void testMng6572() {
            String a = "20190126.230843"; // resembles a SNAPSHOT
            String b = "1234567890.12345"; // 10 digit number
            String c = "123456789012345.1H.5-beta"; // 15 digit number
            String d = "12345678901234567890.1H.5-beta"; // 20 digit number
    
            checkVersionsOrder(a, b);
            checkVersionsOrder(b, c);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:39:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/image-auto.yaml

        spec:
          containers:
            - name: istio-proxy
              image: auto
    ---
    # No image auto, should not produce error!
    apiVersion: v1
    kind: Pod
    metadata:
      name: istiod-canary-1234567890-12345
      namespace: istio-system
      labels:
        app: istiod
        istio: pilot
        sidecar.istio.io/inject: "true"
    spec:
      containers:
        - image: ubuntu
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. src/strconv/ftoa_test.go

    	{1.2345e6, 'g', 5, "1.2345e+06"},
    
    	// Round to even
    	{1.2345e6, 'e', 3, "1.234e+06"},
    	{1.2355e6, 'e', 3, "1.236e+06"},
    	{1.2345, 'f', 3, "1.234"},
    	{1.2355, 'f', 3, "1.236"},
    	{1234567890123456.5, 'e', 15, "1.234567890123456e+15"},
    	{1234567890123457.5, 'e', 15, "1.234567890123458e+15"},
    	{108678236358137.625, 'g', -1, "1.0867823635813762e+14"},
    
    	{1e23, 'e', 17, "9.99999999999999916e+22"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 24 23:50:20 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/injection.yaml

        name: server
    ---
    # Control plane pod proving the existence of istio.io/rev 'canary'
    apiVersion: v1
    kind: Pod
    metadata:
      name: istiod-canary-1234567890-12345
      namespace: istio-system
      labels:
        app: istiod
        istio: pilot
        istio.io/rev: canary
    spec:
      containers:
      - image: gcr.io/google-samples/microservices-demo/adservice:v0.1.1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 14:06:10 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/bufio/bufio_test.go

    		{[]byte("012345678901234"), true, nil},
    		{nil, false, nil},
    		{[]byte("012345678901234"), true, nil},
    		{nil, false, nil},
    		{nil, false, io.EOF},
    	}},
    	{"0123456789012345\r012345678901234\r", []readLineResult{
    		{[]byte("0123456789012345"), true, nil},
    		{[]byte("\r012345678901234"), true, nil},
    		{[]byte("\r"), false, nil},
    		{nil, false, io.EOF},
    	}},
    }
    
    func TestReadLineNewlines(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  6. pkg/proxy/apis/config/validation/validation_test.go

    			ip:           "10.10.10.10",
    			expectedErrs: field.ErrorList{field.Invalid(newPath.Child("HealthzBindAddress"), "10.10.10.10", "must be IP:port")},
    		},
    		"digits outside of 1-255": {
    			ip:           "123.456.789.10:12345",
    			expectedErrs: field.ErrorList{field.Invalid(newPath.Child("HealthzBindAddress"), "123.456.789.10", "must be a valid IP")},
    		},
    		"invalid named-port": {
    			ip:           "10.10.10.10:foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  7. src/strings/strings_test.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top