Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,068 for cachez (0.2 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/annotations.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform
    
    /**
     * A property annotated with [KaCachedService] stores a cached IntelliJ project or application service.
     *
     * Retrieving services via [Project.getService][com.intellij.openapi.project.Project.getService] and
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // (see 'go help build') to force rebuilding of packages that
    // depend on the updated C libraries.
    //
    // The go command also caches successful package test results.
    // See 'go help test' for details. Running 'go clean -testcache' removes
    // all cached test results (but not cached build results).
    //
    // The go command also caches values used in fuzzing with 'go test -fuzz',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSkipCacheIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    class ConfigurationCacheSkipCacheIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "skip reading cached state on #commandLine"() {
    
            def configurationCache = newConfigurationCacheFixture()
    
            given:
            buildFile << """
                abstract class MyTask extends DefaultTask {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProvider.kt

        /**
         * Whether the declaration provider has a specific implementation of [computePackageNamesWithTopLevelClassifiers]. This allows the
         * Analysis API backend to determine whether classifier package sets are computed and cached separately or with [computePackageNames].
         */
        public abstract val hasSpecificClassifierPackageNamesComputation: Boolean
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

            reportAccess(key, oldValue);
            if (hadValue) {
                // The configuration cache uses onRemove callback to remember that the property has to be removed.
                // Of course, the property has to be removed in the cached run only if it was removed in the
                // non-cached run first. Changing the value of the property would invalidate the cache and recalculate the removal.
                reportRemoval(key);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. internal/config/heal/heal.go

    	// maximum sleep duration between objects to slow down heal operation.
    	Sleep   time.Duration `json:"sleep"`
    	IOCount int           `json:"iocount"`
    
    	DriveWorkers int `json:"drive_workers"`
    
    	// Cached value from Bitrot field
    	cache struct {
    		// -1: bitrot enabled, 0: bitrot disabled, > 0: bitrot cycle
    		bitrotCycle time.Duration
    	}
    }
    
    // BitrotScanCycle returns the configured cycle for the scanner healing
    // -1 for not enabled
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirSyntheticJavaPropertySymbol.kt

        override val initializer: KaInitializerValue? by cached { firSymbol.getKtConstantInitializer(builder) }
    
        override val modality: Modality get() = withValidityAssertion { firSymbol.modality }
        override val visibility: Visibility get() = withValidityAssertion { firSymbol.visibility }
    
        override val annotations by cached {
            KaFirAnnotationListForDeclaration.create(firSymbol, builder)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirKotlinPropertySymbol.kt

        override val contextReceivers: List<KaContextReceiver> by cached { firSymbol.createContextReceivers(builder) }
    
        override val isExtension: Boolean get() = withValidityAssertion { firSymbol.isExtension }
        override val initializer: KaInitializerValue? by cached { firSymbol.getKtConstantInitializer(builder) }
    
        override val symbolKind: KaSymbolKind
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    	}
    	cache.endIndex = cache.startIndex + count
    }
    
    func checkCacheElements(cache *testWatchCache) bool {
    	for i := cache.startIndex; i < cache.endIndex; i++ {
    		location := i % cache.capacity
    		if cache.cache[location].Key != fmt.Sprintf("event-%d", i) {
    			return false
    		}
    	}
    	return true
    }
    
    func TestCacheIncreaseDoesNotBreakWatch(t *testing.T) {
    	store := newTestWatchCache(2, &cache.Indexers{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  10. src/runtime/tracetype.go

    )
    
    // traceTypeTable maps stack traces (arrays of PC's) to unique uint32 ids.
    // It is lock-free for reading.
    type traceTypeTable struct {
    	tab traceMap
    }
    
    // put returns a unique id for the type typ and caches it in the table,
    // if it's seeing it for the first time.
    //
    // N.B. typ must be kept alive forever for this to work correctly.
    func (t *traceTypeTable) put(typ *abi.Type) uint64 {
    	if typ == nil {
    		return 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top