Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 80 for Concatenates (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/value.go

    	}
    }
    
    // ListValue contains a list of dynamically typed entries.
    type ListValue struct {
    	Entries      []*DynValue
    	initValueSet sync.Once
    	valueSet     map[ref.Val]struct{}
    }
    
    // Add concatenates two lists together to produce a new CEL list value.
    func (lv *ListValue) Add(other ref.Val) ref.Val {
    	oArr, isArr := other.(traits.Lister)
    	if !isArr {
    		return types.MaybeNoSuchOverloadErr(other)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 20.5K bytes
    - Viewed (0)
  2. src/syscall/fs_wasip1.go

    			lookupParent = false
    		}
    
    		if len(buf) > 0 && buf[len(buf)-1] != '/' {
    			buf = append(buf, '/')
    		}
    		buf = append(buf, s...)
    	}
    	return buf, lookupParent
    }
    
    // joinPath concatenates dir and file paths, producing a cleaned path where
    // "." and ".." have been removed, unless dir is relative and the references
    // to parent directories in file represented a location relative to a parent
    // of dir.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/FluentIterable.java

          @Override
          public Iterator<T> iterator() {
            return Iterators.concat(Iterators.transform(inputs.iterator(), Iterable::iterator));
          }
        };
      }
    
      /** Concatenates a varargs array of iterables without making a defensive copy of the array. */
      private static <T extends @Nullable Object> FluentIterable<T> concatNoDefensiveCopy(
          final Iterable<? extends T>... inputs) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/FluentIterable.java

          @Override
          public Iterator<T> iterator() {
            return Iterators.concat(Iterators.transform(inputs.iterator(), Iterable::iterator));
          }
        };
      }
    
      /** Concatenates a varargs array of iterables without making a defensive copy of the array. */
      private static <T extends @Nullable Object> FluentIterable<T> concatNoDefensiveCopy(
          final Iterable<? extends T>... inputs) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. guava/src/com/google/common/io/MoreFiles.java

        if (exceptions == null) {
          exceptions = new ArrayList<>(); // don't need Set semantics
        }
        exceptions.add(e);
        return exceptions;
      }
    
      /**
       * Concatenates the contents of the two given collections of exceptions. If either collection is
       * null, the other collection is returned. Otherwise, the elements of {@code other} are added to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  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