Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 127 for SplitV (0.17 sec)

  1. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	PathTypeExact = PathType("Exact")
    
    	// PathTypePrefix matches based on a URL path prefix split by '/'. Matching
    	// is case sensitive and done on a path element by element basis. A path
    	// element refers to the list of labels in the path split by the '/'
    	// separator. A request is a match for path p if every p is an element-wise
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.val1.indexOf('o', 2) == 2":                   4,
    				"self.val1.replace(' ', 'x') == 'Rookxtakesx๐Ÿ‘‘'":    7,
    				"self.val1.replace(' ', 'x', 1) == 'Rookxtakes ๐Ÿ‘‘'": 7,
    				"self.val1.split(' ') == ['Rook', 'takes', '๐Ÿ‘‘']":   6,
    				"self.val1.split(' ', 2) == ['Rook', 'takes ๐Ÿ‘‘']":   6,
    				"self.val1.substring(5) == 'takes ๐Ÿ‘‘'":              5,
    				"self.val1.substring(0, 4) == 'Rook'":              5,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    			if !strings.HasPrefix(arg, "-g") {
    				p.GccOptions = append(p.GccOptions, arg)
    			}
    		}
    	}
    	if flag == "LDFLAGS" {
    		p.LdFlags = append(p.LdFlags, args...)
    	}
    }
    
    // splitQuoted splits the string s around each instance of one or more consecutive
    // white space characters while taking into account quotes and escaping, and
    // returns an array of substrings of s or an empty list if s contains only white space.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

        private static int compareModelVersions(String first, String second) {
            // we use a dedicated comparator because we control our model version scheme.
            String[] firstSegments = first.split("\\.");
            String[] secondSegments = second.split("\\.");
            for (int i = 0; i < Math.max(firstSegments.length, secondSegments.length); i++) {
                int result = Long.valueOf(i < firstSegments.length ? firstSegments[i] : "0")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary = "";
    
      let arguments = (ins
        TF_StrTensor:$program_key,
        TF_Int32Tensor:$row_ids,
        TF_Int32Tensor:$col_ids,
        TF_Float32Tensor:$gains,
        TF_Int64Tensor:$splits,
        TF_Int32Tensor:$id_counts,
    
        ConfinedAttr<I64Attr, [IntMinValue<1>]>:$sample_count,
        ConfinedAttr<I64Attr, [IntMinValue<1>]>:$num_replica,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			expectedSetCost:  12,
    		},
    		{
    			name: "extended library split",
    			schemaGenerator: func(max *int64) *schema.Structural {
    				strType := withMaxLength(primitiveType("string", ""), max)
    				objType := objectType(map[string]schema.Structural{
    					"str":       strType,
    					"separator": strType,
    				})
    				objType = withRule(objType, "self.str.split(self.separator) == []")
    				return &objType
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/obj.go

    	if err != nil {
    		p.Ctxt.Diag("%v: constant %d too large", p, ins.imm, err)
    		return nil
    	}
    	if high == 0 {
    		return []*instruction{ins}
    	}
    
    	// Split into two additions, if possible.
    	// Do not split SP-writing instructions, as otherwise the recorded SP delta may be wrong.
    	if p.Spadj == 0 && ins.as == AADDI && ins.imm >= -(1<<12) && ins.imm < 1<<12-1 {
    		imm0 := ins.imm / 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // return the same resource (after passing it through multiple identity ops).
      // Some subsequent ops use the original resource and others use the returned
      // version. Pipelining splits these uses across loop iterations resulting in
      // terrible things.
      result = EliminateResourceLoops(builder, symbol_table, loop_body_func);
      if (failed(result)) return signalPassFailure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    	-bench regexp
    	    Run only those benchmarks matching a regular expression.
    	    By default, no benchmarks are run.
    	    To run all benchmarks, use '-bench .' or '-bench=.'.
    	    The regular expression is split by unbracketed slash (/)
    	    characters into a sequence of regular expressions, and each
    	    part of a benchmark's identifier must match the corresponding
    	    element in the sequence, if any. Possible parents of matches
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composit_functions_debugging.mlir

    // RUN: tf-quant-opt %s -split-input-file -quant-insert-quantized-functions -quant-quantize-composite-functions | FileCheck --check-prefix=TF %s
    // RUN: tf-quant-opt %s -split-input-file -quant-insert-quantized-functions -quant-quantize-composite-functions='target-opset=XLA' | FileCheck --check-prefix=XLA %s
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 80.5K bytes
    - Viewed (0)
Back to top