Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,195 for SplitV (0.18 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/traffic-splitting/traffic-split-3.yaml

    Alexander Zielenski <******@****.***> 1697824555 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 348 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_colocate_splits.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics -tf-tpu-colocate-splits | FileCheck %s
    
    // CHECK-LABEL: func @colocate_split_with_pred
    func.func @colocate_split_with_pred() {
      // CHECK: Split
      // CHECK-SAME: _class = ["loc:@class"]
      tf_executor.graph {
        %c, %control0 = tf_executor.island wraps "tf.Const"() {value = dense<0> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 18:44:34 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. pkg/test/echo/parse.go

    	}
    
    	for _, l := range strings.Split(output, "\n") {
    		prefixSplit := strings.Split(l, "body] ")
    		if len(prefixSplit) != 2 {
    			continue
    		}
    		kv := strings.SplitN(prefixSplit[1], "=", 2)
    		if len(kv) != 2 {
    			continue
    		}
    		out.rawBody[kv[0]] = kv[1]
    	}
    
    	return out
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 22:25:46 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. RELEASE.md

            `tf.sparse.cross`/`tf.ragged.cross` directly.
        *   Added additional `standardize` and `split` modes to `TextVectorization`:
            *   `standardize="lower"` will lowercase inputs.
            *   `standardize="string_punctuation"` will remove all punctuation.
            *   `split="character"` will split on every unicode character.
        *   Added an `output_mode` argument to the `Discretization` and `Hashing`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/pathelement.go

    func NewPathElement(s string) (fieldpath.PathElement, error) {
    	split := strings.SplitN(s, Separator, 2)
    	if len(split) < 2 {
    		return fieldpath.PathElement{}, fmt.Errorf("missing colon: %v", s)
    	}
    	switch split[0] {
    	case Field:
    		return fieldpath.PathElement{
    			FieldName: &split[1],
    		}, nil
    	case Value:
    		val, err := value.FromJSON([]byte(split[1]))
    		if err != nil {
    			return fieldpath.PathElement{}, err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/internal/quoted/quoted.go

    func isSpaceByte(c byte) bool {
    	return c == ' ' || c == '\t' || c == '\n' || c == '\r'
    }
    
    // Split splits s into a list of fields,
    // allowing single or double quotes around elements.
    // There is no unescaping or other processing within
    // quoted fields.
    //
    // Keep in sync with cmd/dist/quoted.go
    func Split(s string) ([]string, error) {
    	// Split fields allowing '' or "" around elements.
    	// Quotes further inside the string do not count.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:04:06 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. src/strings/strings.go

    	return genSplit(s, sep, len(sep), n)
    }
    
    // Split slices s into all substrings separated by sep and returns a slice of
    // the substrings between those separators.
    //
    // If s does not contain sep and sep is not empty, Split returns a
    // slice of length 1 whose only element is s.
    //
    // If sep is empty, Split splits after each UTF-8 sequence. If both s
    // and sep are empty, Split returns an empty slice.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/NMToolFixture.groovy

                // Looks like on Linux:
                // _main t 0 0
                //
                // Looks like on Windows (MinGW):
                // main T 0000000000401550
                def splits = line.split(' ')
                String name = splits[0]
                char type = splits[1].getChars()[0]
                return new BinaryInfo.Symbol(name, type, Character.isUpperCase(type))
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/critical.go

    					blocks[argID] = d
    					if f.pass.debug > 0 {
    						f.Warnl(p.Pos, "split critical edge")
    					}
    				} else {
    					reusedBlock = true
    				}
    			} else {
    				// no existing block, so allocate a new block
    				// to place on the edge
    				d = f.NewBlock(BlockPlain)
    				d.Pos = p.Pos
    				if f.pass.debug > 0 {
    					f.Warnl(p.Pos, "split critical edge")
    				}
    			}
    
    			// if this not the first argument for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. .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)
Back to top