Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 274 for mutating (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package mutating delegates admission checks to dynamically configured
    // mutating webhooks.
    package mutating
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"time"
    
    	"go.opentelemetry.io/otel/attribute"
    	jsonpatch "gopkg.in/evanphx/json-patch.v4"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/BeforeResolveIntegrationTest.groovy

    }
    """
    
            when:
            succeeds 'printFiles'
    
            then:
            outputContains('[dep1-1.0.jar, dep2-1.0.jar]')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 02:27:32 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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