Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 697 for mutating (0.22 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/accessor.go

    	GetParamKind() *v1.ParamKind
    	GetMatchConstraints() *v1.MatchResources
    }
    
    type BindingAccessor interface {
    	GetName() string
    	GetNamespace() string
    
    	// GetPolicyName returns the name of the (Validating/Mutating)AdmissionPolicy,
    	// which is cluster-scoped, so namespace is usually left blank.
    	// But we leave the door open to add a namespaced vesion in the future
    	GetPolicyName() types.NamespacedName
    	GetParamRef() *v1.ParamRef
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    		"This and --max-mutating-requests-inflight are summed to determine the server's total concurrency limit "+
    		"(which must be positive) if --enable-priority-and-fairness is true. "+
    		"Otherwise, this flag limits the maximum number of non-mutating requests in flight, "+
    		"or a zero value disables the limit completely.")
    
    	fs.IntVar(&s.MaxMutatingRequestsInFlight, "max-mutating-requests-inflight", s.MaxMutatingRequestsInFlight, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/plugins.go

    	"k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle"
    	validatingadmissionpolicy "k8s.io/apiserver/pkg/admission/plugin/policy/validating"
    	mutatingwebhook "k8s.io/apiserver/pkg/admission/plugin/webhook/mutating"
    	validatingwebhook "k8s.io/apiserver/pkg/admission/plugin/webhook/validating"
    )
    
    // RegisterAllAdmissionPlugins registers all admission plugins
    func RegisterAllAdmissionPlugins(plugins *admission.Plugins) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/merge.go

    		return nil, err
    	}
    	return &specToReturn, nil
    }
    
    // mergeSpec copies paths, parameters and definitions from source to dest, mutating dest, but not source.
    // We assume that conflicts do not matter.
    func mergeSpec(dest, source *spec.Swagger) {
    	if source == nil || source.Paths == nil {
    		return
    	}
    	if dest.Paths == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 16 14:08:01 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpSettings.java

        HostnameVerifier getHostnameVerifier();
    
        enum RedirectMethodHandlingStrategy {
    
            /**
             * Follows 307/308 redirects with original method.
             *
             * Mutating requests redirected with 301/302/303 are followed with a GET request.
             */
            ALLOW_FOLLOW_FOR_MUTATIONS,
    
            /**
             * Always redirects with the original method regardless of type of redirect.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    var GetExecutingReadonlyConcurrency = executingReadonly.getGauge
    
    // GetWaitingMutatingConcurrency returns the gauge of number of mutating requests waiting / limit on those.
    var GetWaitingMutatingConcurrency = waitingMutating.getGauge
    
    // GetExecutingMutatingConcurrency returns the gauge of number of executing mutating requests / limit on those.
    var GetExecutingMutatingConcurrency = executingMutating.getGauge
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/StackTraceFilterTest.groovy

        def spec = Mock(Spec)
        def filter = new StackTraceFilter(spec)
        def exception = new Exception()
        def trace = exception.stackTrace as List
    
        def "returns a new trace rather than mutating the original one"() {
            spec.isSatisfiedBy(_) >> true
    
            when:
            def filtered = filter.filter(trace)
    
            then:
            !filtered.is(trace)
            trace == old(trace)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/config/config.go

    type CompletedConfig struct {
    	// Embed a private pointer that cannot be instantiated outside of this package.
    	*completedConfig
    }
    
    // Complete fills in any fields not set that are required to have valid data. It's mutating the receiver.
    func (c *Config) Complete() *CompletedConfig {
    	cc := completedConfig{c}
    
    	apiserver.AuthorizeClientBearerToken(c.LoopbackClientConfig, &c.Authentication, &c.Authorization)
    
    	return &CompletedConfig{&cc}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 31 09:32:21 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/result/DefaultResolvedComponentResultTest.groovy

    import spock.lang.Specification
    
    import static org.gradle.api.internal.artifacts.result.ResolutionResultDataBuilder.*
    
    class DefaultResolvedComponentResultTest extends Specification {
    
        def "mutating dependencies or dependents is harmless"() {
            given:
            def module = newModule("a", "c", "1")
            def dependency  = newDependency("a", "x", "1")
            def dependent   = newDependency("a", "x2", "1")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.cc

      auto it = resource_infos_.find(resource);
      if (it == resource_infos_.end()) {
        return false;
      }
      return it->second.potentially_written;
    }
    
    // Analyze the specified region for resource mutating operations, namely
    // TF::AssignVariableOp, if so, set the resource associated as "potentially
    // written". Do this recursively across the chain of regions via call or
    // control flow ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top