Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 697 for mutating (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics.go

    }
    
    // ObserveWebhookFailOpen records validating or mutating webhook that fail open.
    func (m *AdmissionMetrics) ObserveWebhookFailOpen(ctx context.Context, name, stepType string) {
    	m.webhookFailOpen.WithContext(ctx).WithLabelValues(name, stepType).Inc()
    }
    
    // ObserveMatchConditionEvalError records validating or mutating webhook that are not called due to match conditions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:40 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight_test.go

    	}
    }
    
    // We use GET as a sample non-mutating request.
    func expectHTTPGet(url string, code int) error {
    	r, err := http.Get(url)
    	if err != nil {
    		return fmt.Errorf("unexpected error: %v", err)
    	}
    	if r.StatusCode != code {
    		return fmt.Errorf("unexpected response: %v", r.StatusCode)
    	}
    	return nil
    }
    
    // We use POST as a sample mutating request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractPolymorphicDomainObjectContainerSpec.groovy

                "register(String, Class, Action)": { container.register("b", container.type, Actions.doNothing()) },
            ]
        }
    
        def "allow query and mutating methods from create with type using #methods.key"() {
            setupContainerDefaults()
            String methodUnderTest = methods.key
            Closure method = bind(methods.value)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/PalantirConsistentVersionsPluginSmokeTest.groovy

                 // See: https://github.com/palantir/gradle-consistent-versions/blob/28a604723c936f5c93c6591e144c4a1731d570ad/src/main/java/com/palantir/gradle/versions/VersionsLockPlugin.java#L277
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    	// after mutating admission.
    	// NOTE: For CREATE and UPDATE requests the API server dedups both before and after mutating admission.
    	// For PATCH request the API server only dedups after mutating admission.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/interfaces.go

    }
    
    // An evaluator represents a compiled CEL expression that can be evaluated a
    // given a set of inputs used by the generic PolicyHook for Mutating and
    // ValidatingAdmissionPolicy.
    // Mutating and Validating may have different forms of evaluators
    type Evaluator interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 21:06:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. manifests/profiles/remote.yaml

    # The remote profile is used to configure a mesh cluster without a locally deployed control plane.
    # Only the injector mutating webhook configuration is installed.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        base:
          enabled: false
        pilot:
          enabled: false
        ingressGateways:
        - name: istio-ingressgateway
          enabled: false
        istiodRemote:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 18 16:33:33 UTC 2024
    - 418 bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerSpec.groovy

            ]
        }
    
        def "allow query and mutating methods from create using #methods.key"() {
            setupContainerDefaults()
            Closure method = bind(methods.value)
    
            when:
            container.create("a", method)
            then:
            noExceptionThrown()
    
            where:
            methods << getQueryMethods() + getMutatingMethods()
        }
    
        def "disallow mutating from register actions using #mutatingMethods.key"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.h

     private:
      // Analyze the specified region for resource mutating operations, namely
      // TF::AssignVariableOp, if so, set the resource associated as "potentially
      // written".
      LogicalResult AnalyzeRegion(Region& region);
    
      // If an op is not one of the handled ones, we assume all resource usages
      // within its purview are mutating in nature.
      void PropagatePotentiallyWrittenWithinUnhandledOp(Operation* op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/request/admissionreview.go

    			return nil, fmt.Errorf("expected webhook response of %v, got %v", v1GVK.String(), r.GroupVersionKind().String())
    		}
    
    		patch := []byte(nil)
    		patchType := admissionv1.PatchType("")
    
    		if mutating {
    			// Ensure a mutating webhook provides both patch and patchType together
    			if len(r.Response.Patch) > 0 && r.Response.PatchType == nil {
    				return nil, fmt.Errorf("webhook returned response.patch but not response.patchType")
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top