Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,620 for Single (0.18 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/file/FileContents.java

         * </p>
         *
         * @return provider of the entire file contents as a single String.
         */
        Provider<String> getAsText();
    
        /**
         * Gets a provider of the entire file contents as a single byte array.
         *
         * <p>
         * The file is read only once and only when the value is requested for the first time.
         * </p>
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 08 14:00:30 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. samples/multicluster/gen-eastwest-gateway.sh

          exit 1
          ;;
      esac
    done
    
    
    # single-cluster installations may need this gateway to allow VMs to get discovery
    # for non-single cluster, we add additional topology information
    SINGLE_CLUSTER="${SINGLE_CLUSTER:-0}"
    if [[ "${SINGLE_CLUSTER}" -eq 0 ]]; then
      if [[ -z "${NETWORK:-}" ]]; then
        echo "Must specify either --single-cluster or --network."
        exit 1
      fi
    fi
    
    # base
    IOP=$(cat <<EOF
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 04 02:52:25 UTC 2021
    - 3K bytes
    - Viewed (0)
  3. releasenotes/notes/39521.yaml

    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 11 20:02:45 UTC 2022
    - 396 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cmd/kubeadm/app/cmd/util/documentation_test.go

    			in:   "",
    			out:  "",
    		},
    		{
    			desc: "Single line text is preserved as is",
    			in:   "Some text",
    			out:  "Some text",
    		},
    		{
    			desc: "Consecutive new lines are combined into a single paragraph",
    			in:   "Line1\nLine2",
    			out:  "Line1 Line2",
    		},
    		{
    			desc: "Leading and trailing spaces are stripped (single line)",
    			in:   "\t  \nThe text line  \n  \t",
    			out:  "The text line",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 24 11:40:55 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top