Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,153 for SplitV (0.09 sec)

  1. tensorflow/compiler/mlir/init_mlir.cc

      int pass_remainder = 1;
      bool split = false;
      for (int i = 0; i < *argc; ++i) {
        if (llvm::StringRef((*argv)[i]) == kSeparator) {
          pass_remainder = i;
          *argc -= (i + 1);
          split = true;
          break;
        }
      }
    
      tensorflow::port::InitMain((*argv)[0], &pass_remainder, argv);
      if (split) {
        *argc += pass_remainder;
        (*argv)[1] = (*argv)[0];
        ++*argv;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 10:03:56 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/crypto/internal/hpke/hpke_test.go

    	vals := map[string]string{}
    	for _, l := range strings.Split(vector, "\n") {
    		fields := strings.Split(l, ": ")
    		vals[fields[0]] = fields[1]
    	}
    	return vals
    }
    
    func parseVectorEncryptions(vector string) []map[string]string {
    	vals := []map[string]string{}
    	for _, section := range strings.Split(vector, "\n\n") {
    		e := map[string]string{}
    		for _, l := range strings.Split(section, "\n") {
    			fields := strings.Split(l, ": ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/metrics/metrics.go

    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "automatic_reloads_total",
    			Help:           "Total number of reload successes and failures of encryption configuration split by apiserver identity.",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"status", "apiserver_id_hash"},
    	)
    
    	// deprecatedEncryptionConfigAutomaticReloadFailureTotal has been deprecated in 1.30.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 05:47:46 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. pilot/pkg/xds/sds_test.go

    					Key:  string(genericMtlsCertSplit.Data[credentials.GenericScrtKey]),
    					Cert: string(genericMtlsCertSplit.Data[credentials.GenericScrtCert]),
    				},
    				"kubernetes://generic-mtls-split-cacert": {
    					CaCert: string(genericMtlsCertSplitCa.Data[credentials.GenericScrtCaCert]),
    				},
    			},
    		},
    		{
    			name:      "incremental push with updates - mtls split ca update",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/ResultsStoreHelper.java

        private static final Logger LOGGER = LoggerFactory.getLogger(ResultsStoreHelper.class);
    
        public static List<String> split(String string) {
            if (null != string) {
                return ImmutableList.copyOf(Splitter.on(",").split(string));
            }
            return Collections.emptyList();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. src/crypto/purego_test.go

    	}
    	pkgs := strings.Split(strings.TrimSpace(string(out)), "\n")
    
    	cmd = exec.Command(testenv.GoToolPath(t), "tool", "dist", "list")
    	cmd.Stderr = os.Stderr
    	out, err = cmd.Output()
    	if err != nil {
    		log.Fatalf("loading architecture list: %v\n%s", err, out)
    	}
    	allGOARCH := make(map[string]bool)
    	for _, pair := range strings.Split(strings.TrimSpace(string(out)), "\n") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    		return append(allErrors, field.Invalid(fldPath, name, strings.Join(errs, ",")))
    	}
    	if len(strings.Split(name, ".")) < 2 {
    		return append(allErrors, field.Invalid(fldPath, name, "should be a domain with at least two segments separated by dots"))
    	}
    	for _, label := range strings.Split(name, ".") {
    		if errs := IsDNS1123Label(label); len(errs) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/post-quantize.mlir

      func.return %2, %3 : tensor<2xf32>, tensor<2xf32>
    
    // CHECK-NEXT: %[[split:.*]]:4 = "tfl.split"(%arg1, %arg0)
    // CHECK-NEXT: return %[[split]]#0, %[[split]]#1
    
    // QDQ-NEXT: %[[q:.*]] = "tfl.quantize"(%arg0) <{qtype = tensor<4x!quant.uniform<u8:f32, 1.000000e+00>>}> : (tensor<4xf32>) -> tensor<4x!quant.uniform<u8:f32, 1.000000e+00>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel_test.go

    	"Split-Point":    []string{"split"},
    	"X-App-Protocol": []string{"portforward.k8s.io"},
    }
    
    const responseHeaders = "HTTP/1.1 101 Switching Protocols\r\n" +
    	"Date: Sun, 25 Feb 2024 08:09:25 GMT\r\n" +
    	"Split-Point: split\r\n" +
    	"X-App-Protocol: portforward.k8s.io\r\n" +
    	"\r\n"
    
    const responseBody = "This is extra split data.\n"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 02:21:50 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/authorizationconfig/metrics/metrics_test.go

    func TestRecordAuthorizationConfigAutomaticReloadFailure(t *testing.T) {
    	expectedValue := `
    	# HELP apiserver_authorization_config_controller_automatic_reloads_total [ALPHA] Total number of automatic reloads of authorization configuration split by status and apiserver identity.
        # TYPE apiserver_authorization_config_controller_automatic_reloads_total counter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top