Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 129 for evacuated (0.3 sec)

  1. pkg/kubelet/config/sources.go

    type sourcesImpl struct {
    	// lock protects access to sources seen.
    	lock sync.RWMutex
    	// set of sources seen.
    	sourcesSeen sets.Set[string]
    	// sourcesReady is a function that evaluates if the sources are ready.
    	sourcesReadyFn SourcesReadyFn
    }
    
    // Add adds the specified source to the set of sources managed.
    func (s *sourcesImpl) AddSource(source string) {
    	s.lock.Lock()
    	defer s.lock.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/error_util.cc

        : BaseScopedDiagnosticHandler(context, propagate, filter_stack) {
      if (filter_stack) {
        this->shouldShowLocFn = [](Location loc) -> bool {
          // For a Location to be surfaced in the stack, it must evaluate to true.
          // For any Location that is a FileLineColLoc:
          if (FileLineColLoc fileLoc = mlir::dyn_cast<FileLineColLoc>(loc)) {
            return !tensorflow::IsInternalFrameForFilename(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/base/KtConstantValue.kt

    import org.jetbrains.kotlin.psi.KtElement
    import org.jetbrains.kotlin.types.ConstantValueKind
    
    
    /**
     * A Kotlin constant value. This value amy be used as `const val` initializer or annotation argument.
     * Also, may represent evaluated constant value. So, `1 + 2` will be represented as `KaIntConstantValue(3)`
     *
     * For more info about constant values please see [official Kotlin documentation](https://kotlinlang.org/docs/properties.html#compile-time-constants])
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/BuildOperationSettingsProcessor.java

                    return state;
                }
    
                @Override
                public BuildOperationDescriptor.Builder description() {
                    return BuildOperationDescriptor.displayName(gradle.contextualize("Evaluate settings")).
                        progressDisplayName("Evaluating settings").
                        details(new Details() {
    
                            @Override
                            public String getBuildPath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/test/groovy/org/gradle/initialization/BuildOperationSettingsProcessorTest.groovy

            then:
            1 * settingsProcessor.process(gradleInternal, settingsLocation, classLoaderScope, startParameter) >> state
            1 * gradleInternal.contextualize("Evaluate settings") >> contextualizedName
    
            and:
            buildOperationRunner.operations.size() == 1
            buildOperationRunner.operations.get(0).displayName == contextualizedName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/BuildOperationNotificationsFixtureTest.groovy

    import org.gradle.internal.reflect.JavaReflectionUtil
    import spock.lang.Specification
    
    class BuildOperationNotificationsFixtureTest extends Specification {
    
        def "listener evaluates build op #notificationMethod notifications (#testedIf.simpleName)"() {
            given:
            def listener = listener()
    
            when:
            listener."$notificationMethod"(notificationEvent)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

             *
             * If the cache already contains the outputs for the given work, an already finished {@link Deferrable} will be returned.
             * Otherwise, the execution is wrapped in a not-yet-complete {@link Deferrable} to be evaluated later.
             * The work is looked up by its {@link UnitOfWork.Identity identity} in the given cache.
             */
            <T> Deferrable<Try<T>> executeDeferred(Cache<Identity, IdentityCacheResult<T>> cache);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top