Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 295 for evacuated (0.27 sec)

  1. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPluginTest.groovy

            when:
            project.pluginManager.apply(CppApplicationPlugin)
            project.evaluate()
    
            then:
            project.unitTest.testedComponent.orNull == project.application
        }
    
        def "registers a component for the test suite"() {
            when:
            project.pluginManager.apply(CppUnitTestPlugin)
            project.evaluate()
    
            then:
            project.components.test == project.unitTest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/api/types.go

    	// The following fields are exclusive. Only the topmost non-zero field is used.
    
    	// Quantity is a quantity associated with the signal that is evaluated against the specified operator.
    	Quantity *resource.Quantity
    	// Percentage represents the usage percentage over the total resource that is evaluated against the specified operator.
    	Percentage float32
    }
    
    // Threshold defines a metric for when eviction should occur.
    type Threshold struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/compileTimeConstantProvider/FirIdeDependentAnalysisScriptSourceModuleCompileTimeConstantEvaluatorTestGenerated.java

        KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate"), Pattern.compile("^(.+)\\.kts$"), null, true);
      }
    
      @Nested
      @TestMetadata("analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/incompleteCode")
      @TestDataPath("$PROJECT_ROOT")
      public class IncompleteCode {
        @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Feb 16 12:48:24 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-substitutionRule/kotlin/build.gradle.kts

    // Need to have at least one configuration declared, otherwise the rules are never evaluated
    val conf by configurations.creating
    
    // tag::module_to_project_substitution[]
    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute(module("org.utils:api"))
                .using(project(":api")).because("we work with the unreleased development version")
            substitute(module("org.utils:util:2.5")).using(project(":util"))
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 796 bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/xctest/plugins/XCTestConventionPluginTest.groovy

            project.evaluate()
    
            then:
            project.xctest.testedComponent.orNull == project.application
        }
    
        @Requires(UnitTestPreconditions.MacOs)
        def "registers a test bundle for the test suite on macOS"() {
            when:
            project.pluginManager.apply(XCTestConventionPlugin)
            project.evaluate()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/CurrentBuildOperationRefTest.groovy

            def thread = Thread.start {
                // expect:
                conditions.evaluate { ref.get() == null }
    
                // when:
                ref.set(op)
    
                // then:
                conditions.evaluate { ref.get().is(op) }
    
                // when:
                ref.clear()
    
                // then:
                conditions.evaluate { ref.get() == null }
            }
    
            then:
            conditions.await()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/compileTimeConstantProvider/FirIdeNormalAnalysisScriptSourceModuleCompileTimeConstantEvaluatorTestGenerated.java

        KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate"), Pattern.compile("^(.+)\\.kts$"), null, true);
      }
    
      @Nested
      @TestMetadata("analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/incompleteCode")
      @TestDataPath("$PROJECT_ROOT")
      public class IncompleteCode {
        @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Feb 16 12:48:24 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/buildlifecycle/projectEvaluateEvents/groovy/build.gradle

    // tag::after-evaluate[]
    gradle.beforeProject { project ->
        project.ext.set("hasTests", false)
    }
    
    gradle.afterProject { project ->
        if (project.ext.has("hasTests") && project.ext.get("hasTests") as Boolean) {
            def projectString = project.toString()
            println "Adding test task to $projectString"
            project.task('test') {
                doLast {
                    println "Running tests for $projectString"
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 483 bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedConfigurationConverter.java

                    if (evaluator instanceof TypeAwareExpressionEvaluator) {
                        result = ((TypeAwareExpressionEvaluator) evaluator).evaluate(value, type);
                    } else {
                        result = evaluator.evaluate(value);
                    }
                }
                if (null == result && configuration.getChildCount() == 0) {
                    value = configuration.getAttribute("default-value");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompileTimeConstantProvider.kt

    import org.jetbrains.kotlin.resolve.constants.evaluate.ConstantExpressionEvaluator
    import org.jetbrains.kotlin.types.TypeUtils
    
    
    internal class KaFe10CompileTimeConstantProvider(
        override val analysisSession: KaFe10Session
    ) : KaCompileTimeConstantProvider(), KaFe10SessionComponent {
        override val token: KaLifetimeToken
            get() = analysisSession.token
    
        override fun evaluate(expression: KtExpression): KaConstantValue? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top