Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,924 for SplitV (0.15 sec)

  1. operator/pkg/compare/compare.go

    	rm := make(map[string]string)
    	if len(rs) == 0 {
    		return rm
    	}
    	for _, r := range strings.Split(rs, ",") {
    		split := strings.Split(r, ":")
    		if len(split) < 4 {
    			rm[r] = ""
    			continue
    		}
    		kind, namespace, name, path := split[0], split[1], split[2], split[3]
    		obj := fmt.Sprintf("%v:%v:%v", kind, namespace, name)
    		rm[obj] = path
    	}
    	return rm
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/notations/ModuleIdentifierNotationConverter.java

            assert notation != null;
            String[] split = notation.split(":");
            if (split.length != 2) {
                throw new UnsupportedNotationException(notation);
            }
            String group = validate(split[0].trim(), notation);
            String name = validate(split[1].trim(), notation);
            result.converted(moduleIdentifierFactory.module(group, name));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. istioctl/pkg/wait/wait_test.go

    			args:             strings.Split("--generation=2 --timeout=20ms virtual-service foo.default", " "),
    			wantException:    true,
    		},
    		{
    			execClientConfig: cannedResponseMap,
    			args:             strings.Split("--generation=1 virtual-service foo.default", " "),
    			wantException:    false,
    		},
    		{
    			execClientConfig: cannedResponseMap,
    			args:             strings.Split("--generation=1 VirtualService foo.default", " "),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. pilot/pkg/model/credentials/resource.go

    		res := strings.TrimPrefix(resourceName, KubernetesSecretTypeURI)
    		split := strings.Split(res, sep)
    		namespace := proxyNamespace
    		name := split[0]
    		if len(split) > 1 {
    			namespace = split[0]
    			name = split[1]
    		}
    		return SecretResource{ResourceType: KubernetesSecretType, Name: name, Namespace: namespace, ResourceName: resourceName, Cluster: proxyCluster}, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 28 20:33:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. pkg/version/cobra_test.go

    			args: strings.Split("version --remote=false --short=false", " "),
    			expectedRegexp: regexp.MustCompile("version.BuildInfo{Version:\"unknown\", GitRevision:\"unknown\", " +
    				"GolangVersion:\"go1.([0-9+?(\\.)?]+).*\", " +
    				"BuildStatus:\"unknown\", GitTag:\"unknown\"}"),
    		},
    		{ // case 1 client-side only, short output
    			args:           strings.Split("version -s --remote=false", " "),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/JvmUtil.java

            int version = 8;
            if (javaVersion != null) {
                final String[] split = javaVersion.split("[\\._]");
                if (split.length > 0) {
                    version = Integer.parseInt(split[0]);
                    if (version == 1 && split.length > 1) {
                        version = Integer.parseInt(split[1]);
                    }
                }
            }
            return version;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tpu_colocate_splits.cc

      getOperation().walk([&](Operation* op) {
        if (auto split = llvm::dyn_cast<TF::SplitOp>(op)) {
          if (HasDevice(split) || split->getAttrOfType<ArrayAttr>(kClassAttr))
            return WalkResult::advance();
          for (Operation* pred : IslandPredecessors(split)) {
            if (auto colocation_classes =
                    pred->getAttrOfType<ArrayAttr>(kClassAttr)) {
              split->setAttr(kClassAttr, colocation_classes);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 18:44:34 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javaapplication/multi/utilities/StringUtils.java.template

    import ${basePackagePrefix.raw}list.LinkedList;
    
    public class StringUtils {
        public static String join(LinkedList source) {
            return JoinUtils.join(source);
        }
    
        public static LinkedList split(String source) {
            return SplitUtils.split(source);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 334 bytes
    - Viewed (0)
  9. src/cmd/go/internal/modindex/build.go

    	// JoinPath joins the sequence of path fragments into a single path.
    	// If JoinPath is nil, Import uses filepath.Join.
    	JoinPath func(elem ...string) string
    
    	// SplitPathList splits the path list into a slice of individual paths.
    	// If SplitPathList is nil, Import uses filepath.SplitList.
    	SplitPathList func(list string) []string
    
    	// IsAbsPath reports whether path is an absolute path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/pgo_inl_test.go

    	for scanner.Scan() {
    		line := scanner.Text()
    		t.Logf("child: %s", line)
    		if strings.HasPrefix(line, "# ") {
    			curPkg = line[2:]
    			splits := strings.Split(curPkg, " ")
    			curPkg = splits[0]
    			continue
    		}
    		if m := haveInlined.FindStringSubmatch(line); m != nil {
    			fname := m[1]
    			delete(notInlinedReason, curPkg+"."+fname)
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top