Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 697 for mutating (0.31 sec)

  1. hack/verify-non-mutating-validation.sh

    if [ "$foundMutation" -gt "1" ]; then
      echo "${mutationOutput}"
      echo "It looks like an assignment of a value using the old object.  This is a heuristic check.  If a mutation is happening in validation please fix it."
      echo "If a mutation of arguments is not happening, you can exempt a line using '// +k8s:verify-mutation:reason=clone'."
      exit 1
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 08 18:37:55 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. cluster/gce/addons/cloud-pvl-admission/mutating-webhook-configuration.yaml

    Andrew Sy Kim <******@****.***> 1698944665 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 02 23:15:32 UTC 2023
    - 699 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package mutating makes calls to 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
    - 741 bytes
    - Viewed (0)
  4. 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)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/request/admissionreview_test.go

    			},
    			expectAllowed: true,
    		},
    		// Allowed mutating
    		{
    			name:     "v1beta1 allowed mutating",
    			uid:      "123",
    			mutating: true,
    			review: &admissionv1beta1.AdmissionReview{
    				Response: &admissionv1beta1.AdmissionResponse{Allowed: true},
    			},
    			expectAllowed: true,
    		},
    		{
    			name:     "v1 allowed mutating",
    			uid:      "123",
    			mutating: true,
    			review: &admissionv1.AdmissionReview{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/InvalidManagedModelMutationIntegrationTest.groovy

    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    
    @UnsupportedWithConfigurationCache(because = "software model")
    class InvalidManagedModelMutationIntegrationTest extends AbstractIntegrationSpec {
    
        def "mutating managed inputs of a rule is not allowed"() {
            when:
            buildScript '''
                @Managed
                interface Person {
                    String getName()
                    void setName(String name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. 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)
  8. src/internal/fuzz/mutator.go

    	case int:
    		vals[i] = int(m.mutateInt(int64(v), maxInt))
    	case int8:
    		vals[i] = int8(m.mutateInt(int64(v), math.MaxInt8))
    	case int16:
    		vals[i] = int16(m.mutateInt(int64(v), math.MaxInt16))
    	case int64:
    		vals[i] = m.mutateInt(v, maxInt)
    	case uint:
    		vals[i] = uint(m.mutateUInt(uint64(v), maxUint))
    	case uint16:
    		vals[i] = uint16(m.mutateUInt(uint64(v), math.MaxUint16))
    	case uint32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectCollectionSpec.groovy

            return super.getMutatingMethods() + [
                "getByName(String, Action)": { container.getByName("a", Actions.doNothing()) }
            ]
        }
    
        def "disallow mutating from named actions using #mutatingMethods.key"() {
            setupContainerDefaults()
            addToContainer(a)
            String methodUnderTest = mutatingMethods.key
            Closure method = bind(mutatingMethods.value)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/plugin_test.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 (
    	"context"
    	"fmt"
    	"net/url"
    	"os"
    	"reflect"
    	"strings"
    	"testing"
    
    	"github.com/stretchr/testify/assert"
    	"k8s.io/apiserver/pkg/endpoints/request"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top