Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,505 for Mutation (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/mutation/unstructured/typeref.go

    limitations under the License.
    */
    
    package unstructured
    
    import (
    	"github.com/google/cel-go/common/types"
    	"github.com/google/cel-go/common/types/ref"
    
    	"k8s.io/apiserver/pkg/cel/mutation/common"
    )
    
    // TypeRef is the implementation of TypeRef for an unstructured object.
    // This is especially usefully when the schema is not known or available.
    type TypeRef struct {
    	celObjectType *types.Type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 00:01:35 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ConcurrentDerivationStrategyIntegTest.groovy

        @ToBeFixedForConfigurationCache
        @Issue("https://github.com/gradle/gradle/issues/13555")
        @Unroll("consistent resolution using rules=#displayName")
        // If this test becomes flaky it means we broke the code which prevents mutation of in-memory cached module metadata
        def "selected variants are consistent using concurrent resolution of graphs from cache having different derivation strategies"() {
            executer.requireOwnGradleUserHomeDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

            }
    
            public void cache(LocalComponentGraphResolveState state, boolean useStrongReference) {
                if (useStrongReference) {
                    // Keep a hard reference to the state for re-evaluation on mutation
                    // and to force the value to be reused for resolution of other configurations
                    reference = null;
                    cachedValue = state;
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

        void setTargetConfiguration(@Nullable String name);
    
        /**
         * {@inheritDoc}
         */
        @Override
        ModuleDependency copy();
    
        /**
         * Returns the attributes for this dependency. Mutation of the attributes of a dependency must be done through
         * the {@link #attributes(Action)} method.
         *
         * @return the attributes container for this dependency
         *
         * @since 4.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/OutgoingVariantsMutationIntegrationTest.groovy

            noExceptionThrown()
    
            when:
            fails("mutateAfterResolve")
    
            then:
            failure.assertHasCause "Cannot change attributes of configuration ':compile' after it has been locked for mutation"
        }
    
        @ToBeFixedForConfigurationCache(because = "Task uses the Configuration API")
        def "cannot add outgoing variants after configuration is resolved"() {
            given:
            buildFile << """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. tests/integration/security/fuzz/README.md

    [dotdotpwn](https://github.com/wireghoul/dotdotpwn)) and [wfuzz](https://github.com/xmendez/wfuzz) to generate a
    large number of fuzzed requests. The mutation is based on a predefined path (`/private/secret.html`) that should be
    rejected by either the request authentication or the authorization policy.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 09 02:34:11 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/management/DefaultDependencyResolutionManagement.java

            if (!mutable) {
                throw new InvalidUserCodeException("Mutation of dependency resolution management in settings is only allowed during settings evaluation");
            }
        }
    
        private void mutationDisallowed(ArtifactRepository artifactRepository) {
            throw new InvalidUserCodeException("Mutation of repositories declared in settings is only allowed during settings evaluation");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ModuleComponentResolveMetadata.java

        @Override
        ModuleComponentIdentifier getId();
    
        /**
         * Creates a mutable copy of this metadata.
         *
         * Note that this method can be expensive. Often it is more efficient to use a more specialised mutation method such as {@link #withSources(ModuleSources)} rather than this method.
         */
        MutableModuleComponentResolveMetadata asMutable();
    
        /**
         * Creates a copy of this meta-data with the given sources.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/attributes/HierarchicalAttributeContainer.java

    import java.util.Set;
    import java.util.TreeMap;
    
    /**
     * Joins a primary and fallback attribute container to each other. Any attribute in the primary
     * container will override attributes in the fallback container. All mutation operations are
     * forwarded to the primary container.
     */
    public class HierarchicalAttributeContainer extends AbstractAttributeContainer {
        private final ImmutableAttributesFactory attributesFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 27 04:00:15 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/group/group_adder_test.go

    	}
    
    	for _, test := range tests {
    		capacity := make([]string, 0, 1024)
    		user := test.inputUser
    		user.Groups = append(capacity, user.Groups...) // make sure there is capacity in the groups array to trigger potential mutation
    		response := &authenticator.Response{User: user}
    		orig := toJson(response)
    
    		adder := authenticator.Request(
    			NewAuthenticatedGroupAdder(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 11 20:04:50 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top