Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,034 for cachez (0.09 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaConfigurationCachePerformanceTest.groovy

                    if (context.iteration > 1) {
                        def tag = action == storing
                            ? "Calculating task graph as no (cached configuration|configuration cache) is available"
                            : "Reusing configuration cache"
                        File buildLog = new File(invocationSettings.projectDir, "profile.log")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. pkg/kubelet/util/manager/cache_based_manager.go

    		}
    	}
    }
    
    // NewCacheBasedManager creates a manager that keeps a cache of all objects
    // necessary for registered pods.
    // It implements the following logic:
    //   - whenever a pod is created or updated, the cached versions of all objects
    //     is referencing are invalidated
    //   - every GetObject() call tries to fetch the value from local cache; if it is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanConstructors.kt

    import groovy.lang.GroovyObjectSupport
    import org.gradle.cache.internal.CrossBuildInMemoryCache
    import org.gradle.cache.internal.CrossBuildInMemoryCacheFactory
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import sun.reflect.ReflectionFactory
    import java.lang.reflect.Constructor
    
    
    /**
     * A global service that caches the serialization constructors for bean types.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. 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)
  5. pkg/scheduler/util/assumecache/assume_cache.go

    	"k8s.io/client-go/tools/cache"
    )
    
    // Informer is the subset of [cache.SharedInformer] that NewAssumeCache depends upon.
    type Informer interface {
    	AddEventHandler(handler cache.ResourceEventHandler) (cache.ResourceEventHandlerRegistration, error)
    }
    
    // AddTestObject adds an object to the assume cache.
    // Only use this for unit testing!
    func AddTestObject(cache *AssumeCache, obj interface{}) {
    	cache.add(obj)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	if bindings == nil {
    		return fmt.Errorf("failed to get cached bindings for pod %q", podName)
    	}
    	if claimsToProvision == nil {
    		return fmt.Errorf("failed to get cached claims to provision for pod %q", podName)
    	}
    
    	lastProcessedBinding := 0
    	lastProcessedProvisioning := 0
    	defer func() {
    		// only revert assumed cached updates for volumes we haven't successfully bound
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/configmap_cafile_content.go

    	configMapInformer cache.SharedIndexInformer
    
    	// caBundle is a caBundleAndVerifier that contains the last read, non-zero length content of the file
    	caBundle atomic.Value
    
    	listeners []Listener
    
    	queue workqueue.TypedRateLimitingInterface[string]
    	// preRunCaches are the caches to sync before starting the work of this control loop
    	preRunCaches []cache.InformerSynced
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/LocalConfigurationMetadataBuilder.java

            DependencyCache dependencyCache,
            ModelContainer<?> model,
            CalculatedValueContainerFactory calculatedValueContainerFactory
        );
    
        /**
         * A cache of the defined dependencies for dependency configurations. This tracks the cached internal
         * dependency representations for these types so when constructing leaf configuration metadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/dra/manager.go

    		}
    
    		// Atomically perform some operations on the claimInfo cache.
    		err = m.cache.withLock(func() error {
    			// Get a reference to the claim info for this claim from the cache.
    			// If there isn't one yet, then add it to the cache.
    			claimInfo, exists := m.cache.get(resourceClaim.Name, resourceClaim.Namespace)
    			if !exists {
    				claimInfo = m.cache.add(newClaimInfoFromClaim(resourceClaim))
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/KtFirStarImportingScope.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.fir.scopes
    
    import org.jetbrains.kotlin.analysis.api.fir.KaFirSession
    import org.jetbrains.kotlin.analysis.api.fir.utils.cached
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.analysis.api.scopes.KaScopeNameFilter
    import org.jetbrains.kotlin.analysis.api.symbols.KaConstructorSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top