Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for 987654321G (0.16 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"1.7E18", decQuantity(17, 17, DecimalExponent)},
    
    		{"9.01", decQuantity(901, -2, DecimalSI)},
    		{"8.1k", decQuantity(81, 2, DecimalSI)},
    		{"7.123456M", decQuantity(7123456, 0, DecimalSI)},
    		{"6.987654321G", decQuantity(6987654321, 0, DecimalSI)},
    		{"5.444T", decQuantity(5444, 9, DecimalSI)},
    		{"40.1T", decQuantity(401, 11, DecimalSI)},
    		{"300.2T", decQuantity(3002, 11, DecimalSI)},
    		{"2.5P", decQuantity(25, 14, DecimalSI)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. src/regexp/syntax/parse_test.go

    	{`a{2}?`, `nrep{2,2 lit{a}}`},
    	{`a{2,3}?`, `nrep{2,3 lit{a}}`},
    	{`a{2,}?`, `nrep{2,-1 lit{a}}`},
    	// Malformed { } are treated as literals.
    	{`x{1001`, `str{x{1001}`},
    	{`x{9876543210`, `str{x{9876543210}`},
    	{`x{9876543210,`, `str{x{9876543210,}`},
    	{`x{2,1`, `str{x{2,1}`},
    	{`x{1,9876543210`, `str{x{1,9876543210}`},
    	{``, `emp{}`},
    	{`|`, `emp{}`}, // alt{emp{}emp{}} but got factored
    	{`|x|`, `alt{emp{}lit{x}emp{}}`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/lang/FieldUtilTest.java

    public class FieldUtilTest {
    
        /** */
        public Object objectField;
    
        /** */
        public int intField;
    
        /** */
        public String stringField;
    
        /** */
        public static final int INT_DATA = 987654321;
    
        /** */
        public static final String STRING_DATA = "Hello World!";
    
        /**
         * @throws Exception
         */
        @Test
        public void testGet() throws Exception {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. pkg/test/fakes/gce_metadata_server/main.go

    	"log"
    	"net/http"
    	"os"
    	"os/signal"
    	"syscall"
    
    	"github.com/gorilla/mux"
    )
    
    const (
    	projID     = "test-project"
    	projNumber = "123456789"
    	instance   = "test-instance"
    	instID     = "987654321"
    	zone       = "us-west1-c"
    
    	metaPrefix     = "/computeMetadata/v1"
    	projIDPath     = metaPrefix + "/project/project-id"
    	projNumberPath = metaPrefix + "/project/numeric-project-id"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. pkg/kubelet/pod/pod_manager_test.go

    }
    
    // Tests that pods/maps are properly set after the pod update, and the basic
    // methods work correctly.
    func TestGetSetPods(t *testing.T) {
    	mirrorPod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "987654321",
    			Name:      "bar",
    			Namespace: "default",
    			Annotations: map[string]string{
    				kubetypes.ConfigSourceAnnotationKey: "api",
    				kubetypes.ConfigMirrorAnnotationKey: "mirror",
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 16:57:27 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. src/math/big/int_test.go

    var sumZZ = []argZZ{
    	{NewInt(0), NewInt(0), NewInt(0)},
    	{NewInt(1), NewInt(1), NewInt(0)},
    	{NewInt(1111111110), NewInt(123456789), NewInt(987654321)},
    	{NewInt(-1), NewInt(-1), NewInt(0)},
    	{NewInt(864197532), NewInt(-123456789), NewInt(987654321)},
    	{NewInt(-1111111110), NewInt(-123456789), NewInt(-987654321)},
    }
    
    var prodZZ = []argZZ{
    	{NewInt(0), NewInt(0), NewInt(0)},
    	{NewInt(0), NewInt(1), NewInt(0)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_test.go

    	spec := v1.PodSpec{NodeName: string(kl.nodeName), Containers: []v1.Container{{Ports: []v1.ContainerPort{{HostPort: 80}}}}}
    	pods := []*v1.Pod{
    		podWithUIDNameNsSpec("123456789", "newpod", "foo", spec),
    		podWithUIDNameNsSpec("987654321", "oldpod", "foo", spec),
    	}
    	// Make sure the Pods are in the reverse order of creation time.
    	pods[1].CreationTimestamp = metav1.NewTime(time.Now())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  8. src/runtime/string_test.go

    		{"98765432100", 98765432100, true},
    		{"9223372036854775807", 1<<63 - 1, true},
    
    		// Good trivial suffix inputs.
    		{"1B", 1, true},
    		{"12345B", 12345, true},
    		{"012345B", 12345, true},
    		{"98765432100B", 98765432100, true},
    		{"9223372036854775807B", 1<<63 - 1, true},
    
    		// Good binary suffix inputs.
    		{"1KiB", 1 << 10, true},
    		{"05KiB", 5 << 10, true},
    		{"1MiB", 1 << 20, true},
    		{"10MiB", 10 << 20, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 13 14:05:23 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-prefer-tf2xla.mlir

      %cst = "tf.Const"() {value = dense<[32, 12, 12, 64]> : tensor<4xi32>} : () -> tensor<4xi32>
      %0 = "tf.RandomUniform"(%cst) {seed = 87654321 : i64, seed2 = 0 : i64} : (tensor<4xi32>) -> tensor<32x12x12x64xf32>
        // CHECK: return %17 : tensor<32x12x12x64xf32>
      func.return %0 : tensor<32x12x12x64xf32>
    }
    
    // CHECK-LABEL: slice_variable_start
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

                "+1.+2.+3.4",
                "1.2.3.4e0",
                "6:5:4:3:2:1:0", // too few parts
                "::7:6:5:4:3:2:1:0", // too many parts
                "7:6:5:4:3:2:1:0::", // too many parts
                "9:8:7:6:5:4:3::2:1", // too many parts
                "0:1:2:3::4:5:6:7", // :: must remove at least one 0.
                "3ffe:0:0:0:0:0:0:0:1", // too many parts (9 instead of 8)
                "3ffe::10000", // hextet exceeds 16 bits
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top