Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 216 for Function1 (0.14 sec)

  1. okhttp/api/okhttp.api

    }
    
    public final class okhttp3/OkHttpClient$Builder {
    	public final fun -addInterceptor (Lkotlin/jvm/functions/Function1;)Lokhttp3/OkHttpClient$Builder;
    	public final fun -addNetworkInterceptor (Lkotlin/jvm/functions/Function1;)Lokhttp3/OkHttpClient$Builder;
    	public fun <init> ()V
    	public final fun addInterceptor (Lokhttp3/Interceptor;)Lokhttp3/OkHttpClient$Builder;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.kotlin.dsl.GroovyInteroperabilityKt.closureOf(java.lang.Object, kotlin.jvm.functions.Function1)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  3. src/testing/testing.go

    // example function, at least one other function, type, variable, or constant
    // declaration, and no test or benchmark functions.
    //
    // # Fuzzing
    //
    // 'go test' and the testing package support fuzzing, a testing technique where
    // a function is called with randomly generated inputs to find bugs not
    // anticipated by unit tests.
    //
    // Functions of the form
    //
    //	func FuzzXxx(*testing.F)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Move the given set of 'ops' into it's own function and replace them with a
      // call to that function ('caller'). if 'metadata_op' and 'compilation_op' are
      // non-null, also insert those (i.e., target the resulting function to the
      // TPU). Here, 'parent_func' is the func.FuncOp that owns the ops in 'ops'.
      //
      // Returns in 'caller' a tf.StatefulPartitionedCallOp that calls the function
      // that was extracted..
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_function_test.cc

      Define(1, {add}, {feed1, feed2}, {add, scalar}, {}, true);
      EXPECT_EQ(TF_INVALID_ARGUMENT, TF_GetCode(s_));
      EXPECT_EQ(string("TF_Output scalar:0 is neither in the function body nor "
                       "among function inputs. Encountered while creating "
                       "function 'MyFunc'"),
                string(TF_Message(s_)));
    }
    
    void DefineFunction(const char* name, TF_Function** func,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    LogicalResult ResourceLiftingForFunctionalControlFlow(func::FuncOp function) {
      // This routine should only be called when control flow operations are still
      // represented with TF IfOp and WhileOp operations. In this case, there should
      // be only one basic blocks in the MLIR representation.
      if (!llvm::hasSingleElement(function)) {
        return function.emitError()
               << "expect the function to have 1 block while it has "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.h

    //          automatic skipping of dummy input operations is performed.
    //  ninputs - number of elements in `inputs` array
    //  inputs - array of TF_Outputs that specify the inputs to the function.
    //           If `ninputs` is zero (the function takes no inputs), `inputs`
    //           can be null. The names used for function inputs are normalized
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ### `-tf-promote-resources-to-args`
    
    _Promote resources reads/writes to function inputs/outputs._
    
    This pass promotes resource accesses in function(s) (by default, the main)
    to input arguments and outputs of the function(s).
    
    Two types of resources are supported:
    (1) A function argument of TF::ResourceType type (this pass).
    (2) A VarHandleOp in the function (tf-promote-var-handles-to-args).
    
    After the pass,
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

    # Setup the containerd on the node.
    function Setup-ContainerRuntime {
      Install-Pigz
      Install_Containerd
      Configure_Containerd
      Start_Containerd
    }
    
    function Test-ContainersFeatureInstalled {
      return (Get-WindowsFeature Containers).Installed
    }
    
    # After this function returns, the computer must be restarted to complete
    # the installation!
    function Install-ContainersFeature {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    }
    
    // The testing::internal::posix namespace holds wrappers for common
    // POSIX functions.  These wrappers hide the differences between
    // Windows/MSVC and POSIX systems.  Since some compilers define these
    // standard functions as macros, the wrapper cannot have the same name
    // as the wrapped function.
    
    namespace posix {
    
    // Functions with a different name on Windows.
    
    #if GTEST_OS_WINDOWS
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
Back to top