Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 236 for 1000Mi (0.11 sec)

  1. pkg/testcerts/generate-certs.sh

    openssl req -x509 -new -nodes -key CAKey.pem -days 100000 -out CACert.pem -subj "/CN=${CN_BASE}_ca"
    
    # Create a server certificate
    openssl genrsa -out ServerKey.pem 2048
    openssl req -new -key ServerKey.pem -out server.csr -subj "/CN=${CN_BASE}_server" -config server.conf
    openssl x509 -req -in server.csr -CA CACert.pem -CAkey CAKey.pem -CAcreateserial -out ServerCert.pem -days 100000 -extensions v3_req -extfile server.conf
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/cgo/internal/testcarchive/testdata/main7.c

    // license that can be found in the LICENSE file.
    
    // Test that lots of calls don't deadlock.
    
    #include <stdio.h>
    
    #include "libgo7.h"
    
    int main() {
    	int i;
    
    	for (i = 0; i < 100000; i++) {
    		GoFunction7();
    	}
    	return 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 332 bytes
    - Viewed (0)
Back to top