Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,007 for c000 (0.15 sec)

  1. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

        InetAddresses.TeredoInfo info = new InetAddresses.TeredoInfo(null, null, 80, 1000);
        assertEquals(InetAddresses.forString("0.0.0.0"), info.getServer());
        assertEquals(InetAddresses.forString("0.0.0.0"), info.getClient());
        assertEquals(80, info.getPort());
        assertEquals(1000, info.getFlags());
      }
    
      public void testIsatapAddresses() {
        InetAddress ipv4 = InetAddresses.forString("1.2.3.4");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container_windows_test.go

    					},
    				},
    			},
    		},
    	}
    
    	err = fakeRuntimeSvc.applyPlatformSpecificContainerConfig(containerConfig, &pod.Spec.Containers[0], pod, new(int64), "foo", nil)
    	require.NoError(t, err)
    
    	limit := int64(3000)
    	expectedCpuMax := 10 * limit / int64(winstats.ProcessorCount())
    	// Above, we're setting the limit to 3 CPUs. But we can't expect more than 100% of the CPUs
    	// we have. (e.g.: if we only have 2 CPUs, we can't have 150% CPU max).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/options_test.go

    		Generic: &cmoptions.GenericControllerManagerConfigurationOptions{
    			GenericControllerManagerConfiguration: &cmconfig.GenericControllerManagerConfiguration{
    				Address:         "0.0.0.0", // Note: This field should have no effect in CM now, and "0.0.0.0" is the default value.
    				MinResyncPeriod: metav1.Duration{Duration: 8 * time.Hour},
    				ClientConnection: componentbaseconfig.ClientConnectionConfiguration{
    					Kubeconfig:  "/kubeconfig",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/encoding/binary/binary_test.go

    	slice := make([]uint8, 1000)
    	buf := make([]byte, len(slice))
    	b.SetBytes(int64(len(buf)))
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		bsr.remain = buf
    		Read(bsr, BigEndian, slice)
    	}
    }
    
    func BenchmarkWriteSlice1000Uint8s(b *testing.B) {
    	slice := make([]uint8, 1000)
    	buf := new(bytes.Buffer)
    	var w io.Writer = buf
    	b.SetBytes(1000)
    	b.ResetTimer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util_test.cc

                std::vector<int64_t>(),
                "device coordinate (-1, 0, 0, 0) in 'topology' is outside "
                "of mesh shape (2, 1, 1, 1)"),
            std::make_tuple(
                2, 1, TopologyWithDeviceCoordinates({2, 0, 0, 0, 1, 0, 0, 0}),
                std::vector<int64_t>(),
                "device coordinate (2, 0, 0, 0) in 'topology' is outside "
                "of mesh shape (2, 1, 1, 1)"),
            std::make_tuple(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/container_manager_linux_test.go

    func TestGetCapacity(t *testing.T) {
    	ephemeralStorageFromCapacity := int64(2000)
    	ephemeralStorageFromCadvisor := int64(8000)
    	mockCtrl := gomock.NewController(t)
    	defer mockCtrl.Finish()
    	mockCtrlError := gomock.NewController(t)
    	defer mockCtrlError.Finish()
    
    	mockCadvisor := cadvisortest.NewMockInterface(mockCtrl)
    	rootfs := cadvisorapiv2.FsInfo{
    		Capacity: 8000,
    	}
    	mockCadvisor.EXPECT().RootFsInfo().Return(rootfs, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. cmd/data-usage_test.go

    func TestDataUsageUpdate(t *testing.T) {
    	base := t.TempDir()
    	const bucket = "bucket"
    	files := []usageTestFile{
    		{name: "rootfile", size: 10000},
    		{name: "rootfile2", size: 10000},
    		{name: "dir1/d1file", size: 2000},
    		{name: "dir2/d2file", size: 300},
    		{name: "dir1/dira/dafile", size: 100000},
    		{name: "dir1/dira/dbfile", size: 200000},
    		{name: "dir1/dira/dirasub/dcfile", size: 1000000},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/time/example_test.go

    	fmt.Printf("There are %6.2e seconds in %v.\n", micro2.Seconds(), micro2)
    	// Output:
    	// 10h0m0s
    	// 1h10m10s
    	// There are 4210 seconds in 1h10m10s.
    	// There are 1000 nanoseconds in 1µs.
    	// There are 1.00e-06 seconds in 1µs.
    }
    
    func ExampleDuration_Hours() {
    	h, _ := time.ParseDuration("4h30m")
    	fmt.Printf("I've got %.1f hours of work left.", h.Hours())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/kube/templates/deployment.yaml

    {{- if $.IncludeExtAuthz }}
          - name: ext-authz
            image: {{ $.ImageHub }}/ext-authz:{{ $.ImageTag }}
            imagePullPolicy: {{ $.ImagePullPolicy }}
            ports:
            - containerPort: 8000
            - containerPort: 9000
    {{- end }}
    {{- range $i, $appContainer := $.AppContainers }}
          - name: {{ $appContainer.Name }}
    {{- if $appContainer.ImageFullPath }}
            image: {{ $appContainer.ImageFullPath }}
    {{- else }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/ExclusiveCacheAccessingWorker.java

            this.displayName = displayName;
            this.cacheAccess = cacheAccess;
            this.batchWindowMillis = 200;
            this.maximumLockingTimeMillis = 5000;
            HeapProportionalCacheSizer heapProportionalCacheSizer = new HeapProportionalCacheSizer();
            int queueCapacity = Math.min(4000, heapProportionalCacheSizer.scaleCacheSize(40000));
            workQueue = new ArrayBlockingQueue<Runnable>(queueCapacity, true);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top