Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 110 for setpf (0.05 sec)

  1. test/ken/array.go

    package main
    
    func setpd(a []int) {
    	//	print("setpd a=", a, " len=", len(a), " cap=", cap(a), "\n");
    	for i := 0; i < len(a); i++ {
    		a[i] = i
    	}
    }
    
    func sumpd(a []int) int {
    	//	print("sumpd a=", a, " len=", len(a), " cap=", cap(a), "\n");
    	t := 0
    	for i := 0; i < len(a); i++ {
    		t += a[i]
    	}
    	//	print("sumpd t=", t, "\n");
    	return t
    }
    
    func setpf(a *[20]int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/anames.go

    	"SCASQ",
    	"SCASW",
    	"SETCC",
    	"SETCS",
    	"SETEQ",
    	"SETGE",
    	"SETGT",
    	"SETHI",
    	"SETLE",
    	"SETLS",
    	"SETLT",
    	"SETMI",
    	"SETNE",
    	"SETOC",
    	"SETOS",
    	"SETPC",
    	"SETPL",
    	"SETPS",
    	"SFENCE",
    	"SGDT",
    	"SHA1MSG1",
    	"SHA1MSG2",
    	"SHA1NEXTE",
    	"SHA1RNDS4",
    	"SHA256MSG1",
    	"SHA256MSG2",
    	"SHA256RNDS2",
    	"SHLB",
    	"SHLL",
    	"SHLQ",
    	"SHLW",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  3. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

            withLibraryDependencies<DependencyRemovalByNameRule>(libs.sshdScp, setOf("slf4j-simple"))
            withLibraryDependencies<DependencyRemovalByNameRule>(libs.sshdSftp, setOf("slf4j-simple"))
            withLibraryDependencies<DependencyRemovalByNameRule>(libs.gradleProfiler, setOf("slf4j-simple"))
            withLibraryDependencies<DependencyRemovalByNameRule>(libs.samplesCheck, setOf("slf4j-simple"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/initialization/GradleApiSpecAggregatorTest.groovy

            when:
            def aggregate = subject.aggregate()
    
            then:
            aggregate.exportedResourcePrefixes == setOf("META-INF/gradle-plugins")
            aggregate.exportedPackages == setOf("kotlin", "org.gradle", "groovy")
        }
    
        static class SpecProvider1 implements GradleApiSpecProvider {
            @Override
            GradleApiSpecProvider.Spec get() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 26 05:36:10 UTC 2018
    - 3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-provider-plugins/src/test/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/ReduceGraphTest.kt

                        "d" to listOf("b", "e2")
                    )
                ),
                equalTo(
                    mapOf(
                        "a" to setOf("e1", "e2"),
                        "b" to setOf("e1"),
                        "c" to setOf("e1", "e2"),
                        "d" to setOf("e1", "e2")
                    )
                )
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. integration-tests/gradle/build.gradle.kts

      )
    val expectedCompileClasspathAndroidVersion =
      expectedReducedRuntimeClasspathAndroidVersion + setOf("j2objc-annotations-3.0.0.jar")
    val expectedCompileClasspathJreVersion =
      expectedReducedRuntimeClasspathJreVersion + setOf("j2objc-annotations-3.0.0.jar")
    
    val extraLegacyDependencies = setOf("google-collections-1.0.jar")
    
    buildscript {
      val agpVersion = if (gradle.gradleVersion.startsWith("5.")) "3.6.4" else "7.0.4"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. internal/pubsub/mask.go

    func (t *Mask) Merge(other Mask) {
    	*t |= other
    }
    
    // MergeMaskable will merge other into t.
    func (t *Mask) MergeMaskable(other Maskable) {
    	*t |= Mask(other.Mask())
    }
    
    // SetIf will add other if b is true.
    func (t *Mask) SetIf(b bool, other Mask) {
    	if b {
    		*t |= other
    	}
    }
    
    // Mask returns the mask as a uint64.
    func (t Mask) Mask() uint64 {
    	return uint64(t)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jul 05 21:45:49 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. build-logic/packaging/src/test/kotlin/gradlebuild/shade/tasks/ShadedJarTest.kt

                    )
                )
            )
    
            assertEquals(
                mapOf(
                    "First.class" to setOf("Second.class", "Third.class", "Forth.class"),
                    "Second.class" to emptySet(),
                    "Third.class" to setOf("First.class"),
                    "Forth.class" to emptySet()
                ),
                result
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/ide/eclipse/kotlin/build.gradle.kts

    eclipse {
        classpath {
            plusConfigurations += functional
        }
    }
    
    // tag::test-sources[]
    eclipse {
        classpath {
            testSourceSets = testSourceSets.get() + setOf(integTest)
            testConfigurations = testConfigurations.get() + setOf(functional)
        }
    }
    // end::test-sources[]
    
    // tag::test-fixtures[]
    eclipse {
        classpath {
            containsTestFixtures = true
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/kotlin/build.gradle.kts

    // tag::declare_capability[]
    dependencies {
        // Activate the "LoggingCapability" rule
        components.all(LoggingCapability::class.java)
    }
    
    class LoggingCapability : ComponentMetadataRule {
        val loggingModules = setOf("log4j", "log4j-over-slf4j")
    
        override
        fun execute(context: ComponentMetadataContext) = context.details.run {
            if (loggingModules.contains(id.name)) {
                allVariants {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top