Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 968 for Mutated (0.14 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RuleBindingsTest.groovy

            bindings.getRulesWithSubject(nodeAtState("a", ModelNode.State.Mutated)) as List == [rule1]
            bindings.getRulesWithSubject(nodeAtState("a.1", ModelNode.State.Mutated)) as List == [rule3]
            bindings.getRulesWithSubject(nodeAtState("a.2", ModelNode.State.Mutated)) as List == [rule2]
            bindings.getRulesWithSubject(nodeAtState("b", ModelNode.State.Mutated)).empty
        }
    
        def "binds multiple by-path rules to subject"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/manager.go

    type Manager interface {
    	// Update is used when the object has already been merged (non-apply
    	// use-case), and simply updates the managed fields in the output
    	// object.
    	//  * `liveObj` is not mutated by this function
    	//  * `newObj` may be mutated by this function
    	// Returns the new object with managedFields removed, and the object's new
    	// proposed managedFields separately.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher_test.go

    	tcs := []struct {
    		config   string
    		webhook  string
    		mutated  bool
    		expected string
    	}{
    		{
    			config:   "test-config",
    			webhook:  "test-webhook",
    			mutated:  true,
    			expected: `{"configuration":"test-config","webhook":"test-webhook","mutated":true}`,
    		},
    		{
    			config:   "test-config",
    			webhook:  "test-webhook",
    			mutated:  false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/DelegatedGradlePropertiesIntegrationTest.kt

                setProperty("projectMutatedBuildProperty", "mutated")
                require(projectMutatedBuildProperty == "mutated")
    
                val projectMutatedUserHomeProperty: String by project
                require(projectMutatedUserHomeProperty == "user home value")
    
                setProperty("projectMutatedUserHomeProperty", "mutated")
                require(projectMutatedUserHomeProperty == "mutated")
            }
            """.trimIndent()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/platform/base/DependencySpecContainer.java

         *
         * @param path the project path
         *
         * @return a mutable dependency, added to this container
         */
        ProjectDependencySpecBuilder project(String path);
    
        /**
         * Defines a new dependency, based on a library name. The returned dependency can be mutated.
         *
         * @param name of the library
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/ModelReferenceTest.groovy

            expect:
            def reference = ModelReference.of("some.path", String).atState(ModelNode.State.Mutated)
            reference.scope == null
            reference.path == ModelPath.path("some.path")
            reference.type == ModelType.of(String)
            !reference.untyped
            reference.state == ModelNode.State.Mutated
    
            def original = ModelReference.of(String)
            original.atState(original.state).is(original)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultMetadataProvider.java

                mutated = true;
            }
    
            @Override
            public void setStatusScheme(List<String> scheme) {
                this.statusScheme = scheme;
                mutated = true;
            }
    
            @Override
            public void attributes(Action<? super AttributeContainer> attributesConfiguration) {
                mutated = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/artifacts/configurations/AbstractRoleBasedConfigurationCreationRequest.java

         *
         * This method will emit a detailed deprecation method with suggestions if the usage is inconsistent.  It will then attempt to mutate
         * the usage to match the expectation.  If the usage cannot be mutated, it will throw an exception.
         *
         * Does <strong>NOT</strong> check anything to do with deprecated usage.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    	}
    }
    
    // MutationAuditAnnotation logs if a webhook invocation mutated the request object
    type MutationAuditAnnotation struct {
    	Configuration string `json:"configuration"`
    	Webhook       string `json:"webhook"`
    	Mutated       bool   `json:"mutated"`
    }
    
    // PatchAuditAnnotation logs a patch from a mutating webhook
    type PatchAuditAnnotation struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import java.util.concurrent.ConcurrentHashMap
    
    
    /**
     * The environment state that was mutated at the configuration phase and has to be restored before running a build from the cache.
     *
     * The class can operate in two modes. First is the tracking mode when all environment-modifying operations are stored
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top