Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 283 for cachez (0.17 sec)

  1. src/cmd/go/internal/help/helpdoc.go

    The go command periodically deletes cached data that has not been
    used recently. Running 'go clean -cache' deletes all cached data.
    
    The build cache correctly accounts for changes to Go source files,
    compilers, compiler options, and so on: cleaning the cache explicitly
    should not be necessary in typical use. However, the build cache
    does not detect changes to C libraries imported with cgo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	w.resizeCacheLocked(event.RecordTime)
    	if w.isCacheFullLocked() {
    		// Cache is full - remove the oldest element.
    		w.startIndex++
    		w.removedEventSinceRelist = true
    	}
    	w.cache[w.endIndex%w.capacity] = event
    	w.endIndex++
    }
    
    // resizeCacheLocked resizes the cache if necessary:
    // - increases capacity by 2x if cache is full and all cached events occurred within last eventFreshDuration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/AbstractProblemsListener.kt

            // Let IO and configuration cache exceptions surface to the top.
            if (error is IOException || error is ConfigurationCacheThrowable) {
                throw error
            }
            throw ConfigurationCacheError(
                "Configuration cache state could not be cached: $trace: ${StructuredMessage.build(message)}",
                error.maybeUnwrapInvocationTargetException()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/func.go

    // sets to be reused by f.newSparseMapPos.
    func (f *Func) retSparseMapPos(ss *sparseMapPos) {
    	f.Cache.freeSparseMapPos(ss)
    }
    
    // newPoset returns a new poset from the internal cache
    func (f *Func) newPoset() *poset {
    	if len(f.Cache.scrPoset) > 0 {
    		po := f.Cache.scrPoset[len(f.Cache.scrPoset)-1]
    		f.Cache.scrPoset = f.Cache.scrPoset[:len(f.Cache.scrPoset)-1]
    		return po
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirFunctionalType.kt

        override val qualifiers: List<KaClassTypeQualifier.KaResolvedClassTypeQualifier> by cached {
            UsualClassTypeQualifierBuilder.buildQualifiers(coneType, builder)
        }
    
        override val annotations: KaAnnotationList by cached {
            KaFirAnnotationListForType.create(coneType, builder)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            configurationCache.assertStateStoreFailed()
            outputContains("Configuration cache entry discarded due to serialization error.")
            failure.assertHasFailures(1)
            failure.assertHasFileName("Build file '${buildFile.absolutePath}'")
            failure.assertHasLineNumber(4)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFailuresIntegrationTest.groovy

                    }
                }
            '''
    
            when:
            configurationCacheFails 'test'
    
            then:
            failure.assertHasFailure("Configuration cache state could not be cached: field `files` of `Bean` bean found in field `__bean__` of task `:test` of type `Test`: error writing value of type 'org.gradle.api.internal.artifacts.configurations.DefaultUnlockedConfiguration'") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.api.artifacts.component.BuildIdentifier
    import org.gradle.api.cache.Cleanup
    import org.gradle.api.cache.MarkingStrategy
    import org.gradle.api.file.FileCollection
    import org.gradle.api.flow.FlowScope
    import org.gradle.api.internal.BuildDefinition
    import org.gradle.api.internal.FeaturePreviews
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_test.go

    }
    
    func TestCreateWithKeyExist(t *testing.T) {
    	ctx, cacher, terminate := testSetup(t)
    	t.Cleanup(terminate)
    	storagetesting.RunTestCreateWithKeyExist(ctx, t, cacher)
    }
    
    func TestGet(t *testing.T) {
    	ctx, cacher, terminate := testSetup(t)
    	t.Cleanup(terminate)
    	storagetesting.RunTestGet(ctx, t, cacher)
    }
    
    func TestUnconditionalDelete(t *testing.T) {
    	ctx, cacher, terminate := testSetup(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

    import org.gradle.api.Action
    import org.gradle.api.internal.cache.CacheConfigurationsInternal
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.cache.CacheBuilder
    import org.gradle.cache.FileLockManager
    import org.gradle.cache.GlobalCacheLocations
    import org.gradle.cache.internal.UsedGradleVersions
    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory
    import org.gradle.internal.Pair
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top