Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 165 for loadOne (0.35 sec)

  1. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

                        assertNoScriptCompile(rootBuildFile.stage1)
                        assertNoScriptCompile(rootBuildFile.stage2)
                    }
                    // then: no compilation nor class loading
                    compilationCache {
                        hits(leftBuildFile, rootBuildFile, rightBuildFile)
                    }
                    classLoadingCache {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/CacheStats.java

     *       <ul>
     *         <li>After successfully loading an entry {@code missCount} and {@code loadSuccessCount}
     *             are incremented, and the total loading time, in nanoseconds, is added to {@code
     *             totalLoadTime}.
     *         <li>When an exception is thrown while loading an entry, {@code missCount} and {@code
     *             loadExceptionCount} are incremented, and the total loading time, in nanoseconds, is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/CacheStats.java

     *       <ul>
     *         <li>After successfully loading an entry {@code missCount} and {@code loadSuccessCount}
     *             are incremented, and the total loading time, in nanoseconds, is added to {@code
     *             totalLoadTime}.
     *         <li>When an exception is thrown while loading an entry, {@code missCount} and {@code
     *             loadExceptionCount} are incremented, and the total loading time, in nanoseconds, is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/PmdPluginTest.groovy

            expect:
            project.plugins.hasPlugin(ReportingBasePlugin)
        }
    
        def "pmd 7.0.0 is loading the right dependencies"() {
            expect:
            PmdPlugin.calculateDefaultDependencyNotation("7.0.0") == ImmutableSet.of("net.sourceforge.pmd:pmd-java:7.0.0", "net.sourceforge.pmd:pmd-ant:7.0.0")
        }
    
        def "pmd 7.0.0-rc4 is loading the right dependencies"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 14:47:31 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/deadstore.go

    // another store to the same location, with no intervening load.
    // This implementation only works within a basic block. TODO: use something more global.
    func dse(f *Func) {
    	var stores []*Value
    	loadUse := f.newSparseSet(f.NumValues())
    	defer f.retSparseSet(loadUse)
    	storeUse := f.newSparseSet(f.NumValues())
    	defer f.retSparseSet(storeUse)
    	shadowed := f.newSparseMap(f.NumValues())
    	defer f.retSparseMap(shadowed)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/certs/certs.go

    		if err != nil {
    			return errors.Wrapf(err, "failure loading %s key", baseName)
    		}
    
    		// Try to load certificate from the PKI directory
    		signedCert, intermediates, err := pkiutil.TryLoadCertChainFromDisk(pkiDir, baseName)
    		if err != nil {
    			return errors.Wrapf(err, "failure loading %s certificate", baseName)
    		}
    		// Validate period
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  7. cmd/iam-object-store.go

    	if iamOS.objAPI == nil {
    		return errServerNotInitialized
    	}
    
    	bootstrapTraceMsg("loading all IAM items")
    
    	listedConfigItems, err := iamOS.listAllIAMConfigItems(ctx)
    	if err != nil {
    		return fmt.Errorf("unable to list IAM data: %w", err)
    	}
    
    	// Loads things in the same order as `LoadIAMCache()`
    
    	bootstrapTraceMsg("loading policy documents")
    
    	policiesList := listedConfigItems[policiesListKey]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/EncryptionService.kt

                    if (e.message != null) {
                        throw e
                    }
                    throw EncryptionException("Error loading encryption key from ${keySource.sourceDescription}", e.cause)
                } catch (e: Exception) {
                    throw EncryptionException("Error loading encryption key from ${keySource.sourceDescription}", e)
                }
            }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r48/PhasedBuildActionCrossVersionSpec.groovy

                    }
    
                    Object buildAll(String modelName, Project project) {
                        if (modelName == '${CustomProjectsLoadedModel.name}') {
                            return new DefaultCustomModel('loading');
                        }
                        if (modelName == '${CustomBuildFinishedModel.name}') {
                            return new DefaultCustomModel('build');
                        }
                        return null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    }
    
    type alwaysNewEnvLoader struct {
    	loadFn func(envSet *environment.EnvSet) *cel.Env
    }
    
    func (pe alwaysNewEnvLoader) RuleEnv(envSet *environment.EnvSet, _ string) *cel.Env {
    	return pe.loadFn(envSet)
    }
    
    func (pe alwaysNewEnvLoader) MessageExpressionEnv(envSet *environment.EnvSet, _ string) *cel.Env {
    	return pe.loadFn(envSet)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top