Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 859 for SplitV (0.19 sec)

  1. src/regexp/example_test.go

    func ExampleRegexp_Split() {
    	a := regexp.MustCompile(`a`)
    	fmt.Println(a.Split("banana", -1))
    	fmt.Println(a.Split("banana", 0))
    	fmt.Println(a.Split("banana", 1))
    	fmt.Println(a.Split("banana", 2))
    	zp := regexp.MustCompile(`z+`)
    	fmt.Println(zp.Split("pizza", -1))
    	fmt.Println(zp.Split("pizza", 0))
    	fmt.Println(zp.Split("pizza", 1))
    	fmt.Println(zp.Split("pizza", 2))
    	// Output:
    	// [b n n ]
    	// []
    	// [banana]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/LockFileReaderWriter.java

                Collections.addAll(emptyLockIds, lockIds);
            }
        }
    
        private Path getUniqueLockfilePath() {
            return lockFile.get().getAsFile().toPath();
        }
    
        private void parseLine(String line, Map<String, List<String>> result) {
            String[] split = line.split("=");
            if (split.length != 2) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. src/regexp/all_test.go

    			continue
    		}
    
    		split := re.Split(test.s, test.n)
    		if !slices.Equal(split, test.out) {
    			t.Errorf("#%d: %q: got %q; want %q", i, test.r, split, test.out)
    		}
    
    		if QuoteMeta(test.r) == test.r {
    			strsplit := strings.SplitN(test.s, test.r, test.n)
    			if !slices.Equal(split, strsplit) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/catalog/parser/TomlCatalogFileParser.java

            String mi = expectString(alias, librariesTable, "module");
            if (mi != null) {
                List<String> split = SPLITTER.splitToList(mi);
                if (split.size() == 2) {
                    group = notEmpty(split.get(0), "group", alias);
                    name = notEmpty(split.get(1), "name", alias);
                } else {
                    throw throwVersionCatalogProblemException(builder ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/capture/run.go

    	HasLoopBackIP bool
    }
    
    func split(s string) []string {
    	return config.Split(s)
    }
    
    func (cfg *IptablesConfigurator) separateV4V6(cidrList string) (NetworkRange, NetworkRange, error) {
    	if cidrList == "*" {
    		return NetworkRange{IsWildcard: true}, NetworkRange{IsWildcard: true}, nil
    	}
    	ipv6Ranges := NetworkRange{}
    	ipv4Ranges := NetworkRange{}
    	for _, ipRange := range split(cidrList) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		}
    	}
    	return false
    }
    
    func extract(val string) (op, typ, auxint, aux string, args []string) {
    	val = val[1 : len(val)-1] // remove ()
    
    	// Split val up into regions.
    	// Split by spaces/tabs, except those contained in (), {}, [], or <>.
    	s := split(val)
    
    	// Extract restrictions and args.
    	op = s[0]
    	for _, a := range s[1:] {
    		switch a[0] {
    		case '<':
    			typ = a[1 : len(a)-1] // remove <>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
Back to top