Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,188 for Function1 (0.62 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/functionParamInBinaryModule2.txt

        inner (anonymous) class MainKt$ArticleScreenContent$2
        synthetic static method ArticleScreenContent$default(p0: java.lang.String, p1: kotlin.jvm.functions.Function0, p2: int, p3: java.lang.Object): void
        private final static method ArticleScreenContent(p0: java.lang.String, p1: kotlin.jvm.functions.Function0): void
        private final static method TopAppBar(p0: java.lang.String): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 12:26:50 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/internal/abi/symtab.go

    package abi
    
    // A FuncFlag records bits about a function, passed to the runtime.
    type FuncFlag uint8
    
    const (
    	// FuncFlagTopFrame indicates a function that appears at the top of its stack.
    	// The traceback routine stop at such a function and consider that a
    	// successful, complete traversal of the stack.
    	// Examples of TopFrame functions include goexit, which appears
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 14:25:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/async-tests.md

    Let's look at how we can make that work.
    
    ## pytest.mark.anyio
    
    If we want to call asynchronous functions in our tests, our test functions have to be asynchronous. AnyIO provides a neat plugin for this, that allows us to specify that some test functions are to be called asynchronously.
    
    ## HTTPX
    
    Even if your **FastAPI** application uses normal `def` functions instead of `async def`, it is still an `async` application underneath.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 12:07:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/invalid_input.mlir

    // Tests function with multiple blocks.
    
    func.func @main() {
      ^bb:
        cf.br ^bb1
      ^bb1:
        func.return
    }
    
    // CHECK: functions must be of a single Graph with single op Islands: only single block functions are supported
    
    // -----
    
    // Tests invalid functions for exporting to Graph/GraphDef.
    
    func.func @main() {
      func.return
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. src/runtime/funcdata.h

    // This communication is only required in assembly functions that make calls
    // to other functions that might be preempted or grow the stack.
    // NOSPLIT functions that make no calls do not need to use these macros.
    
    // GO_ARGS indicates that the Go prototype for this assembly function
    // defines the pointer map for the function's arguments.
    // GO_ARGS should be the first instruction in a function that uses it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:28:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprogcgo/aprof.go

    // This is a regression test for issue 14599, where profiling fails when the
    // function is the first C function. Exported functions are the first C
    // functions, so we use an exported function. Exported functions are created in
    // lexicographical order of source files, so this file is named aprof.go to
    // ensure its function is first.
    
    // extern void CallGoNop();
    import "C"
    
    import (
    	"bytes"
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 19 16:23:54 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util.h

    bool HasTPUPartitionedCallOpInModule(mlir::ModuleOp module);
    
    // Check if a graph contains TPUPartitionedCall op, including its reachable
    // functions. The function library is used to store the functions that are
    // defined in a TensorFlow program
    bool IsInferenceGraph(const Graph& graph,
                          const FunctionLibraryDefinition* function_library);
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 16:33:22 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     *  <li>as a custom class that implements both encoding and decoding protocols in the same class
     *  <li>based on the combination of arbitrary encoder and decoder functions, as done via {@link org.gradle.internal.serialize.graph.CombinatorsKt#codec(kotlin.jvm.functions.Function3, kotlin.jvm.functions.Function2) codec(...)}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass.h

    // 'group_attribute', splits those subgraphs into functions, and replaces
    // the originals with function calls.
    //
    // 'group_attribute' must be a string valued-attribute that names the new
    // functions to introduce.
    //
    // If 'rewrite_subgraph_fn' is set, it is applied to each subgraph before
    // function conversion.
    //
    // If 'reuse_existing_functions' is set, use an existing function with the
    // same name, if any.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 12 03:59:36 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/grad_op_registry.h

                               std::vector<Output>* grad_outputs);
    
    /// GradOpRegistry maintains a static registry of gradient functions.
    /// Gradient functions are indexed in the registry by the forward op name (i.e.
    /// "MatMul" -> MatMulGrad func).
    class GradOpRegistry {
     public:
      /// Registers 'func' as the gradient function for 'op'.
      /// Returns true if registration was successful, check fails otherwise.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:33:58 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top