Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 697 for mutating (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package validating makes calls to validating (i.e., non-mutating) webhooks
    // during the admission process.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 18 05:02:47 UTC 2017
    - 770 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationMutationIntegrationTest.groovy

                    doLast {
                        println files.files
                    }
                }
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:56 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/rest/delete.go

    	validatingAdmission, isValidatingAdmission := admit.(admission.ValidationInterface)
    
    	mutating := isMutatingAdmission && mutatingAdmission.Handles(staticAttributes.GetOperation())
    	validating := isValidatingAdmission && validatingAdmission.Handles(staticAttributes.GetOperation())
    
    	return func(ctx context.Context, old runtime.Object) error {
    		if !mutating && !validating {
    			return nil
    		}
    		finalAttributes := admission.NewAttributesRecord(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 07 17:43:41 UTC 2021
    - 9.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    		Plugins:    admission.NewPlugins(),
    		Decorators: admission.Decorators{admission.DecoratorFunc(admissionmetrics.WithControllerMetrics)},
    		// This list is mix of mutating admission plugins and validating
    		// admission plugins. The apiserver always runs the validating ones
    		// after all the mutating ones, so their relative order in this list
    		// doesn't matter.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ModelSetIntegrationTest.groovy

            failure.assertHasCause("Attempt to read from a write only view of model element 'people' of type 'ModelSet<Person>' given to rule RulePlugin#readPeople(ModelSet<Person>)")
        }
    
        def "mutating a managed set that is an input of a rule is not allowed"() {
            when:
            buildScript '''
                @Managed
                interface Person {
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testcerts/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package testcerts contains generated key pairs used by the unit tests of
    // mutating and validating webhooks. They are for testing only.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 18 05:02:47 UTC 2017
    - 797 bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/QueryAndMutateFromWithTypeAllDomainObjectContainerIntegrationTest.groovy

     */
    
    package org.gradle.api
    
    abstract class QueryAndMutateFromWithTypeAllDomainObjectContainerIntegrationTest extends AbstractDomainObjectContainerIntegrationTest {
        def "can execute query and mutating methods #method.key from withType.all"() {
            buildFile << """
                testContainer.withType(testContainer.type).all {
                    if (it.name == "realized") {
                        ${method.value}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 05 09:53:33 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/testcase.go

    	}
    	return r
    }
    
    // ConvertToMutatingWebhooks converts a validating webhook to a mutating one for test purposes.
    func ConvertToMutatingWebhooks(webhooks []registrationv1.ValidatingWebhook) []registrationv1.MutatingWebhook {
    	mutating := make([]registrationv1.MutatingWebhook, len(webhooks))
    	for i, h := range webhooks {
    		mutating[i] = registrationv1.MutatingWebhook{
    			Name:                    h.Name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 47.6K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/options/admission.go

    	fs.StringSliceVar(&a.PluginNames, "admission-control", a.PluginNames, ""+
    		"Admission is divided into two phases. "+
    		"In the first phase, only mutating admission plugins run. "+
    		"In the second phase, only validating admission plugins run. "+
    		"The names in the below list may represent a validating plugin, a mutating plugin, or both. "+
    		"The order of plugins in which they are passed to this flag does not matter. "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 09:22:37 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/reinvocationcontext.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package mutating
    
    import (
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    type webhookReinvokeContext struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 21:31:09 UTC 2019
    - 2.3K bytes
    - Viewed (0)
Back to top