Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 664 for mutate1 (0.12 sec)

  1. releasenotes/notes/proxyconfig-global-mutate.yaml

    John Howard <******@****.***> 1660750631 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 15:37:11 UTC 2022
    - 191 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/surroundingobject.go

    //
    //	acc(obj) == x
    //	reflect.DeepEqual(acc(DeepCopy(obj), x) == x
    //
    // where x is the original instance for slices and maps.
    //
    // If after computation of acc the node holding x in obj is mutated (e.g. pruned),
    // the accessor will return that mutated node value (e.g. the pruned x).
    //
    // Example (ignoring the last two return values):
    //
    //	NewRootObjectFunc()(x) == x
    //	NewRootObjectFunc().Index()(x) == [x]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/conversion.go

    	Attributes
    	// VersionedOldObject holds Attributes.OldObject (if non-nil), converted to VersionedKind.
    	// It must never be mutated.
    	VersionedOldObject runtime.Object
    	// VersionedObject holds Attributes.Object (if non-nil), converted to VersionedKind.
    	// If mutated, Dirty must be set to true by the mutator.
    	VersionedObject runtime.Object
    	// VersionedKind holds the fully qualified kind
    	VersionedKind schema.GroupVersionKind
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/openapi/resolver/refs.go

    )
    
    // PopulateRefs recursively replaces Refs in the schema with the referred one.
    // schemaOf is the callback to find the corresponding schema by the ref.
    // This function will not mutate the original schema. If the schema needs to be
    // mutated, a copy will be returned, otherwise it returns the original schema.
    func PopulateRefs(schemaOf func(ref string) (*spec.Schema, bool), rootRef string) (*spec.Schema, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 17:23:50 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/rest/create.go

    	// Canonicalize allows an object to be mutated into a canonical form. This
    	// ensures that code that operates on these objects can rely on the common
    	// form for things like comparison.  Canonicalize is invoked after
    	// validation has succeeded but before the object has been persisted.
    	// This method may mutate the object. Often implemented as a type check or
    	// empty method.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/default_storage_factory_builder.go

    	EtcdServersOverrides      []string
    }
    
    // Complete completes the StorageFactoryConfig with provided etcdOptions returning completedStorageFactoryConfig.
    // This method mutates the receiver (StorageFactoryConfig).  It must never mutate the inputs.
    func (c *StorageFactoryConfig) Complete(etcdOptions *serveroptions.EtcdOptions) *completedStorageFactoryConfig {
    	c.StorageConfig = etcdOptions.StorageConfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/rest/update.go

    	// Canonicalize allows an object to be mutated into a canonical form. This
    	// ensures that code that operates on these objects can rely on the common
    	// form for things like comparison.  Canonicalize is invoked after
    	// validation has succeeded but before the object has been persisted.
    	// This method may mutate the object.
    	Canonicalize(obj runtime.Object)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RuleBindingsTest.groovy

            bindings.getRulesWithSubject(nodeAtState("a", ModelNode.State.Mutated)) as List == [rule1]
            bindings.getRulesWithSubject(nodeAtState("a.1", ModelNode.State.Mutated)) as List == [rule3]
            bindings.getRulesWithSubject(nodeAtState("a.2", ModelNode.State.Mutated)) as List == [rule2]
            bindings.getRulesWithSubject(nodeAtState("b", ModelNode.State.Mutated)).empty
        }
    
        def "binds multiple by-path rules to subject"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/projection/AbstractCollectionModelProjectionTest.groovy

            when:
            mutate {
                add 'foo'
                add 'bar'
                add 'baz'
                sort()
            }
    
    
            then:
            def list = registry.realize(collectionPath, collectionType)
            list == checkable(['bar', 'baz', 'foo'])
        }
    
        def "can sort within mutate block using custom comparator"() {
            when:
            mutate {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/rules/RuleSourceBackedRuleActionTest.groovy

            @Mutate
            void theRule(List<String> subject) {}
    
            @Mutate
            void theOtherRule(List<String> subject) {}
        }
    
        static class RuleSourceWithDifferentSubjectClass {
            @Mutate
            void theRule(String subject) {}
        }
    
        static class RuleSourceWithDifferentSubjectType {
            @Mutate
            void theRule(List<Integer> subject) {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top