Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 225 for evacuate (0.21 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/GradlePropertiesController.java

        void loadGradlePropertiesFrom(File settingsDir, boolean setSystemProperties);
    
        /**
         * Unloads the properties so the next call to {@link #loadGradlePropertiesFrom(File, boolean)} would reload them and
         * re-evaluate any property defining system properties and environment variables.
         */
        void unloadGradleProperties();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. cmd/import-boss/main.go

    	// DepAllowed means the dependency was explicitly allowed by a rule.
    	DepAllowed
    	// DepAllowed means the dependency did not match any rule.
    	DepUnknown
    )
    
    // Evaluate considers this rule and decides if this dependency is allowed.
    func (r Rule) Evaluate(imp string) Disposition {
    	// To pass, an import muct be allowed and not forbidden.
    	// Check forbidden first.
    	for _, forbidden := range r.ForbiddenPrefixes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/main/SimpleAnalysisEvaluator.kt

            supportedResolutionResultHandlers = listOf(ConventionDefinitionCollector(conventionStorage), ConventionApplicationHandler(conventionStorage))
        )
    
        fun evaluate(
            scriptFileName: String,
            scriptSource: String
        ): AnalysisSequenceResult {
            val scriptContext = scriptContextFromFileName(scriptFileName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.fir.evaluate
    
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.annotations.*
    import org.jetbrains.kotlin.analysis.api.base.KaConstantValue
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator_test.go

    					},
    				},
    			},
    			messageEvaluations: []cel.EvaluationResult{
    				{
    					EvalResult: celtypes.String("evaluated message"),
    				},
    			},
    			policyDecision: []PolicyDecision{
    				{
    					Action:  ActionDeny,
    					Message: "evaluated message",
    					Reason:  forbiddenReason,
    				},
    			},
    		},
    		{
    			name: "messageExpression for multiple validations",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/KtFirAnnotationListForType.kt

    import org.jetbrains.kotlin.analysis.api.annotations.KaAnnotationList
    import org.jetbrains.kotlin.analysis.api.fir.KaSymbolByFirBuilder
    import org.jetbrains.kotlin.analysis.api.fir.evaluate.FirAnnotationValueConverter
    import org.jetbrains.kotlin.analysis.api.fir.toKaAnnotation
    import org.jetbrains.kotlin.analysis.api.impl.base.annotations.KaEmptyAnnotationList
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIntegrationTest.groovy

                            println("The parameter is `${taskParameter.get()}`")
                        }
                    }
    
                    // Expose dsl to the user, the value will be isolated only after settings has been fully evaluated
                    extensions.create<my.SettingsPluginDsl>("dsl").let { dsl ->
                        gradle.lifecycle.beforeProject {
                            tasks.register<CustomTask>("test") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 16:52:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            val constantValue = ConstantExpressionEvaluator.getConstant(initializer, bindingContext)
            if (constantValue != null) {
                val evaluated = constantValue.toConstantValue(propertyDescriptor?.type ?: TypeUtils.NO_EXPECTED_TYPE).toKtConstantValue()
                return KaConstantInitializerValue(evaluated, initializer)
            }
        }
    
        return KaNonConstantInitializerValue(initializer)
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/verify_tfxla_legalization.cc

        "must have compile-time constant inputs and outputs.\n\n"
        "XLA compilation requires that operator arguments that represent shapes or "
        "dimensions be evaluated to concrete values at compile time.  This error "
        "means that a shape or dimension argument could not be evaluated at "
        "compile time, usually because the value of the argument depends on a "
        "parameter to the computation, on a variable, or on a stateful operation "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

        }
    
        @Override
        Statement apply(Statement base, Description description) {
            return new Statement() {
                @Override
                void evaluate() throws Throwable {
                    try {
                        base.evaluate()
                    } finally {
                        cleanUpIsolatedDaemonsAndServices()
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top