Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for 1000Mi (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    func.func @testReshape(%arg0: tensor<10x10x10xf32>, %shape1: tensor<2xi32>) -> tensor<100x100xf32> {
      // expected-error @+1 {{requires 'output' number of elements to match 'tensor' number of elements, but got 10000 and 1000}}
      %r1 = "tf.Reshape" (%arg0, %shape1) : (tensor<10x10x10xf32>, tensor<2xi32>) -> tensor<100x100xf32>
      func.return %r1 : tensor<100x100xf32>
    }
    
    // -----
    // tf.Reshape with incorrect shape operand rank.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    		{"RSA CA", privRSA, certRSA},
    		{"Ed25519 CA", privEd25519, certEd25519},
    	}
    
    	loc := time.FixedZone("Oz/Atlantis", int((2 * time.Hour).Seconds()))
    
    	now := time.Unix(1000, 0).In(loc)
    	nowUTC := now.UTC()
    	expiry := time.Unix(10000, 0)
    
    	revokedCerts := []pkix.RevokedCertificate{
    		{
    			SerialNumber:   big.NewInt(1),
    			RevocationTime: nowUTC,
    		},
    		{
    			SerialNumber: big.NewInt(42),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

        iptables -w -t nat -A IP-MASQ -d 169.254.0.0/16 -m comment --comment "ip-masq: local traffic is not subject to MASQUERADE" -j RETURN
        iptables -w -t nat -A IP-MASQ -d 10.0.0.0/8 -m comment --comment "ip-masq: RFC 1918 reserved range is not subject to MASQUERADE" -j RETURN
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    				Obj(),
    			existingPodsNum:  10000,
    			allNodesNum:      1000,
    			filteredNodesNum: 500,
    		},
    		{
    			name: "1000nodes/single-constraint-node",
    			pod: st.MakePod().Name("p").Label("foo", "").
    				SpreadConstraint(1, v1.LabelHostname, v1.DoNotSchedule, fooSelector, nil, nil, nil, nil).
    				Obj(),
    			existingPodsNum:  10000,
    			allNodesNum:      1000,
    			filteredNodesNum: 500,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_test.go

    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    			},
    			podIPs: []v1.PodIP{
    				{IP: "10.0.0.1"},
    			},
    		},
    		{
    			name: "InternalIP is preferred over ExternalIP",
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeExternalIP, Address: "192.168.0.1"},
    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    			},
    			podIPs: []v1.PodIP{
    				{IP: "10.0.0.1"},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier_test.go

    		// Created by kube-proxy.
    		"ipvs0": {
    			Address:   netutils.ParseIPSloppy("1000::1"),
    			Protocol:  string(v1.ProtocolUDP),
    			Port:      53,
    			Scheduler: "rr",
    			Flags:     utilipvs.FlagHashed,
    		},
    		// Created by kube-proxy.
    		"ipvs1": {
    			Address:   netutils.ParseIPSloppy("1000::2"),
    			Protocol:  string(v1.ProtocolUDP),
    			Port:      54,
    			Scheduler: "rr",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    	verifyGCBits(t, TypeOf([10000]Xscalarptr{}), rep(10000, lit(0, 1)))
    	verifyGCBits(t, ArrayOf(10000, Tscalarptr), rep(10000, lit(0, 1)))
    	verifyGCBits(t, TypeOf([2]Xptrscalar{}), lit(1, 0, 1))
    	verifyGCBits(t, ArrayOf(2, Tptrscalar), lit(1, 0, 1))
    	verifyGCBits(t, TypeOf([10000]Xptrscalar{}), rep(10000, lit(1, 0)))
    	verifyGCBits(t, ArrayOf(10000, Tptrscalar), rep(10000, lit(1, 0)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    1e10                uint64      10000000000 is in the set of unsigned 64-bit integers
    2.718281828459045   float32     2.718281828459045 rounds to 2.7182817 which is in the set of float32 values
    -1e-1000            float64     -1e-1000 rounds to IEEE -0.0 which is further simplified to 0.0
    0i                  int         0 is an integer value
    (42 + 0i)           float32     42.0 (with zero imaginary part) is in the set of float32 values
    </pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top