Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for 99999999999 (0.09 sec)

  1. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

        void testMinimumSegment() {
            assertOrder(X_LT_Y, "1.min", "1.0-alpha-1");
            assertOrder(X_LT_Y, "1.min", "1.0-SNAPSHOT");
            assertOrder(X_LT_Y, "1.min", "1.0");
            assertOrder(X_LT_Y, "1.min", "1.9999999999");
    
            assertOrder(X_EQ_Y, "1.min", "1.MIN");
    
            assertOrder(X_GT_Y, "1.min", "0.99999");
            assertOrder(X_GT_Y, "1.min", "0.max");
        }
    
        @Test
        void testMaximumSegment() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time_proto.go

    	// Non-negative fractions of a second at nanosecond resolution. Negative
    	// second values with fractions must still have non-negative nanos values
    	// that count forward in time. Must be from 0 to 999,999,999
    	// inclusive. This field may be limited in precision depending on context.
    	Nanos int32 `json:"nanos" protobuf:"varint,2,opt,name=nanos"`
    }
    
    // Timestamp returns the Time as a new Timestamp value.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 25 18:54:00 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/net/HostAndPortTest.java

      }
    
      public void testFromStringBadPort() {
        // Out-of-range ports.
        checkFromStringCase("google.com:65536", 1, null, 99, false);
        checkFromStringCase("google.com:9999999999", 1, null, 99, false);
        // Invalid port parts.
        checkFromStringCase("google.com:port", 1, null, 99, false);
        checkFromStringCase("google.com:-25", 1, null, 99, false);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 11:19:47 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. src/image/png/testdata/pngsuite/ftbgn2c16.sng

    ffffffffffff ffffffffffff ffffffffffff 929292929292 0c0cabab0c0c 0000bdbd0001 0000f4f40000 2020dddd2020 919191919191 949494949494 979797979797 999999999999 9b9b9b9b9b9b 999999999999 8b8b8b8b8b8b 7f7f7f7f7f7f 7e7e7e7e7e7e 7e7e7e7e7e7e 7d7d7d7d7d7d 777777777777 626262626262 535353536060 12121212bebe 00010000cccc 000000009292 000000016969 000000006767 2a2a2a2a5555 acacacacacac ffffffffffff ffffffffffff ffffffffffff 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 27 22:27:41 UTC 2016
    - 13.2K bytes
    - Viewed (0)
  5. src/image/png/testdata/pngsuite/ftbbn2c16.sng

    ffffffffffff ffffffffffff ffffffffffff 929292929292 0c0cabab0c0c 0000bdbd0001 0000f4f40000 2020dddd2020 919191919191 949494949494 979797979797 999999999999 9b9b9b9b9b9b 999999999999 8b8b8b8b8b8b 7f7f7f7f7f7f 7e7e7e7e7e7e 7e7e7e7e7e7e 7d7d7d7d7d7d 777777777777 626262626262 535353536060 12121212bebe 00010000cccc 000000009292 000000016969 000000006767 2a2a2a2a5555 acacacacacac ffffffffffff ffffffffffff ffffffffffff 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 27 22:27:41 UTC 2016
    - 13.2K bytes
    - Viewed (0)
  6. pkg/kubelet/pod/pod_manager_test.go

    			Namespace:   "default",
    			Annotations: map[string]string{kubetypes.ConfigSourceAnnotationKey: "file"},
    		},
    	}
    
    	expectedPods := []*v1.Pod{
    		{
    			ObjectMeta: metav1.ObjectMeta{
    				UID:         "999999999",
    				Name:        "taco",
    				Namespace:   "default",
    				Annotations: map[string]string{kubetypes.ConfigSourceAnnotationKey: "api"},
    			},
    		},
    		staticPod,
    	}
    	updates := append(expectedPods, mirrorPod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 16:57:27 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. src/go/constant/value_test.go

    	{"2.71828182845904523536028747135266249775724709369995957496696763", "2.71828", "271828182845904523536028747135266249775724709369995957496696763/100000000000000000000000000000000000000000000000000000000000000"},
    	{"0e9999999999", "0", "0"},   // issue #16176
    	{"-6e-1886451601", "0", "0"}, // issue #20228
    
    	// Complex
    	{"0i", "(0 + 0i)", "(0 + 0i)"},
    	{"-0i", "(0 + 0i)", "(0 + 0i)"},
    	{"10i", "(0 + 10i)", "(0 + 10i)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/math/StatsTesting.java

        PairedStatsAccumulator accumulator =
            createFilledPairedStatsAccumulator(MANY_VALUES, OTHER_MANY_VALUES);
        PairedStats stats = accumulator.snapshot();
        accumulator.add(99.99, 9999.9999); // should do nothing to the snapshot
        return stats;
      }
    
      private static PairedStats buildHorizontalValuesPairedStats() {
        PairedStatsAccumulator accumulator = new PairedStatsAccumulator();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 09 22:49:56 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  9. src/runtime/string_test.go

    		{"05K", 0, false},
    		{"10M", 0, false},
    		{"100G", 0, false},
    		{"99T", 0, false},
    		{"99999999999999999999KB", 0, false},
    		{"99999999999999999MB", 0, false},
    		{"99999999999999GB", 0, false},
    		{"99999999999TB", 0, false},
    		{"99999999999TiB", 0, false},
    		{"555EB", 0, false},
    	} {
    		out, ok := runtime.ParseByteCount(test.in)
    		if test.out != out || test.ok != ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 13 14:05:23 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  10. src/math/big/ratconv_test.go

    	{"53/70893980658822810696", "53/70893980658822810696", true},
    	{"106/141787961317645621392", "53/70893980658822810696", true},
    	{"204211327800791583.81095", "4084226556015831676219/20000", true},
    	{"0e9999999999", "0", true}, // issue #16176
    }
    
    // These are not supported by fmt.Fscanf.
    var setStringTests2 = []StringTest{
    	// invalid
    	{in: "4/3x"},
    	{in: "0/-1"},
    	{in: "-1/-1"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
Back to top