Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getInternal (0.19 sec)

  1. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentSourceSetIntegrationTest.groovy

            buildFile << """
                @Managed interface CustomManagedLSS extends LanguageSourceSet {}
                @Managed interface CustomManagedLSSInternal extends CustomManagedLSS {
                    String getInternal()
                    void setInternal(String internal)
                }
                class CustomManagedLSSPlugin extends RuleSource {
                    @ComponentType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry.go

    		if v.Disabled {
    			continue
    		}
    		allKeys.Insert(k)
    	}
    	for k := range tmm {
    		allKeys.Insert(k)
    	}
    
    	rotationInterval := getInterval(features.MetricRotationInterval, defaultMetricRotationInterval)
    	gracefulDeletionInterval := getInterval(features.MetricGracefulDeletionInterval, defaultMetricGracefulDeletionInterval)
    
    	m := make([]telemetryFilterConfig, 0, allKeys.Len())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

        @get:Classpath
        val runtimeClassPathFiles: FileCollection
            get() = runtimeClassPathArtifactCollection.get().artifactFiles
    
        /**
         * Tracked via [runtimeClassPathFiles].
         */
        @get:Internal
        internal
        abstract val runtimeClassPathArtifactCollection: Property<ArtifactCollection>
    
        @get:OutputDirectory
        abstract val metadataOutputDir: DirectoryProperty
    
        @get:InputDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyAssignmentIntegrationTest.groovy

                }
    
                class MyObject(val value: String) {
                    override fun toString(): String = value
                }
    
                abstract class MyTask: DefaultTask() {
                    @get:Internal
                    $inputDeclaration
    
                    @TaskAction
                    fun run() {
                        when (val anyInput = input as Any?) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 28 14:39:49 UTC 2023
    - 36.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

            withBuildScript(
                """
                import org.gradle.api.*
                import org.gradle.api.tasks.*
    
                abstract class PrintInputToFile : DefaultTask() {
                    @get:Internal
                    abstract val inputSource: Property<String>
                    @get:Input
                    val input = { inputSource.get() }
                    @get:OutputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry_test.go

    			input:      1 * time.Second,
    			defaultVal: 0,
    			expected:   durationpb.New(1 * time.Second),
    		},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.name, func(t *testing.T) {
    			actual := getInterval(tc.input, tc.defaultVal)
    			assert.Equal(t, tc.expected, actual)
    		})
    	}
    }
    
    func Test_appendApplicableTelemetries(t *testing.T) {
    	namespacedName := types.NamespacedName{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
Back to top