Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 95 for set_f (0.12 sec)

  1. build-logic/build-init-samples/src/main/kotlin/gradlebuild/generate-samples.gradle.kts

            type = buildInitType
            modularization = modularizationOption
        }
        samples.publishedSamples.create(sampleName) {
            dsls = setOf(Dsl.GROOVY, Dsl.KOTLIN)
            sampleDirectory = generateSampleTask.flatMap { it.target }
            displayName = "Building $languageDisplayName $capKind$multiProjectSuffix"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/runtime/defs_windows_arm64.go

    func (c *context) set_ip(x uintptr) { c.pc = uint64(x) }
    func (c *context) set_sp(x uintptr) { c.xsp = uint64(x) }
    func (c *context) set_lr(x uintptr) { c.x[30] = uint64(x) }
    func (c *context) set_fp(x uintptr) { c.x[29] = uint64(x) }
    
    func prepareContextForSigResume(c *context) {
    	c.x[0] = c.xsp
    	c.x[1] = c.pc
    }
    
    func dumpregs(r *context) {
    	print("r0   ", hex(r.x[0]), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/runtime/defs_windows_amd64.go

    func (c *context) lr() uintptr      { return 0 }
    func (c *context) set_lr(x uintptr) {}
    
    func (c *context) set_ip(x uintptr) { c.rip = uint64(x) }
    func (c *context) set_sp(x uintptr) { c.rsp = uint64(x) }
    func (c *context) set_fp(x uintptr) { c.rbp = uint64(x) }
    
    func prepareContextForSigResume(c *context) {
    	c.r8 = c.rsp
    	c.r9 = c.rip
    }
    
    func dumpregs(r *context) {
    	print("rax     ", hex(r.rax), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/runtime/defs_windows_arm.go

    func (c *context) set_sp(x uintptr) { c.spr = uint32(x) }
    func (c *context) set_lr(x uintptr) { c.lrr = uint32(x) }
    
    // arm does not have frame pointer register.
    func (c *context) set_fp(x uintptr) {}
    
    func prepareContextForSigResume(c *context) {
    	c.r0 = c.spr
    	c.r1 = c.pc
    }
    
    func dumpregs(r *context) {
    	print("r0   ", hex(r.r0), "\n")
    	print("r1   ", hex(r.r1), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/force_xla_constants_on_host_pass_test.cc

                                          {"Tperm", DT_INT32},
                                      }}},
                                    {{"c", "t0:y:0"}});
    
      AttrValue true_attribute;
      true_attribute.set_b(true);
      (*called_func.mutable_attr())[kXlaMustCompileAttr] = true_attribute;
      *library.add_function() = called_func;
      TF_ASSERT_OK(root.graph()->AddFunctionLibrary(library));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/kotlin/build.gradle.kts

    val artifactType = Attribute.of("artifactType", String::class.java)
    val minified = Attribute.of("minified", Boolean::class.javaObjectType)
    // end::artifact-transform-attribute-setup[]
    val keepPatterns = mapOf(
        "guava" to setOf(
            "com.google.common.base.Optional",
            "com.google.common.base.AbstractIterator"
        )
    )
    
    // end::artifact-transform-registration[]
    // tag::artifact-transform-attribute-setup[]
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts

        listOf("install", "installAll")
            .flatMap { listOf(":distributions-full:$it", "distributions-full:$it", it) }
            .any(gradle.startParameter.taskNames::contains)
    
    fun isRunningDocsTestTask() =
        setOf(":docs:docsTest", "docs:docsTest")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InstrumentedInputAccessListener.kt

    import org.gradle.internal.event.ListenerManager
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import java.io.File
    
    
    private
    val allowedProperties = setOf(
        "os.name",
        "os.version",
        "os.arch",
        // TODO(https://github.com/gradle/gradle/issues/18432) Remove this from the list when a proper support for the modifications is in place.
    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. build-logic-commons/basics/src/main/kotlin/gradlebuild.minify.gradle.kts

     * remain in their original namespace. This reduces the final Gradle distribution
     * size and makes us more conscious of which parts of a library we really need.
     */
    val keepPatterns = mapOf(
        "fastutil" to setOf(
            // For Java compilation incremental analysis
            "it.unimi.dsi.fastutil.ints.IntOpenHashSet",
            "it.unimi.dsi.fastutil.ints.IntSets",
            // For the embedded Kotlin compiler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinFileBasedDeclarationProvider.kt

            }
    
            return emptyList()
        }
    
        override fun findInternalFilesForFacade(facadeFqName: FqName): Collection<KtFile> = emptyList()
    
        override fun computePackageNames(): Set<String> = setOf(kotlinFile.packageFqName.asString())
    
        override val hasSpecificClassifierPackageNamesComputation: Boolean get() = false
        override val hasSpecificCallablePackageNamesComputation: Boolean get() = false
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top