Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,195 for SplitV (0.2 sec)

  1. 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)
  2. src/mime/encodedword.go

    			currentLen = runeLen
    		}
    	}
    	io.WriteString(w, s[last:])
    	w.Close()
    }
    
    // qEncode encodes s using Q encoding and writes it to buf. It splits the
    // encoded-words when necessary.
    func (e WordEncoder) qEncode(buf *strings.Builder, charset, s string) {
    	// We only split encoded-words when the charset is UTF-8.
    	if !isUTF8(charset) {
    		writeQString(buf, s)
    		return
    	}
    
    	var currentLen, runeLen int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

      split_ops_for_tiled_input.reserve(
          input_sharding.tile_assignment_devices_size());
    
      // Creates a tree of split nodes for sharding tiled inputs. Splits nodes
      // are created such that input data is sharded in row major order.
      // Split nodes at ith depth from the original input node represent nodes
      // that split the input data at i-th dimension.
      auto dimension_to_splits_map =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. src/go/build/constraint/expr.go

    					return nil, errComplex
    				}
    			}
    			ands = append(ands, lits)
    		}
    		split = append(split, ands)
    	}
    
    	// If all the ORs have length 1 (no actual OR'ing going on),
    	// push the top-level ANDs to the bottom level, so that we get
    	// one // +build line instead of many.
    	maxOr := 0
    	for _, or := range split {
    		if maxOr < len(or) {
    			maxOr = len(or)
    		}
    	}
    	if maxOr == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  5. src/runtime/lockrank_on.go

    	return l.rank
    }
    
    // lockWithRank is like lock(l), but allows the caller to specify a lock rank
    // when acquiring a non-static lock.
    //
    // Note that we need to be careful about stack splits:
    //
    // This function is not nosplit, thus it may split at function entry. This may
    // introduce a new edge in the lock order, but it is no different from any
    // other (nosplit) call before this call (including the call to lock() itself).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/c/c_test_util.h

    TF_Operation* RandomUniform(TF_Operation* shape, TF_DataType dtype,
                                TF_Graph* graph, TF_Status* s);
    
    // Split `input` along the first dimension into 3 tensors
    TF_Operation* Split3(TF_Operation* input, TF_Graph* graph, TF_Status* s,
                         const char* name = "split3");
    
    bool IsPlaceholder(const tensorflow::NodeDef& node_def);
    
    bool IsScalarConst(const tensorflow::NodeDef& node_def, int v);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 09 01:06:53 UTC 2018
    - 6K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-agent/options/agent.go

    func extractXDSHeadersFromEnv(o *istioagent.AgentOptions) {
    	envs := os.Environ()
    	for _, e := range envs {
    		if strings.HasPrefix(e, xdsHeaderPrefix) {
    			parts := strings.SplitN(e, "=", 2)
    			if len(parts) != 2 {
    				continue
    			}
    			o.XDSHeaders[parts[0][len(xdsHeaderPrefix):]] = parts[1]
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/runtime/testdata/testprog/syscalls_linux.go

    		return false, false, fmt.Errorf("unexpected status file format: %s:\n%s", statusFile, status)
    	}
    	stateLine := bytes.SplitN(lines[stateLineIdx], []byte{':'}, 2)
    	if len(stateLine) != 2 {
    		// Malformed status file?
    		return false, false, fmt.Errorf("unexpected status file format: %s:\n%s", statusFile, status)
    	}
    	// Check if it's a zombie thread.
    	return !bytes.Contains(stateLine[1], []byte{'Z'}), true, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:00:09 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. tools/bug-report/pkg/util/path/path.go

    func (p Path) String() string {
    	return strings.Join(p, pathSeparator)
    }
    
    // splitEscaped splits a string using the rune r as a separator. It does not split on r if it's prefixed by \.
    func splitEscaped(s string, r rune) []string {
    	var prev rune
    	if len(s) == 0 {
    		return []string{}
    	}
    	prevIdx := 0
    	var out []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:55:53 UTC 2020
    - 2.2K bytes
    - Viewed (0)
Back to top