Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for getInternal (0.3 sec)

  1. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/PerformanceTestReport.kt

    abstract class PerformanceTestReport : DefaultTask() {
    
        @get:Classpath
        abstract val classpath: ConfigurableFileCollection
    
        @get:Input
        abstract val reportGeneratorClass: Property<String>
    
        @get:Internal
        abstract val performanceResultsDirectory: DirectoryProperty
    
        @get:SkipWhenEmpty
        @get:PathSensitive(PathSensitivity.NONE)
        @get:InputFiles
        val performanceResults: FileTree
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 22 15:27:22 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  2. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateReleasedVersions.kt

    import java.io.File
    
    
    @DisableCachingByDefault(because = "Not worth caching")
    abstract class UpdateReleasedVersions : DefaultTask() {
    
        @get:Internal
        abstract val releasedVersionsFile: RegularFileProperty
    
        @get:Internal
        abstract val currentReleasedVersion: Property<ReleasedVersion>
    
        @TaskAction
        fun updateVersions() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  3. pkg/kubelet/prober/results/results_manager.go

    	return result, found
    }
    
    func (m *manager) Set(id kubecontainer.ContainerID, result Result, pod *v1.Pod) {
    	if m.setInternal(id, result) {
    		m.updates <- Update{id, result, pod.UID}
    	}
    }
    
    // Internal helper for locked portion of set. Returns whether an update should be sent.
    func (m *manager) setInternal(id kubecontainer.ContainerID, result Result) bool {
    	m.Lock()
    	defer m.Unlock()
    	prev, exists := m.cache[id]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 13 07:12:54 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  4. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/ClasspathManifest.kt

        @get:Input
        abstract val optionalProjects: ListProperty<String>
    
        @get:Internal
        abstract val projectDependencies: ConfigurableFileCollection
    
        @Input
        val runtime = externalDependencies.elements.map { it.map { it.asFile.name }.sorted() }
    
        @get:Internal
        abstract val externalDependencies: ConfigurableFileCollection
    
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:26:58 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/DistributionTest.kt

         */
        @Internal
        val localRepository = LocalRepositoryEnvironmentProvider(project)
    
        @get:Internal
        abstract val tracker: Property<BuildService<*>>
    
        @get:Internal
        abstract val cachesCleaner: Property<CachesCleaner>
    
        init {
            jvmArgumentProviders.add(gradleInstallationForTest)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 01 22:53:59 UTC 2022
    - 8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/kotlin/build.gradle.kts

                }
            }
        }
    }
    
    // tag::bundle-task[]
    @CacheableTask                                       // <1>
    abstract class BundleTask : NpmTask() {
    
        @get:Internal                                    // <2>
        override val args
            get() = super.args
    
    
        @get:InputDirectory
        @get:SkipWhenEmpty
        @get:PathSensitive(PathSensitivity.RELATIVE)     // <3>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/buildCache/integration-tests/kotlin/build.gradle.kts

            }
        )
    }
    // end::distributionDirInput[]
    
    // tag::ignoreSystemProperties[]
    abstract class CiEnvironmentProvider : CommandLineArgumentProvider {
        @get:Internal  // <1>
        abstract val agentNumber: Property<String>
    
        override fun asArguments(): Iterable<String> =
            listOf("-DagentNumber=${agentNumber.get()}")  // <2>
    }
    
    tasks.integTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

    import javax.inject.Inject
    
    
    @CacheableTask
    abstract class GradleStartScriptGenerator : DefaultTask() {
    
        @get:Internal
        abstract val launcherJar: ConfigurableFileCollection
    
        @get:Input
        val launcherJarName: String
            get() = launcherJar.singleFile.name
    
        @get:Internal
        abstract val agentJars: ConfigurableFileCollection
    
        @get:Input
        val agentJarNames: List<String>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 24 10:25:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/ClassPathSensitiveTask.kt

    import org.gradle.work.DisableCachingByDefault
    
    
    @DisableCachingByDefault(because = "Abstract super-class, not to be instantiated directly")
    abstract class ClassPathSensitiveTask : DefaultTask(), ClassPathAware {
    
        @get:Internal
        protected
        val classPath: ClassPath
            get() = DefaultClassPath.of(classPathFiles)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/NestedBeanKotlinInterOpIntegrationTest.groovy

            pluginDir.file("src/main/kotlin/Params.kt") << """
                import ${Property.name}
                import ${Internal.name}
    
                interface Params {
                    @get:Internal
                    val flag: Property<Boolean>
                }
            """
            pluginDir.file("src/main/kotlin/SomeTask.kt") << """
                import ${DefaultTask.name}
                import ${TaskAction.name}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top