Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 119 for Concatenates (0.23 sec)

  1. hack/lib/util.sh

    kube::util::wait-for-jobs() {
      local fail=0
      local job
      for job in $(jobs -p); do
        wait "${job}" || fail=$((fail + 1))
      done
      return ${fail}
    }
    
    # kube::util::join <delim> <list...>
    # Concatenates the list elements with the delimiter passed as first parameter
    #
    # Ex: kube::util::join , a b c
    #  -> a,b,c
    function kube::util::join {
      local IFS="$1"
      shift
      echo "$*"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/cache/secretcache.go

    }
    
    func isCreate(event fsnotify.Event) bool {
    	return event.Has(fsnotify.Create)
    }
    
    func isRemove(event fsnotify.Event) bool {
    	return event.Has(fsnotify.Remove)
    }
    
    // concatCerts concatenates PEM certificates, making sure each one starts on a new line
    func concatCerts(certsPEM []string) []byte {
    	if len(certsPEM) == 0 {
    		return []byte{}
    	}
    	var certChain bytes.Buffer
    	for i, c := range certsPEM {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. src/strings/strings.go

    	}
    
    	// Create strings from recorded field indices.
    	a := make([]string, len(spans))
    	for i, span := range spans {
    		a[i] = s[span.start:span.end]
    	}
    
    	return a
    }
    
    // Join concatenates the elements of its first argument to create a single string. The separator
    // string sep is placed between elements in the resulting string.
    func Join(elems []string, sep string) string {
    	switch len(elems) {
    	case 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/validation/validation.go

    	})
    }
    
    const (
    	maxAuditAnnotations = 20
    	// use a 5kb limit the CEL expression, note that this is less than the length limit
    	// for the audit annotation value limit (10kb) since an expressions that concatenates
    	// strings will often produce a longer value than the expression
    	maxAuditAnnotationValueExpressionLength = 5 * 1024
    )
    
    // ValidateValidatingAdmissionPolicy validates a ValidatingAdmissionPolicy before creation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      // to produce the same result. It first slices the first `$index` rows. Then
      // expands the dimension of the `$item`, followed by another slice of the
      // remaining rows starting from `$index` + 1. Lastly it concatenates the
      // three parts together.
      // On a high level, it's doing something like:
      // def : Pat<(TF_TensorListSetItemOp $input, $index, $item),
      //      (Concat
      //        concat_dim = 0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // Tensor + Scalar: [..., 1] + []  <- scalar
      //                        ^
      //                        \- axis is the innermost dimension.
      //
      // Concatenate tensor arguments on the same axis as the original operation,
      // and concatenate scalars into the vector.
      if (is_all_tensors(0, axis) && is_all_scalars(1)) {
        std::array<int64_t, 1> rhs_dims{
            static_cast<int64_t>(op.getValues().size())};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. pilot/pkg/model/destination_rule.go

    // each config will result in a final dest rule set (*.foo.com, and *.com).
    //
    // The following is the merge logic:
    // 1. Unique subsets (based on subset name) are concatenated to the original rule's list of subsets
    // 2. If the original rule did not have any top level traffic policy, traffic policies from the new rule will be
    // used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/tests/optimize.mlir

          rhs_contracting_dimensions = [0]
      >} : (tensor<3x1x512xf32>, tensor<512x13xf32>) -> tensor<3x1x13xf32>
      %r = "mhlo.concatenate"(%0, %1, %2) <{dimension = 0 : i64}> : (tensor<1x1x13xf32>, tensor<2x1x13xf32>, tensor<3x1x13xf32>) -> tensor<6x1x13xf32>
      func.return %r : tensor<6x1x13xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      [
        Pure,
        TFL_SameFirstOperandAndFirstResultElementType,
        SameOperandsAndResultsScale,
        QuantizableResult
      ]> {
      let summary = "Concatenation operator";
    
      let description = [{
        Concatenates tensors along one dimension
      }];
    
      let arguments = (
        ins TFL_VariadicTensorOf<
          [F32, I64, I32, I16, I8, QI8, QUI8, UI8, UI32, I1]>:$values,
        I32Attr:$axis,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

    //   %y1 = dot_general(%x1, %w)
    //   ...
    //   concatenate(%y0, %y1, ...)
    // To:
    //   %x = concatenate(%x0, %x1, ...)
    //   dot_general(%x, %w)
    LogicalResult LiftDotConcatLHS(mhlo::ConcatenateOp concat,
                                   PatternRewriter &rewriter) {
      if (concat.getVal().size() < 2)
        return rewriter.notifyMatchFailure(
            concat, "Concatenate op should have at least two operands");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top