Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for aS (0.12 sec)

  1. docs/en/docs/img/deployment/https/https06.drawio

                        <mxGeometry relative="1" as="geometry">
                            <mxPoint x="105" y="-280" as="sourcePoint"/>
                            <mxPoint x="390" y="-260" as="targetPoint"/>
                            <Array as="points">
                                <mxPoint x="390" y="-430"/>
                            </Array>
                        </mxGeometry>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/CollectionUtilsTest.groovy

        }
    
        def "addAll from iterable"() {
            expect:
            addAll([], [1, 2, 3] as Iterable) == [1, 2, 3]
            addAll([] as Set, [1, 2, 3, 1] as Iterable) == [1, 2, 3] as Set
        }
    
        def "addAll from array"() {
            expect:
            addAll([], 1, 2, 3) == [1, 2, 3]
            addAll([] as Set, 1, 2, 3, 1) == [1, 2, 3] as Set
        }
    
        def "injection"() {
            expect:
            def target = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/ResolverEnvironment.kt

        get() = get("projectRoot") as File
    
    
    /**
     * Path of the local Gradle installation as configured in IntelliJ.
     */
    internal
    val Environment.gradleHome: File?
        get() = get("gradleHome") as? File
    
    
    /**
     * URI of the remote Gradle distribution as configured in IntelliJ.
     */
    internal
    val Environment.gradleUri: URI?
        get() = get("gradleUri") as? URI
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. docs/en/docs/img/deployment/https/https07.drawio

                        <mxGeometry relative="1" as="geometry">
                            <mxPoint x="105" y="-280" as="sourcePoint"/>
                            <mxPoint x="390" y="-260" as="targetPoint"/>
                            <Array as="points">
                                <mxPoint x="390" y="-430"/>
                            </Array>
                        </mxGeometry>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 18.7K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/deps/ClassDependentsAccumulatorTest.groovy

            accumulator.addClass("c", hash, null, [], [] as Set, IntSets.EMPTY_SET)
    
            expect:
            accumulator.dependentsMap.a.privateDependentClasses == [] as Set
            accumulator.dependentsMap.a.accessibleDependentClasses == ['b'] as Set
            accumulator.dependentsMap.b.privateDependentClasses == ['a'] as Set
            accumulator.dependentsMap.b.accessibleDependentClasses == [] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

                ConstantValueKind.Boolean -> value as Boolean
                ConstantValueKind.Char -> value as Char
                ConstantValueKind.String -> value as String
                ConstantValueKind.Byte -> (value as Number).toByte()
                ConstantValueKind.Double -> (value as Number).toDouble()
                ConstantValueKind.Float -> (value as Number).toFloat()
                ConstantValueKind.Int -> (value as Number).toInt()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorTest.groovy

        @Rule
        TestNameTestDirectoryProvider tmp = new TestNameTestDirectoryProvider(getClass())
    
        def processor = Mock(TestResultProcessor)
    
        @Subject
        def classProcessor = createProcessor([] as Set, [] as Set, [] as Set, [] as Set, [] as Set)
    
        JUnitTestClassProcessor createProcessor(Set<String> includeCategories, Set<String> excludeCategories, Set<String> includedTests, Set<String> excludedTests, Set<String> includedTestsCommandLine) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/store/DefaultBinaryStoreTest.groovy

            store.write({ it.writeInt(10) } as BinaryStore.WriteAction)
            store.write({ it.writeString("x") } as BinaryStore.WriteAction)
            def data1 = store.done()
            store.write({ it.writeString("y") } as BinaryStore.WriteAction)
            def data2 = store.done()
    
            then:
            data1.read({ it.readInt() } as BinaryStore.ReadAction) == 10
            data1.read({ it.readString() } as BinaryStore.ReadAction) == "x"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/MethodInvocationSerializerTest.groovy

            def invocation = new MethodInvocation(method, [[] as Thing[]] as Object[])
    
            when:
            def serialized = serialize(invocation)
            def result = deserialize(serialized)
    
            then:
            result.method == method
            result.arguments == [[] as Thing[]] as Object[]
        }
    
        def "replaces a method that has already been seen with an integer ID"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/FixedStepPathMatcherTest.groovy

            expect:
            matcher.matches(["a", "c"] as String[], 0)
            matcher.matches(["a", "c", "d"] as String[], 0)
            matcher.matches(["prefix", "a", "c"] as String[], 1)
    
            and:
            !matcher.matches([] as String[], 0)
            !matcher.matches(["a"] as String[], 0)
            !matcher.matches(["other"] as String[], 0)
            !matcher.matches(["a", "other"] as String[], 0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top