Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for yFunction (0.24 sec)

  1. pkg/apis/core/zz_generated.deepcopy.go

    	types "k8s.io/apimachinery/pkg/types"
    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *AWSElasticBlockStoreVolumeSource) DeepCopyInto(out *AWSElasticBlockStoreVolumeSource) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSElasticBlockStoreVolumeSource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	types "k8s.io/apimachinery/pkg/types"
    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *AWSElasticBlockStoreVolumeSource) DeepCopyInto(out *AWSElasticBlockStoreVolumeSource) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSElasticBlockStoreVolumeSource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/ClosingFuture.java

      }
    
      /**
       * A function from an input to a result.
       *
       * @param <T> the type of the input to the function
       * @param <U> the type of the result of the function
       */
      @FunctionalInterface
      public interface ClosingFunction<T extends @Nullable Object, U extends @Nullable Object> {
    
        /**
         * Applies this function to an input, or throws an exception if unable to do so.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. doc/go1.17_spec.html

    </p>
    
    <pre>
    math.Atan2(x, y)  // function call
    var pt *Point
    pt.Scale(3.5)     // method call with receiver pt
    </pre>
    
    <p>
    In a function call, the function value and arguments are evaluated in
    <a href="#Order_of_evaluation">the usual order</a>.
    After they are evaluated, the parameters of the call are passed by value to the function
    and the called function begins execution.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // Infers the shape for ReduceDatasetOp and its associated reduce function.
      // Returns whether either op or function type was changed.
      bool InferShapeForReduceDataset(ReduceDatasetOp op, int64_t max_iterations);
    
      // Infers the shape for TakeWhileDatasetOp and its associated predicate
      // function. Returns whether either op or function type was changed.
      bool InferShapeForTakeWhileDataset(TakeWhileDatasetOp op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top