Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 326 for 1_8000 (0.13 sec)

  1. pilot/pkg/networking/core/gateway_test.go

    												Number: 80,
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    			[]string{"10.0.0.1_8000", "10.0.0.2_8000", "10.0.0.3_8000"},
    		},
    		{
    			"gateway with HTTPS/GRPC servers with bind",
    			&pilot_model.Proxy{},
    			[]config.Config{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskLogger.kt

      val s =
        when {
          ns <= -999_500_000 -> "${(ns - 500_000_000) / 1_000_000_000} s "
          ns <= -999_500 -> "${(ns - 500_000) / 1_000_000} ms"
          ns <= 0 -> "${(ns - 500) / 1_000} µs"
          ns < 999_500 -> "${(ns + 500) / 1_000} µs"
          ns < 999_500_000 -> "${(ns + 500_000) / 1_000_000} ms"
          else -> "${(ns + 500_000_000) / 1_000_000_000} s "
        }
      return String.format("%6s", s)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. test/fixedbugs/issue31747.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    // numeric literals
    const (
    	_ = 1_000 // ERROR "underscore in numeric literal requires go1.13 or later \(-lang was set to go1.12; check go.mod\)|requires go1.13"
    	_ = 0b111 // ERROR "binary literal requires go1.13 or later"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerTest.kt

        assertThat(log).containsExactly("run@100000")
    
        taskFaker.advanceUntil(150.µs)
        assertThat(log).containsExactly("run@100000", "run@150000")
    
        taskFaker.advanceUntil(299.µs)
        assertThat(log).containsExactly("run@100000", "run@150000")
    
        taskFaker.advanceUntil(300.µs)
        assertThat(log).containsExactly("run@100000", "run@150000", "run@300000")
    
        taskFaker.assertNoMoreTasks()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/helpers_linux_test.go

    			quota:    int64(5000),
    			period:   int64(100000),
    			expected: int64(50),
    		},
    		{
    			name:     "750m",
    			quota:    int64(75000),
    			period:   int64(100000),
    			expected: int64(750),
    		},
    		{
    			name:     "1000m",
    			quota:    int64(100000),
    			period:   int64(100000),
    			expected: int64(1000),
    		},
    		{
    			name:     "1500m",
    			quota:    int64(150000),
    			period:   int64(100000),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. pilot/pkg/xds/testdata/none_lds_tcp.json

                        }
                      }
                    }
                  }
                }
              ]
            }
          ],
          "listener_filters": null
        },
        "127.0.0.1_2000": {
          "name": "127.0.0.1_2000",
          "address": {
            "Address": {
              "SocketAddress": {
                "address": "127.0.0.1",
                "PortSpecifier": {
                  "PortValue": 2000
                }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 22.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/reconfig_batch_op.mlir

    }
    
    // CHECK-LABEL: func @main
    func.func @main(%arg0: tensor<1x3xf32>) -> tensor<*xf32> {
      // CHECK:  "tf.BatchFunction"
      // CHECK-SAME: allowed_batch_sizes = [6]
      // CHECK-SAME: batch_timeout_micros = 100000 : i64
      // CHECK-SAME: batching_queue = ""
      // CHECK-SAME: container = ""
      // CHECK-SAME: enable_large_batch_splitting = false
      // CHECK-SAME: max_batch_size = 6 : i64
      // CHECK-SAME: max_enqueued_batches = 10 : i64
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 17:38:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. test/index.go

    var sib []int = make([]int, 100000)
    var aib [100000]int
    var paib *[100000]int = &aib
    
    var sqb []quad = make([]quad, 100000)
    var aqb [100000]quad
    var paqb *[100000]quad = &aqb
    
    type T struct {
    	si []int
    	ai [10]int
    	pai *[10]int
    	sq []quad
    	aq [10]quad
    	paq *[10]quad
    
    	sib []int
    	aib [100000]int
    	paib *[100000]int
    	sqb []quad
    	aqb [100000]quad
    	paqb *[100000]quad
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 08 17:28:20 UTC 2019
    - 6.4K bytes
    - Viewed (0)
  9. test/fixedbugs/issue13559.go

    	_ int64 = 1e-100     // ERROR "1e\-100 truncated|.* truncated to int64|truncated"
    	_ int64 = 1e-1000    // ERROR "1e\-1000 truncated|.* truncated to int64|truncated"
    	_ int64 = 1e-10000   // ERROR "1e\-10000 truncated|.* truncated to int64|truncated"
    	_ int64 = 1e-100000  // ERROR "1e\-100000 truncated|.* truncated to int64|truncated"
    	_ int64 = 1e-1000000 // ERROR "1e\-1000000 truncated|.* truncated to int64|truncated"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 23 05:11:09 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_sandbox_linux_test.go

    				MemoryLimitInBytes: 268435456,
    				CpuPeriod:          100000,
    				CpuQuota:           400000,
    				CpuShares:          2048,
    			},
    			expectedOverhead: &runtimeapi.LinuxContainerResources{
    				MemoryLimitInBytes: 134217728,
    				CpuPeriod:          100000,
    				CpuQuota:           100000,
    				CpuShares:          1024,
    			},
    			cgroupVersion: cgroupV1,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top