Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 697 for mutating (0.17 sec)

  1. releasenotes/notes/36258.yaml

    kind: bug-fix
    area: installation
    issue:
      - https://github.com/istio/istio/issues/36258
    releaseNotes:
      - |
        **Fixed** omitted setting .Values.sidecarInjectiorWebhook.enableNamespacesByDefault in the default revision
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 10 21:59:12 UTC 2021
    - 354 bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorIntegrationTest.groovy

            when:
            fails("help")
    
            then:
            failure.assertHasErrorOutput("The value for property 'implementation' property 'dependencies' is final and cannot be changed any further.")
        }
    
        def "mutating dependencies after dependency set has been observed is deprecated"() {
            given:
            mavenRepo.module("com", "foo").publish()
            buildFile << """
                ${createDependenciesAndConfiguration()}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/configuration/mutating_webhook_manager.go

    )
    
    // Type for test injection.
    type mutatingWebhookAccessorCreator func(uid string, configurationName string, h *v1.MutatingWebhook) webhook.WebhookAccessor
    
    // mutatingWebhookConfigurationManager collects the mutating webhook objects so that they can be called.
    type mutatingWebhookConfigurationManager struct {
    	lister              admissionregistrationlisters.MutatingWebhookConfigurationLister
    	hasSynced           func() bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 22:43:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors_test.go

    			if !ok {
    				t.Errorf("expected GetMutatingWebhook to return ok for mutating webhook accessor")
    			}
    			if !reflect.DeepEqual(orig, m) {
    				t.Errorf("expected GetMutatingWebhook to return original webhook, diff:\n%s", cmp.Diff(orig, m))
    			}
    			if _, ok := accessor.GetValidatingWebhook(); ok {
    				t.Errorf("expected GetValidatingWebhook to be nil for mutating webhook accessor")
    			}
    			copy := &v1.MutatingWebhook{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/testing/helpers.go

    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apiserver/pkg/admission"
    )
    
    // WithReinvocationTesting wraps a mutating admission handler and reinvokes it each time Admit is
    // called. It checks the admission output object and reports a test error if the admission handler
    // performs non-idempotent mutatations to the object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. manifests/charts/default/values.yaml

        istioNamespace: "istio-system"
    
      base:
        # Validation webhook configuration url
        # For example: https://$remotePilotAddress:15017/validate
        validationURL: ""
    
      istiodRemote:
        # Sidecar injector mutating webhook configuration url
        # For example: https://$remotePilotAddress:15017/inject
        injectionURL: ""
    
      # Revision is set as 'version' label and part of the resource names when installing multiple control planes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 627 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics_test.go

    			filter["rejected"] = "true"
    		}
    		if _, mutating := test.handler.(admission.MutationInterface); mutating {
    			expectHistogramCountTotal(t, "apiserver_admission_controller_admission_duration_seconds", filter, 1)
    		} else {
    			expectHistogramCountTotal(t, "apiserver_admission_controller_admission_duration_seconds", filter, 0)
    		}
    
    		if err != nil {
    			// skip validation step if mutation failed
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:37 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/QueryAndMutateFromCreateDomainObjectContainerIntegrationTest.groovy

     */
    
    package org.gradle.api
    
    abstract class QueryAndMutateFromCreateDomainObjectContainerIntegrationTest extends AbstractDomainObjectContainerIntegrationTest {
        def "can execute query and mutating methods #method.key from create(String)"() {
            buildFile << """
                testContainer.create("a") {
                    ${method.value}
                }
            """
            expect:
            succeeds "help"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 05 09:53:33 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  9. samples/builder/README.md

    You will also want to update the sample YAMLs
    
    ## Building official images
    
    Set `HUB=docker.io/istio` for official image builds.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 928 bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/QueryAndMutateFromAllDomainObjectContainerIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.api
    
    abstract class QueryAndMutateFromAllDomainObjectContainerIntegrationTest extends AbstractDomainObjectContainerIntegrationTest {
        def "can execute query and mutating methods #method.key from all"() {
            buildFile << """
                testContainer.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.5K bytes
    - Viewed (0)
Back to top