Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 283 for 1000Mi (0.11 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/batch_function_lowering.mlir

      // CHECK: tfrt_fallback_async.batch_function device("/device:CPU:0") @batched_function
      // CHECK-SAME: Tin = [f32]
      // CHECK-SAME: Tout = [f32]
      // 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: Wed May 08 00:18:59 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. pkg/proxy/util/utils_test.go

    			[]net.Addr{
    				mustParseIPAddr("8.8.8.8"),
    				mustParseIPAddr("1000::"),
    				mustParseIPAddr("192.168.1.1"),
    			},
    			sets.New("192.168.1.1"),
    		},
    		{
    			"Cidr IPv6",
    			newCidrValidator("1000::/64"),
    			[]net.Addr{
    				mustParseIPAddr("8.8.8.8"),
    				mustParseIPAddr("1000::"),
    				mustParseIPAddr("192.168.1.1"),
    			},
    			sets.New("1000::"),
    		},
    	}
    
    	for _, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. tensorflow/c/kernels/summary_op_test.cc

      values.vec<Eigen::half>()(1) = Eigen::half(-2.0);
      values.vec<Eigen::half>()(2) = Eigen::half(10000.0);
      TestScalarSummaryOp(&tags, &values, R"(
                          value { tag: 'tag1' simple_value: 1.0 }
                          value { tag: 'tag2' simple_value: -2.0}
                          value { tag: 'tag3' simple_value: 10000.0})",
                          error::OK);
    }
    
    TEST(ScalarSummaryOpTest, Error_WrongDimsTags) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 18 15:10:51 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/helper/normalize_score_test.go

    			expectedScores: []int64{100, 100, 100, 100},
    		},
    		{
    			scores:         []int64{1000, 1, 1, 1},
    			expectedScores: []int64{100, 0, 0, 0},
    		},
    		{
    			reverse:        true,
    			scores:         []int64{0, 1, 1, 1},
    			expectedScores: []int64{100, 0, 0, 0},
    		},
    		{
    			scores:         []int64{0, 0, 0, 0},
    			expectedScores: []int64{0, 0, 0, 0},
    		},
    		{
    			reverse:        true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 16:15:18 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/testdata/dupLoad_test.go

    	// There is only a single read of b[0].  The two
    	// returned values must have the same low byte.
    	v := b[0]
    	return uint16(v), uint16(v) | uint16(b[1])<<8
    }
    
    func main1(t *testing.T) {
    	const N = 100000
    	done := make(chan bool, 2)
    	b := make([]byte, 2)
    	go func() {
    		for i := 0; i < N; i++ {
    			b[0] = byte(i)
    			b[1] = byte(i)
    		}
    		done <- true
    	}()
    	go func() {
    		for i := 0; i < N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  6. pkg/test/cert/cert.go

    	return openssl("x509", "-req",
    		"-days", "100000",
    		"-signkey", keyFile,
    		"-extensions", "req_ext",
    		"-extfile", confFile,
    		"-in", csrFile,
    		"-out", certFile)
    }
    
    // GenerateIntermediateCert from the rootCA and writes to certFile.
    func GenerateIntermediateCert(confFile, csrFile, rootCertFile, rootKeyFile, certFile string) error {
    	return openssl("x509", "-req",
    		"-days", "100000",
    		"-CA", rootCertFile,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 22 14:18:21 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tasks/timeout/groovy/build.gradle

    tasks.register("hangingTask") {
        doLast {
            Thread.sleep(100000)
        }
        timeout = Duration.ofMillis(500)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 119 bytes
    - Viewed (0)
  8. hack/testdata/service-revision2.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: a
    spec:
      selector:
        app: test
      clusterIP: 10.0.0.12
      ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 09 14:59:02 UTC 2018
    - 128 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tasks/timeout/kotlin/build.gradle.kts

    import java.time.Duration
    
    // tag::without-import[]
    tasks.register("hangingTask") {
        doLast {
            Thread.sleep(100000)
        }
        timeout = Duration.ofMillis(500)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 196 bytes
    - Viewed (0)
  10. pkg/registry/core/service/storage/storage_test.go

    		expectedClusterIP:  "10.0.0.10",
    		expectedClusterIPs: []string{"10.0.0.10"},
    	}, {
    		name:               "update - malformed change",
    		oldService:         makeServiceWithClusterIp("10.0.0.10", []string{"10.0.0.10"}),
    		newService:         makeServiceWithClusterIp("10.0.0.11", []string{"10.0.0.11"}),
    		expectedClusterIP:  "10.0.0.11",
    		expectedClusterIPs: []string{"10.0.0.11"},
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
Back to top