Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for 4000 (0.37 sec)

  1. pkg/scheduler/framework/runtime/framework_test.go

    // Pod is only used for logging errors.
    var pod = &v1.Pod{}
    var node = &v1.Node{
    	ObjectMeta: metav1.ObjectMeta{
    		Name: nodeName,
    	},
    }
    var lowPriority, highPriority = int32(0), int32(1000)
    var lowPriorityPod = &v1.Pod{
    	ObjectMeta: metav1.ObjectMeta{UID: "low"},
    	Spec:       v1.PodSpec{Priority: &lowPriority},
    }
    var highPriorityPod = &v1.Pod{
    	ObjectMeta: metav1.ObjectMeta{UID: "high"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    				},
    			},
    			options: printers.GenerateOptions{},
    			// Columns: Name, Type, Cluster-IP, External-IP, Port(s), Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"service2", "LoadBalancer", "1.3.4.5", "<pending>", "80/TCP,8090/UDP,8000/TCP,7777/SCTP", "<unknown>"}}},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    	cadvisor := cadvisortest.NewMockInterface(mockCtrl)
    	cadvisor.EXPECT().MachineInfo().Return(&cadvisorapi.MachineInfo{}, nil).AnyTimes()
    	cadvisor.EXPECT().ImagesFsInfo().Return(cadvisorapiv2.FsInfo{
    		Usage:     400,
    		Capacity:  1000,
    		Available: 600,
    	}, nil).AnyTimes()
    	tlsOptions := &server.TLSOptions{
    		Config: &tls.Config{
    			MinVersion: 0,
    		},
    	}
    	fakeRuntime, endpoint := createAndStartFakeRemoteRuntime(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/eviction_manager_test.go

    			noPressurePIDUsage:                 "300",
    			pressurePIDUsageWithGracePeriod:    "700",
    			pressurePIDUsageWithoutGracePeriod: "1200",
    			totalPID:                           "2000",
    		},
    	}
    
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			podMaker := makePodWithPIDStats
    			summaryStatsMaker := makePIDStats
    			pods := []*v1.Pod{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        server.enqueue(
          MockResponse(body = "unused"),
        ) // to keep the server alive
        val response = getResponse(newRequest("/"))
        val source = response.body.source()
        source.timeout().timeout(1000, TimeUnit.MILLISECONDS)
        assertThat(source.readByte()).isEqualTo('A'.code.toByte())
        assertThat(source.readByte()).isEqualTo('B'.code.toByte())
        assertThat(source.readByte()).isEqualTo('C'.code.toByte())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  6. src/unicode/tables.go

    	{0xAB70, 0xABBF, d{-38864, 0, -38864}},
    	{0xFF21, 0xFF3A, d{0, 32, 0}},
    	{0xFF41, 0xFF5A, d{-32, 0, -32}},
    	{0x10400, 0x10427, d{0, 40, 0}},
    	{0x10428, 0x1044F, d{-40, 0, -40}},
    	{0x104B0, 0x104D3, d{0, 40, 0}},
    	{0x104D8, 0x104FB, d{-40, 0, -40}},
    	{0x10570, 0x1057A, d{0, 39, 0}},
    	{0x1057C, 0x1058A, d{0, 39, 0}},
    	{0x1058C, 0x10592, d{0, 39, 0}},
    	{0x10594, 0x10595, d{0, 39, 0}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  7. src/debug/elf/elf.go

    	EM_NS32K         Machine = 97  /* National Semiconductor 32000 series */
    	EM_TPC           Machine = 98  /* Tenor Network TPC processor */
    	EM_SNP1K         Machine = 99  /* Trebia SNP 1000 processor */
    	EM_ST200         Machine = 100 /* STMicroelectronics (www.st.com) ST200 microcontroller */
    	EM_IP2K          Machine = 101 /* Ubicom IP2xxx microcontroller family */
    	EM_MAX           Machine = 102 /* MAX Processor */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "resolve-from": "^4.0.0"
          },
          "engines": {
            "node": ">=6"
          },
          "funding": {
            "url": "https://github.com/sponsors/sindresorhus"
          }
        },
        "node_modules/import-fresh/node_modules/resolve-from": {
          "version": "4.0.0",
          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "items": {
                "$ref": "#/definitions/io.k8s.api.core.v1.ContainerPort"
              },
              "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

      %1 = stablehlo.convolution(%arg0, %0) dim_numbers = [b, 0, 1, f]x[0, 1, i, o]->[b, 0, 1, f], window = {pad = [[0, 0], [0, 0]]} {batch_group_count = 1 : i64, feature_group_count = 1 : i64} : (tensor<1x3x3x4x!quant.uniform<i8:f32, 1.000000e+0:-100>>, tensor<3x3x4x2x!quant.uniform<i8:f32:3, {2.000000e+2, 3.000000e+3}>>) -> tensor<1x1x1x2x!quant.uniform<i8:f32, 4.000000e+0>>...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
Back to top