Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for invalidating (0.29 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                problemsWithStackTraceCount = 0
            }
        }
    
        def "serialization problems are reported and fail the build by default invalidating the cache"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
    
            buildFile << """
                class BrokenTaskType extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ----
    
    or in a `gradle.properties` file:
    
    [source,properties]
    ----
    org.gradle.configuration-cache.max-problems=5
    ----
    
    [[config_cache:usage:invalidate]]
    === Invalidating the cache
    
    The configuration cache is automatically invalidated when inputs to the configuration phase change.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    }
    
    func canMergeSym(x, y Sym) bool {
    	return x == nil || y == nil
    }
    
    // canMergeLoadClobber reports whether the load can be merged into target without
    // invalidating the schedule.
    // It also checks that the other non-load argument x is something we
    // are ok with clobbering.
    func canMergeLoadClobber(target, load, x *Value) bool {
    	// The register containing x is going to get clobbered.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Iterators.java

          public boolean hasNext() {
            /*
             * Don't store a new Iterator until we know the user can't remove() the last returned
             * element anymore. Otherwise, when we remove from the old iterator, we may be invalidating
             * the new one. The result is a ConcurrentModificationException or other bad behavior.
             *
             * (If we decide that we really, really hate allocating two Iterators per cycle instead of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Iterators.java

          public boolean hasNext() {
            /*
             * Don't store a new Iterator until we know the user can't remove() the last returned
             * element anymore. Otherwise, when we remove from the old iterator, we may be invalidating
             * the new one. The result is a ConcurrentModificationException or other bad behavior.
             *
             * (If we decide that we really, really hate allocating two Iterators per cycle instead of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_3x.md

        which returns the privately domain name if the URL has one.
     *  Fix: Change `MediaType.charset()` to return null for unexpected charsets.
     *  Fix: Don't skip cache invalidation if the invalidating response has no body.
     *  Fix: Don't use a cryptographic random number generator for web sockets. Some Android devices
        implement `SecureRandom` incorrectly!
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    If you can run the build successfully from the command line but your script editor is complaining, then you should try restarting your IDE and invalidating its caches.
    
    If the above doesn't work and you suspect an issue with the Kotlin DSL script editor, you can:
    
    * Run `./gradle tasks` to get more details
    * Check the logs in one of these locations:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	shouldStartInformers bool,
    ) *generic.PolicyTestContext[*validating.Policy, *validating.PolicyBinding, validating.Validator] {
    	testContext, testContextCancel, err := generic.NewPolicyTestContext(
    		validating.NewValidatingAdmissionPolicyAccessor,
    		validating.NewValidatingAdmissionPolicyBindingAccessor,
    		func(p *validating.Policy) validating.Validator {
    			return compiler.CompilePolicy(p)
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/validation/validation.go

    		}
    	}
    	return preexisting
    }
    
    func findValidatingPreexistingExpressions(validating *admissionregistration.ValidatingWebhookConfiguration) preexistingExpressions {
    	preexisting := newPreexistingExpressions()
    	for _, wh := range validating.Webhooks {
    		for _, mc := range wh.MatchConditions {
    			preexisting.matchConditionExpressions.Insert(mc.Expression)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. pkg/apis/certificates/validation/validation_test.go

    		// options that allow the csr to pass validation
    		lenientOpts certificateValidationOptions
    
    		// regexes matching expected errors when validating strictly
    		strictRegexes []regexp.Regexp
    
    		// expected errors (after filtering out errors matched by strictRegexes) when validating strictly
    		strictErrs []string
    	}{
    		// valid strict cases
    		{
    			name: "no status",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
Back to top