Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 179 for Function1 (0.2 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtVariableLikeSignature.kt

         * // source code
         * fun test() {
         *   val action = foo()
         *   action("") // this call
         * }
         * ```
         *
         * Unfortunately, [symbol] for the `action("")` call will be pointing to the `Function1<P1, R>.invoke(p1: P1): R`, because we
         * intentionally unwrap use-site substitution overrides. Because of this, `symbol.name` will yield `"p1"`, and not `"bar"`.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K 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. 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)
  4. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.h

        mlir::ModuleOp module, const GraphExportConfig& configs);
    
    // Converts an MLIR module to TensorFlow graph and FunctionLibraryDefinition.
    // The "main" function of the module is stored in the graph and the rest of
    // functions are stored in the library. Control ret nodes are stored separately
    // in `control_ret_nodes`.
    Status ConvertMlirToGraph(mlir::ModuleOp module,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbol.kt

         * For regular classes, implicit default constructor is generated
         * For data classes the `copy`, `component{N}`, `toString`, `equals`, `hashCode` functions are generated
         * For enum classes the `valueOf` & `values` functions are generated
         * For lambda the `it` implicit parameter is generated
         */
        SOURCE_MEMBER_GENERATED,
    
        /**
         * A Kotlin declaration came from some .class file
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Creates a pass that promotes resource reads/writes in `functions` to inputs
    // and outputs of `functions`, assuming that resource operations have already
    // been decomposed and function calls have already been inlined. If `functions`
    // is empty, the pass is applied to the main function by default. The pass also
    // annotates the input arguments for resources with the indices of their
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api.go

    	// function scopes which in turn enclose statement and function literal scopes.
    	// Note that even though package-level functions are declared in the package
    	// scope, the function scopes are embedded in the file scope of the file
    	// containing the function declaration.
    	//
    	// The Scope of a function contains the declarations of any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/deadcode.go

    //
    // The third case is handled by looking for functions that compiler flagged
    // as REFLECTMETHOD. REFLECTMETHOD on a function F means that F does a method
    // lookup with reflection, but the compiler was not able to statically determine
    // the method name.
    //
    // All functions that call reflect.Value.Method or reflect.Type.Method are REFLECTMETHODs.
    // Functions that call reflect.Value.MethodByName or reflect.Type.MethodByName with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                                              int64_t max_iterations);
    
      // Updates input types and refine shapes inside body of functions that are
      // attached to ControlFlow ops (If/While) or Calls. These functions include
      // Then/Else branches of IfOp and Cond/Body functions of WhileOp. Functions
      // attached to control flow share following common properties:
      //   1) They are never reused, ie. having a single use in module.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. 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)
Back to top