Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 107 for functor (0.25 sec)

  1. cluster/gce/gci/configure-helper.sh

      fi
    }
    
    function append-param-if-not-present {
      # A helper function to add flag to an arguments string
      # if no such flag is present already
      local params="$1"
      local -r flag="$2"
      local -r value="$3"
      if [[ ! "${params}" =~ "--${flag}"[=\ ] ]]; then
        params+=" --${flag}=${value}"
      fi
      echo "${params}"
    }
    
    function setup-os-params {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Maps.java

       * {@link java.util.stream.Collectors#toMap(java.util.function.Function,
       * java.util.function.Function) Collectors.toMap(Function, Function)}, which throws an {@code
       * IllegalStateException}.)
       *
       * @since 21.0
       */
      public static <T extends @Nullable Object, K extends Enum<K>, V>
          Collector<T, ?, ImmutableMap<K, V>> toImmutableEnumMap(
              java.util.function.Function<? super T, ? extends K> keyFunction,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

    KUBE_CLUSTER_INITIALIZATION_TIMEOUT=${KUBE_CLUSTER_INITIALIZATION_TIMEOUT:-300}
    
    function join_csv() {
      local IFS=','; echo "$*";
    }
    
    # This function returns the first string before the comma
    function split_csv() {
      echo "$*" | cut -d',' -f1
    }
    
    # Verify prereqs
    function verify-prereqs() {
      local cmd
    
      # we use openssl to generate certs
      kube::util::test_openssl_installed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

       * the collection operation is performed. (This differs from the {@code Collector} returned by
       * {@link java.util.stream.Collectors#toMap(java.util.function.Function,
       * java.util.function.Function) Collectors.toMap(Function, Function)}, which throws an {@code
       * IllegalStateException}.)
       *
       * @since 33.2.0 (available since 21.0 in guava-jre)
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        final BarChild barChild = new BarChild();
        Function<Foo, BarChild> function =
            new Function<Foo, BarChild>() {
              @Override
              public BarChild apply(Foo unused) {
                return barChild;
              }
            };
        Bar bar = getDone(transform(future, function, directExecutor()));
        assertSame(barChild, bar);
      }
    
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        final BarChild barChild = new BarChild();
        Function<Foo, BarChild> function =
            new Function<Foo, BarChild>() {
              @Override
              public BarChild apply(Foo unused) {
                return barChild;
              }
            };
        Bar bar = getDone(transform(future, function, directExecutor()));
        assertSame(barChild, bar);
      }
    
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          function_body.graph->AddEdge(arg_node, 0, e->dst(), e->dst_input());
        }
      }
      function_body.graph->RemoveNode(lifted_arg_node);
    }
    
    // Adds function def to function definition library and update the function
    // callsite operation `callsite_node` to invoke new function instead.
    Status AddFunctionWithNewName(const std::string& new_name,
                                  const std::string& func_attr_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/popper.min.js.map

    iers/applyStyle.js"],"sourcesContent":["/**\n * Check if the given variable is a function\n * @method\n * @memberof Popper.Utils\n * @argument {Any} functionToCheck - variable to check\n * @returns {Boolean} answer to: is a function?\n */\nexport default function isFunction(functionToCheck) {\n  const getType = {};\n  return (\n    functionToCheck &&\n    getType.toString.call(functionToCheck) === '[object Function]'\n  );\n}\n","/**\n * Get CSS computed property of the given element\n * @method\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      for (const FunctionDef& function : actual.function()) {
        actual_index[function.signature().name()] = &function;
      }
    
      for (const FunctionDef& expected_function : expected.function()) {
        auto it = actual_index.find(expected_function.signature().name());
        if (it == actual_index.end()) {
          if (diff) {
            *diff = absl::StrCat("Did not find expected function '",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        A pass that propagates device assignment of resources on a module. It
        performs in-function propagation, as well as cross-function propagation from
        callers to callees.
    
        This pass changes the module by adding "tf.device" attribute to function
        arguments and adding "device" attribute to TF ops.
    
        For example, given the function
    
        ```mlir
          !tf_res = type tensor<*x!tf_type.resource<tensor<32xf32>>>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top