Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,195 for SplitV (0.19 sec)

  1. tools/istio-iptables/pkg/config/types.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package config
    
    import (
    	"strings"
    )
    
    func Split(s string) []string {
    	if s == "" {
    		return nil
    	}
    	return filterEmpty(strings.Split(s, ","))
    }
    
    func filterEmpty(strs []string) []string {
    	filtered := make([]string, 0, len(strs))
    	for _, s := range strs {
    		if s == "" {
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 25 15:43:38 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/samples/templates/java-utilities-library/src/main/java/org/gradle/sample/utilities/StringUtils.java

    import org.gradle.sample.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: Mon Nov 27 17:53:42 UTC 2023
    - 306 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/authenticationconfig/metrics/metrics_test.go

    func TestRecordAuthenticationConfigAutomaticReloadFailure(t *testing.T) {
    	expectedValue := `
    	# HELP apiserver_authentication_config_controller_automatic_reloads_total [ALPHA] Total number of automatic reloads of authentication configuration split by status and apiserver identity.
        # TYPE apiserver_authentication_config_controller_automatic_reloads_total counter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-ingress/templates/_affinity.tpl

              {{- if $item.values }}
              values:
              {{- $vals := split "," $item.values }}
              {{- range $i, $v := $vals }}
              - {{ $v | quote }}
              {{- end }}
              {{- end }}
          topologyKey: {{ $item.topologyKey }}
          {{- if $item.namespaces }}
          namespaces:
          {{- $ns := split "," $item.namespaces }}
          {{- range $i, $n := $ns }}
          - {{ $n | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 10 21:23:08 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_moved.txt

    go mod init example.com/foo
    go get example.com/split/subpkg@v1.0.0
    go list -m all
    stdout 'example.com/split v1.0.0'
    
    # A 'go get' that simultaneously upgrades away conflicting package definitions is not ambiguous.
    go get example.com/split/subpkg@v1.1.0
    
    # A 'go get' without an upgrade should find the package.
    rm go.mod
    go mod init example.com/foo
    go get example.com/split/subpkg
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/stdlib.go

    	return ok
    }
    
    // SplitField splits the field symbol name into type and field
    // components. It must be called only on Field symbols.
    //
    // Example: "File.Package" -> ("File", "Package")
    func (sym *Symbol) SplitField() (typename, name string) {
    	if sym.Kind != Field {
    		panic("not a field")
    	}
    	typename, name, _ = strings.Cut(sym.Name, ".")
    	return
    }
    
    // SplitMethod splits the method symbol name into pointer, receiver,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top