Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 128 for 1001Gi (0.07 sec)

  1. tensorflow/c/eager/parallel_device/parallel_device_lib_test.cc

          "/job:localhost/replica:0/task:0/device:CPU:1"};
      ParallelDevice parallel_device(std::move(devices));
      {
        std::unique_ptr<ParallelTensor> float_tensors =
            parallel_device.ScalarsFromSequence<float>({10.0, 11.0}, context.get(),
                                                       status.get());
        ASSERT_EQ(TF_GetCode(status.get()), TF_OK) << TF_Message(status.get());
        ExpectScalarEq<float>(float_tensors->tensor(0), 10.0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 08 23:47:35 UTC 2021
    - 15.3K bytes
    - Viewed (0)
  2. src/net/netip/netip_pkg_test.go

    		}
    	}
    }
    
    var nextPrevTests = []struct {
    	ip   Addr
    	next Addr
    	prev Addr
    }{
    	{mustIP("10.0.0.1"), mustIP("10.0.0.2"), mustIP("10.0.0.0")},
    	{mustIP("10.0.0.255"), mustIP("10.0.1.0"), mustIP("10.0.0.254")},
    	{mustIP("127.0.0.1"), mustIP("127.0.0.2"), mustIP("127.0.0.0")},
    	{mustIP("254.255.255.255"), mustIP("255.0.0.0"), mustIP("254.255.255.254")},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 15:37:19 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. src/sync/pool_test.go

    				atomic.AddUint32(&fin, 1)
    			})
    			p.Put(v)
    		}
    		if drain {
    			for i := 0; i < N; i++ {
    				p.Get()
    			}
    		}
    		for i := 0; i < 5; i++ {
    			runtime.GC()
    			time.Sleep(time.Duration(i*100+10) * time.Millisecond)
    			// 1 pointer can remain on stack or elsewhere
    			if fin1 = atomic.LoadUint32(&fin); fin1 >= N-1 {
    				continue loop
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. docs/fr/docs/features.md

    * Des évènements de démarrages et d'arrêt.
    * Un client de test basé sur `request`
    * **CORS**, GZip, Static Files, Streaming responses.
    * Le support des **Sessions et Cookies**.
    * Une couverture de test à 100 %.
    * 100 % de la base de code avec des annotations de type.
    
    ## Fonctionnalités de Pydantic
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. src/image/image_test.go

    			continue
    		}
    		// Test that taking an empty sub-image starting at a corner does not panic.
    		m.SubImage(Rect(0, 0, 0, 0))
    		m.SubImage(Rect(10, 0, 10, 0))
    		m.SubImage(Rect(0, 10, 0, 10))
    		m.SubImage(Rect(10, 10, 10, 10))
    	}
    }
    
    func TestNewXxxBadRectangle(t *testing.T) {
    	// call calls f(r) and reports whether it ran without panicking.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 30 02:00:49 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  6. pilot/pkg/xds/lds_test.go

    			m := mesh.DefaultMeshConfig()
    			m.RootNamespace = "istio-config"
    			return m
    		}(),
    	})
    	adsc := s.Connect(&model.Proxy{ConfigNamespace: "ns1", IPAddresses: []string{"100.1.1.2"}}, nil, watchAll)
    
    	// Expect 2 listeners : 2 orig_dst, 2 outbound (http, tcp1)
    	if (len(adsc.GetHTTPListeners()) + len(adsc.GetTCPListeners())) != 4 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/orig/view/advance.jsp

    						<la:option value="20">20</la:option>
    						<la:option value="30">30</la:option>
    						<la:option value="40">40</la:option>
    						<la:option value="50">50</la:option>
    						<la:option value="100">100</la:option>
    					</la:select>
    				</div>
    				<div class="col-lg-4 d-none d-lg-flex align-items-center">
    				</div>
    			</div>
    			<div class="form-group row">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/advance.jsp

    						<la:option value="20">20</la:option>
    						<la:option value="30">30</la:option>
    						<la:option value="40">40</la:option>
    						<la:option value="50">50</la:option>
    						<la:option value="100">100</la:option>
    					</la:select>
    				</div>
    				<div class="col-lg-4 d-none d-lg-flex align-items-center">
    				</div>
    			</div>
    			<div class="form-group row">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  9. cni/pkg/plugin/plugin_test.go

        }
    }`
    
    type mockInterceptRuleMgr struct {
    	lastRedirect []*Redirect
    }
    
    func buildMockConf(ambientEnabled bool, eventURL string) string {
    	return fmt.Sprintf(
    		mockConfTmpl,
    		"1.0.0",
    		"1.0.0",
    		"eth0",
    		testSandboxDirectory,
    		eventURL,
    		ambientEnabled,
    		"mock",
    	)
    }
    
    func buildFakePodAndNSForClient() (*corev1.Pod, *corev1.Namespace) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/ipset/ipset_test.go

    			expectErr: true,
    			desc:      "delimiter should be -",
    		},
    		{ // case[9]
    			portRange: "1,100",
    			expectErr: true,
    			desc:      "delimiter should be -",
    		},
    		{ // case[10]
    			portRange: "100-100",
    			expectErr: false,
    			desc:      "begin port number can be equal to end port number",
    		},
    		{ // case[11]
    			portRange: "",
    			expectErr: true,
    			desc:      "empty string is invalid",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
Back to top