Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,376 for Single (0.49 sec)

  1. src/cmd/cover/doc.go

    annotations to track which parts of each function are executed (this
    is referred to "instrumentation"). Cover can operate in "legacy mode"
    on a single Go source file at a time, or when invoked by the Go tool
    it will process all the source files in a single package at a time
    (package-scope instrumentation is enabled via "-pkgcfg" option).
    
    When generated instrumented code, the cover tool computes approximate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/substitutorProvider/AbstractCreateInheritanceTypeSubstitutorTest.kt

    import org.jetbrains.kotlin.types.Variance
    import kotlin.collections.single
    
    abstract class AbstractCreateInheritanceTypeSubstitutorTest : AbstractAnalysisApiBasedTest() {
        override fun doTest(testServices: TestServices) {
            val baseClass = testServices.expressionMarkerProvider
                .getElementsOfTypeAtCarets<KtClassOrObject>(testServices, "base")
                .single().first
            val superClass = testServices.expressionMarkerProvider
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PluginsBlockInterpreterTest.kt

        @Test
        fun `empty plugins block`() {
            assertStaticInterpretationOf("")
        }
    
        @Test
        fun `single plugin - id()`() {
            assertStaticInterpretationOf(
                """id("plugin-id")""",
                PluginRequestSpec("plugin-id")
            )
        }
    
        @Test
        fun `single plugin - id() version`() {
            assertStaticInterpretationOf(
                """id("plugin-id") version "1.0"""",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:15:27 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/HiddenInDslTest.kt

            assertTrue { aType.properties.single { it.name == "y" }.isHiddenInDsl }
    
            val result = schema.resolve(
                """
                x = 1
                y = 2
                """.trimIndent()
            )
    
            assertEquals(2, result.errors.size)
            assertEquals("y = 2", result.errors.single { it.errorReason is ErrorReason.UnresolvedAssignmentLhs }.element.sourceData.text())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/DeploymentContinuousBuildIntegrationTest.groovy

            fixture.assertDeploymentIsRunning(key)
    
            when:
            def lastBuildTime = single(buildTimes)
            waitBeforeModification fixture.triggerFile
            fixture.triggerFile << "\n#a change"
            buildTriggeredAndSucceeded()
    
            then:
            fixture.assertDeploymentIsRunning(key)
            lastBuildTime >= single(buildTimes)
        }
    
        List<Integer> getBuildTimes() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/device_attribute_to_launch.mlir

      func.return %a : tensor<i1>
    }
    
    // Tests that single TensorFlow op with no device attribute is not wrapped in `tf_device.launch`.
    // CHECK-LABEL: func @no_device_attribute
    func.func @no_device_attribute() {
      // CHECK-NOT: "tf_device.launch"
      // CHECK: "tf.opA"
      "tf.opA"() : () -> tensor<i1>
      func.return
    }
    
    // Tests that single TensorFlow op with empty device attribute is not wrapped in `tf_device.launch`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/go/doc/comment/testdata/text7.txt

    transporting arguments and results of remote procedure calls (RPCs) such as
    those provided by package "net/rpc".
    
    The implementation compiles a custom codec for each data type in the stream
    and is most efficient when a single Encoder is used to transmit a stream of
    values, amortizing the cost of compilation.
    -- text --
                        Package gob manages streams of gobs - binary values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/workerApi/workerDaemon/kotlin/build.gradle.kts

    // The parameters for a single unit of work
    interface ReverseParameters : WorkParameters {
        val fileToReverse : RegularFileProperty
        val destinationDir : DirectoryProperty
    }
    
    // The implementation of a single unit of work
    abstract class ReverseFile @Inject constructor(val fileSystemOperations: FileSystemOperations) : WorkAction<ReverseParameters> {
        override fun execute() {
            val fileToReverse = parameters.fileToReverse.asFile.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/docker.md

    #### Docker Compose
    
    You could be deploying to a **single server** (not a cluster) with **Docker Compose**, so you wouldn't have an easy way to manage replication of containers (with Docker Compose) while preserving the shared network and **load balancing**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformTestFixture.groovy

         * and another transform that converts 'red' to 'green'.
         * By default the 'blue' variant will contain a single file, and the transform will produce a single 'green' file from this.
         */
        void setupBuildWithChainedColorTransform(boolean lenient = false) {
            setupBuildWithColorAttributes()
            buildFile << """
                allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 15:06:39 UTC 2023
    - 21.7K bytes
    - Viewed (0)
Back to top