Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 97 for noinlines (0.18 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/saved_model/testdata/xla_launch.mlir

      func.return %1 : tensor<i32>
    }
    
    func.func private @xla_func_0(%arg0: tensor<1x3xf32>, %arg1: tensor<1x3xf32>) -> tensor<1x3xf32> attributes {tf._XlaMustCompile = true, tf._noinline = true, tf._original_func_name = "should_not_be_used"} {
      %1 = "tf.AddV2"(%arg0, %arg1) : (tensor<1x3xf32>, tensor<1x3xf32>) -> tensor<1x3xf32>
      %2 = "tf.Const"() {value = dense<0> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PolymorphicDomainObjectContainerExtensions.kt

     *
     * @see [PolymorphicDomainObjectContainer.register]
     */
    inline fun <reified T : Any> PolymorphicDomainObjectContainer<in T>.register(name: String, noinline configuration: T.() -> Unit): NamedDomainObjectProvider<T> =
        register(name, T::class.java, configuration)
    
    
    /**
     * Creates a domain object with the specified name and type, adds it to the container,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ExtensionAwareExtensions.kt

     *
     * @param T the extension type.
     * @param configuration the configuration block.
     * @see [ExtensionAware]
     */
    inline fun <reified T : Any> ExtensionAware.configure(noinline configuration: T.() -> Unit): Unit =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. cmd/testdata/xl-meta-inline-notinline.zip

    Anis Elleuch <******@****.***> 1653398798 +0100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 24 13:26:38 UTC 2022
    - 131.6K bytes
    - Viewed (0)
  5. test/fixedbugs/issue24693.dir/b.go

    // so the code produced for F2 uses { b.m(); a.m() } as the method set
    // order. So again, it ends up calling the wrong method.
    //
    // Also, this function is marked noinline because it's critical to the
    // test that the interface method call happen in this compilation
    // unit, and the itab construction happens in c.go.
    //
    //go:noinline
    func F2(i interface {
    	m()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 10 00:06:06 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/BuildCacheConfigurationExtensions.kt

     * @param configuration the configuration to execute against the remote cache.
     *
     * @see BuildCacheConfiguration.remote
     */
    inline fun <reified T : BuildCache> BuildCacheConfiguration.remote(noinline configuration: T.() -> Unit): T =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/AbstractKotlinIntegrationTest.kt

        }
    
        private
        val testRepositories: String
            get() = testRepositoryPaths.joinLines {
                """
                    maven { url = uri("$it") }
                """
            }
    
        private
        val futurePluginRules: String
            get() = futurePluginVersions.entries.joinLines { (id, version) ->
                """
                    if (requested.id.id == "$id") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 16:44:39 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DomainObjectCollectionExtensions.kt

     * @return The matching objects. Returns an empty collection if there are no such objects
     * in this collection.
     * @see [DomainObjectCollection.withType]
     */
    inline fun <reified S : Any> DomainObjectCollection<in S>.withType(noinline configuration: S.() -> Unit) =
        withType(S::class.java, configuration)
    
    
    /**
     * Returns a collection containing the objects in this collection of the given type. The
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/bytecode/AsmExtensions.kt

    }
    
    
    internal
    fun MethodVisitor.GOTO(label: Label) {
        visitJumpInsn(Opcodes.GOTO, label)
    }
    
    
    internal
    inline fun <reified T> MethodVisitor.TRY_CATCH(
        noinline tryBlock: MethodVisitor.() -> Unit,
        noinline catchBlock: MethodVisitor.() -> Unit
    ) =
        TRY_CATCH(T::class.internalName, tryBlock, catchBlock)
    
    
    internal
    fun MethodVisitor.TRY_CATCH(
        exceptionType: InternalName,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/util/documentation.go

    func Examples(s string) string {
    	trimmedText := strings.TrimSpace(s)
    	if trimmedText == "" {
    		return ""
    	}
    
    	const indent = `  `
    	inLines := strings.Split(trimmedText, "\n")
    	outLines := make([]string, 0, len(inLines))
    
    	for _, line := range inLines {
    		outLines = append(outLines, indent+strings.TrimSpace(line))
    	}
    
    	return strings.Join(outLines, "\n")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 24 11:40:55 UTC 2019
    - 4.4K bytes
    - Viewed (0)
Back to top