Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,275 for component1 (0.59 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/CompositeDomainObjectSetTest.groovy

            when:
            component1.add("c")
            component1.add("l")
            component2.add("d")
            component2.add("m")
    
            then:
            filtered.toList() == ["j", "l", "k", "m"]
    
            when:
            component1.remove("c")
            component1.remove("l")
            component2.remove("d")
            component2.remove("m")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 05 20:02:22 UTC 2018
    - 10.6K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/bugsFromRealComposeApps/constExprInitializer.kt

    // DUMP_IR
    
    // FILE: data/PodcastWithExtraInfo.kt
    package data
    
    class PodcastWithExtraInfo {
        lateinit var url: String
        var lastEpisodeDate: kotlin.time.TimeSource? = null
        operator fun component1() = url
        operator fun component2() = lastEpisodeDate
    }
    
    // FILE: main.kt
    package home
    
    import data.PodcastWithExtraInfo
    
    fun preview(featuredPodcast: PodcastWithExtraInfo) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 18 11:28:11 UTC 2024
    - 470 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolverTest.groovy

        def "resolve fails when target project has multiple component publications with different coordinates"() {
            given:
            def component1 = Stub(SoftwareComponentInternal)
            def component2 = Stub(SoftwareComponentInternal)
            def component3 = Stub(TestComponent)
    
            when:
            def publication = pub('mock', "pub-group", "pub-name", "pub-version", component1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/components/internal/ComponentReportRendererTest.groovy

            }
            def component2 = Stub(ComponentSpec) {
                getDisplayName() >> "<component 2>"
            }
    
            when:
            renderer.startProject(project)
            renderer.renderComponents([component1, component2])
            renderer.completeProject(project)
            renderer.complete()
    
            then:
            output.value.contains("""
    {header}<component 1>
    """)
            output.value.contains("""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 10 12:50:23 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/M2ResourcePatternTest.groovy

            def component1 = newId(DefaultModuleIdentifier.newId("group", "projectA"), "1.2")
            def component2 = newId(DefaultModuleIdentifier.newId("org.group", "projectA"), "1.2")
    
            expect:
            pattern.toModuleVersionPath(component1).path == 'prefix/group/projectA/1.2'
            pattern.toModuleVersionPath(component2).path == 'prefix/org/group/projectA/1.2'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compilerFacility/bugsFromRealComposeApps/constExprLateInitializer.kt

            set(value) {
                field = value
            }
        init {
            lastEpisodeDate = null
            url = ""
        }
    
        operator fun component1() = url
        operator fun component2() = lastEpisodeDate
    }
    
    // FILE: main.kt
    package home
    
    import data.PodcastWithExtraInfo
    
    fun preview(featuredPodcast: PodcastWithExtraInfo) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 18 11:28:11 UTC 2024
    - 595 bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/compilerFacility/bugsFromRealComposeApps/constExprLateInitializer.ir.txt

              CALL 'public final fun component1 (): kotlin.String [operator] declared in data.PodcastWithExtraInfo' type=kotlin.String origin=COMPONENT_N(index=1)
                $this: GET_VAR 'val tmp_0: data.PodcastWithExtraInfo [val] declared in home.preview' type=data.PodcastWithExtraInfo origin=null
            VAR name:lastEpisodeDate type:kotlin.time.TimeSource? [val]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 18 11:28:11 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/bugsFromRealComposeApps/constExprInitializer.ir.txt

              CALL 'public final fun component1 (): kotlin.String [operator] declared in data.PodcastWithExtraInfo' type=kotlin.String origin=COMPONENT_N(index=1)
                $this: GET_VAR 'val tmp_0: data.PodcastWithExtraInfo [val] declared in home.preview' type=data.PodcastWithExtraInfo origin=null
            VAR name:lastEpisodeDate type:kotlin.time.TimeSource? [val]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 18 11:28:11 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

    import java.nio.file.LinkOption
    import java.util.stream.Collectors
    import java.util.zip.ZipEntry
    import java.util.zip.ZipOutputStream
    import javax.inject.Inject
    import kotlin.collections.component1
    import kotlin.collections.component2
    import kotlin.collections.set
    import kotlin.streams.toList
    
    
    typealias LeftoverFiles = Map<File, List<String>>
    
    
    abstract class TestFilesCleanupService @Inject constructor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:19:47 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. operator/pkg/component/component.go

    	// ResourceName returns the name of the resources of the component.
    	ResourceName() string
    	// Namespace returns the namespace for the component.
    	Namespace() string
    	// Enabled reports whether the component is enabled.
    	Enabled() bool
    	// Run starts the component. Must be called before the component is used.
    	Run() error
    	// RenderManifest returns a string with the rendered manifest for the component.
    	RenderManifest() (string, error)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top