Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for aS (0.06 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtDiagnosticConverter.kt

                        create(diagnostic as KtSimpleDiagnostic)
                    }
                    is KaFirDiagnostic1Creator<*> -> with(creator as KaFirDiagnostic1Creator<Any?>) {
                        create(diagnostic as KtDiagnosticWithParameters1<Any?>)
                    }
                    is KaFirDiagnostic2Creator<*, *> -> with(creator as KaFirDiagnostic2Creator<Any?, Any?>) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiStreamingBuildActionIntegrationTest.groovy

                projectConfigured(":")
                modelsCreated(":", 3)
            }
    
            and:
            (model.left as GradleProject).name == "hello-world"
            (model.right as EclipseProject).gradleProject.name == "hello-world"
    
            and:
            def streamedModels = listener1.models as List<CustomModel>
            streamedModels.size() == 2
            streamedModels[0].value == 1
            streamedModels[1].value == 2
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/PrimitiveTypesTest.groovy

            where:
            type | value
            boolean | false
            char    | '\u0000' as char
            byte    | 0 as byte
            short   | 0 as short
            int     | 0 as int
            float   | 0 as float
            long    | 0 as long
            double  | 0 as double
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            then:
            1 * src.getFiles() >> ([file1] as Set)
            files as List == [file1]
    
            when:
            files = collection.files
    
            then:
            1 * src.getFiles() >> ([file1, file2] as LinkedHashSet)
            files == [file1, file2] as LinkedHashSet
        }
    
        def "can set another collection as convention to the collection"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/TaskNameResolverTest.groovy

            then:
            result.keySet() == ['task1', 'task2', 'task3'] as Set
    
            and:
            1 * tasks.discoverTasks()
            1 * tasks.names >> (['task1', 'task2'] as SortedSet)
            0 * tasks._
            1 * childTasks.discoverTasks()
            1 * childTasks.names >> (['task1', 'task3'] as SortedSet)
            0 * childTasks._
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:58 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultValueSnapshotterTest.groovy

            expect:
            def snapshot1 = snapshotter.snapshot([] as String[])
            snapshot1 instanceof ArrayValueSnapshot
            snapshot1 == snapshotter.snapshot([] as String[])
            snapshot1 == snapshotter.snapshot([] as Object[])
            snapshot1 == snapshotter.snapshot([] as Integer[])
            snapshot1 != snapshotter.snapshot("abc" as String[])
            snapshot1 != snapshotter.snapshot([])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/obj6.go

    }
    func progUsesGlobal(p *obj.Prog) bool {
    	if p.As == obj.ACALL || p.As == obj.ATEXT || p.As == obj.AFUNCDATA || p.As == obj.ARET || p.As == obj.AJMP {
    		// These opcodes don't use a GOT to access their argument (see rewriteToUseGot),
    		// or R15 would be dead at them anyway.
    		return false
    	}
    	if p.As == ALEAQ {
    		// The GOT entry is placed directly in the destination register; R15 is not used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/ArchiveOperations.java

         * The path is evaluated as per {@link Project#file(Object)}.
         *
         * @param path The path evaluated as per {@link Project#file(Object)}.
         * @since 7.0
         */
        ReadableResource gzip(Object path);
    
        /**
         * Creates resource that points to a bzip2 compressed file at the given path.
         * The path is evaluated as per {@link Project#file(Object)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/tasks/CachingTaskDependencyResolveContextTest.groovy

            1 * otherDependency.getDependencies(task) >> { [target] as Set }
            tasks == [target] as LinkedHashSet
        }
    
        def resolvesTaskDependencyInternal() {
            TaskDependencyInternal otherDependency = Mock()
    
            when:
            def tasks = context.getDependencies(task, dependency)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/metaobject/MixInClosurePropertiesAsMethodsDynamicObjectTest.groovy

            when:
            def result = obj.invokeMethod("m", ["value"] as Object[])
    
            then:
            result == "result"
    
            and:
            1 * obj1.tryInvokeMethod("m", ["value"] as Object[]) >> DynamicInvokeResult.notFound()
            1 * obj2.tryInvokeMethod("m", ["value"] as Object[]) >> DynamicInvokeResult.notFound()
            1 * obj3.tryInvokeMethod("m", ["value"] as Object[]) >> DynamicInvokeResult.notFound()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top