Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,505 for Mutation (0.11 sec)

  1. pilot/pkg/model/config.go

    // mutating operation returns an error.  Objects should be created with
    // _Create_ operation and updated with _Update_ operation.
    //
    // Resource versions record the last mutation operation on each object. If a
    // mutation is applied to a different revision of an object than what the
    // underlying storage expects as defined by pure equality, the operation is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            where:
            targetRole << ModelActionRole.values().findAll { !it.subjectViewAvailable }
        }
    
        def "cannot add action for #targetRole mutation when in later #fromRole mutation"() {
            def action = Stub(Action)
    
            given:
            registry.registerInstance("thing", "value")
                .configure(fromRole) { it.path("thing").node(action) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/config/common.go

    		in: []any{(*kubeadmapi.InitConfiguration)(nil)},
    		mutateFunc: func(in []any) error {
    			a := in[0].(*kubeadmapi.InitConfiguration)
    			a.Timeouts.ControlPlaneComponentHealthCheck.Duration = a.APIServer.TimeoutForControlPlane.Duration
    			a.APIServer.TimeoutForControlPlane = nil
    			return nil
    		},
    	}
    	mutators = append(mutators, mutator)
    
    	// mutator for JoinConfiguration.
    	mutator = migrateMutator{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultCachePolicySpec.groovy

            !notExpired.mustCheck
            notExpired.keepFor == Duration.ofMillis(DAY - 2 * SECOND)
    
            def expired = cachePolicy.versionListExpiry(null, null, Duration.ofMillis(WEEK))
            !expired.mustCheck
            expired.keepFor == Duration.ZERO
    
            def thisBuild = cachePolicy.versionListExpiry(null, null, Duration.ZERO)
            !thisBuild.mustCheck
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 22:04:14 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def defaultDependencyAction = Mock(Action)
            def mutation = Mock(Action)
            conf.extendsFrom parent
            conf.defaultDependencies defaultDependencyAction
            conf.withDependencies mutation
    
            when:
            conf.runDependencyActions()
    
            then:
            1 * defaultDependencyAction.execute(conf.dependencies)
            1 * mutation.execute(conf.dependencies)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultComponentSelectionRulesTest.groovy

            cause.notation == notation
    
        }
    
        def "propagates error parsing module identifier for action" () {
            def notation = "group:module:1.0"
            def input = Mock(Action) {
                execute() >> { throw new UnsupportedNotationException(notation) }
            }
    
            when:
            rules.withModule(notation, input)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/apiclient/idempotency.go

    // taking place)
    func CreateOrMutateConfigMap(client clientset.Interface, cm *v1.ConfigMap, mutator ConfigMapMutator) error {
    	var lastError error
    	err := wait.PollUntilContextTimeout(context.Background(),
    		apiCallRetryInterval, kubeadmapi.GetActiveTimeouts().KubernetesAPICall.Duration,
    		true, func(_ context.Context) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

            cleanup:
            System.clearProperty(systemProp)
    
            where:
            spec << SystemPropertiesCompositeBuildFixture.specsWithSystemPropertyAccess()
        }
    
        def "runtime mutation system properties in composite build"() {
            given:
            String systemProp = "fromPropertiesFile"
            def configurationCache = newConfigurationCacheFixture()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. hack/make-rules/test-cmd.sh

    # This command checks that the built commands can function together for
    # simple scenarios.  It does not require Docker.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # start the cache mutation detector by default so that cache mutators will be found
    KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
    export KUBE_CACHE_MUTATION_DETECTOR
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/selection_predicate.go

    // In any failure to parse given object, it returns error.
    type AttrFunc func(obj runtime.Object) (labels.Set, fields.Set, error)
    
    // FieldMutationFunc allows the mutation of the field selection fields.  It is mutating to
    // avoid the extra allocation on this common path
    type FieldMutationFunc func(obj runtime.Object, fieldSet fields.Set) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top