Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,046 for SplitV (0.12 sec)

  1. .github/workflows/extract-unit-test-split.jq

    Stefan Wolf <******@****.***> 1633938695 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 11 08:08:26 UTC 2021
    - 171 bytes
    - Viewed (0)
  2. pkg/util/procfs/procfs_linux.go

    )
    
    // ProcFS provides a helper for getting container name via pid.
    type ProcFS struct{}
    
    func containerNameFromProcCgroup(content string) (string, error) {
    	lines := strings.Split(content, "\n")
    	for _, line := range lines {
    		entries := strings.SplitN(line, ":", 3)
    		if len(entries) == 3 && entries[1] == "devices" {
    			return strings.TrimSpace(entries[2]), nil
    		}
    	}
    	return "", fmt.Errorf("could not find devices cgroup location")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 09:22:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/manipulate_model_attr.cc

      for (auto& named_attr : entry_func_attrs) {
        if (named_attr.getName() != "inputs") continue;
    
        // Splits the "inputs" field to retrieve individual input names. Ignores
        // empty strings.
        SmallVector<StringRef> inputs_attrs{};
        cast<StringAttr>(named_attr.getValue())
            .strref()
            .split(inputs_attrs, /*Separator=*/',', /*MaxSplit=*/-1,
                   /*KeepEmpty=*/false);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 01:13:26 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. cmd/admin-server-info.go

    	}
    	for _, v := range os.Environ() {
    		if !strings.HasPrefix(v, "MINIO") && !strings.HasPrefix(v, "_MINIO") {
    			continue
    		}
    		split := strings.SplitN(v, "=", 2)
    		key := split[0]
    		value := ""
    		if len(split) > 1 {
    			value = split[1]
    		}
    
    		// Do not send sensitive creds.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/util/label/label.go

    	}
    	if len(networkID) > 0 {
    		out[label.TopologyNetwork.Name] = networkID.String()
    	}
    	return out
    }
    
    // SplitLocalityLabel splits a locality label into region, zone and subzone strings.
    func SplitLocalityLabel(locality string) (region, zone, subzone string) {
    	items := strings.Split(locality, "/")
    	switch len(items) {
    	case 1:
    		return items[0], "", ""
    	case 2:
    		return items[0], items[1], ""
    	default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 03:56:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/math/fma.go

    	// x and y are finite, but z is infinite, should always result in z.
    	if bz&uvinf == uvinf {
    		return z
    	}
    
    	// Inputs are (sub)normal.
    	// Split x, y, z into sign, exponent, mantissa.
    	xs, xe, xm := split(bx)
    	ys, ye, ym := split(by)
    	zs, ze, zm := split(bz)
    
    	// Compute product p = x*y as sign, exponent, two-word mantissa.
    	// Start with exponent. "is normal" bit isn't subtracted yet.
    	pe := xe + ye - bias + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 05 22:05:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/util/internal/ArgumentsSplitter.java

     * limitations under the License.
     */
    
    package org.gradle.util.internal;
    
    import java.util.ArrayList;
    import java.util.List;
    
    public class ArgumentsSplitter {
    
        /**
         * Splits the arguments string (for example, a program command line) into a collection.
         * Only supports space-delimited and/or quoted command line arguments. This currently does not handle escaping characters such as quotes.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 2.2K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/util/hosts.go

    package util
    
    import (
    	"strings"
    
    	"istio.io/istio/pkg/config/resource"
    )
    
    type ScopedFqdn string
    
    // GetScopeAndFqdn splits ScopedFqdn back to scope namespace and fqdn parts
    func (s ScopedFqdn) GetScopeAndFqdn() (string, string) {
    	parts := strings.SplitN(string(s), "/", 2)
    	return parts[0], parts[1]
    }
    
    // InScopeOf returns true if ns is in the scope of ScopedFqdn
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 28 04:57:33 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestScraper.java

                        String[] splits = testSuiteAndCase.
                            replace('[', ' ').
                            replace(']', ' ').
                            split("[. ]");
                        String testSuite;
                        String testCase;
                        if (OperatingSystem.current().isMacOsX()) {
                            testSuite = splits[2];
                            testCase = splits[3];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/obj6_test.go

    		if len(strings.TrimSpace(line)) == 0 {
    			continue
    		}
    		parts := strings.Split(line, "->")
    		if len(parts) != 2 {
    			t.Fatalf("malformed line %v", line)
    		}
    		r.marks = append(r.marks, marker)
    		marker_insn := fmt.Sprintf("MOVQ $%d, AX", marker)
    		input_insns = append(input_insns, marker_insn)
    		for _, input_insn := range strings.Split(parts[0], ";") {
    			input_insns = append(input_insns, input_insn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:21:30 UTC 2022
    - 4.5K bytes
    - Viewed (0)
Back to top