Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 705 for Mutated (0.14 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelActionRole.java

        Defaults(ModelNode.State.DefaultsApplied, true), // Allows a mutation to setup default values for an element
        Initialize(ModelNode.State.Initialized, true), // Mutation action provided when an element is defined
        Mutate(ModelNode.State.Mutated, true), // Customisations
        Finalize(ModelNode.State.Finalized, true), // Post customisation default values
        Validate(ModelNode.State.SelfClosed, true); // Post mutation validations
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/resource/amount_test.go

    				t.Errorf("%v: overflow addition mutated source: %d", test, c)
    			}
    		}
    
    		// addition is commutative
    		c = test.b
    		if ok := c.Add(test.a); ok != test.ok {
    			t.Errorf("%v: unexpected ok: %t", test, ok)
    		}
    		if ok {
    			if c != test.c {
    				t.Errorf("%v: unexpected result: %d", test, c)
    			}
    		} else {
    			if c != test.b {
    				t.Errorf("%v: overflow addition mutated source: %d", test, c)
    			}
    		}
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 20:54:15 UTC 2023
    - 7K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/config/LoggingSystem.java

     * limitations under the License.
     */
    
    package org.gradle.internal.logging.config;
    
    /**
     * Some configurable logging system, whose state can be snapshot, mutated and restored.
     */
    public interface LoggingSystem {
        /**
         * Snapshots the current configuration state of this logging system.
         */
        Snapshot snapshot();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/FinalizedExecutionPlan.java

    package org.gradle.execution.plan;
    
    import org.gradle.api.Describable;
    
    import javax.annotation.concurrent.ThreadSafe;
    import java.io.Closeable;
    
    /**
     * An execution plan that has been finalized and can no longer be mutated.
     */
    @ThreadSafe
    public interface FinalizedExecutionPlan extends Describable, Closeable {
        FinalizedExecutionPlan EMPTY = new FinalizedExecutionPlan() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:13:45 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/internal/PluginRepositoryHandlerProvider.java

    public interface PluginRepositoryHandlerProvider {
        /**
         * Returns the {@link RepositoryHandler} that will contain the shared repositories to be used to resolve plugins for all project of this build.
         * Should be mutated only during settings configuration.
         */
        RepositoryHandler getPluginRepositoryHandler();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/componentconfigs/kubelet_unix_test.go

    		cfg                 *kubeletconfig.KubeletConfiguration
    		isServiceActiveFunc func(string) (bool, error)
    		expected            *kubeletconfig.KubeletConfiguration
    	}{
    		{
    			name: "the resolver config should not be mutated when it was set already even if systemd-resolved is active",
    			cfg: &kubeletconfig.KubeletConfiguration{
    				ResolverConfig: ptr.To(fooResolverConfig),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. pilot/pkg/status/distribution/report_test.go

    	RegisterTestingT(t)
    	Expect(err).To(BeNil())
    	out := Report{}
    	err = yaml.Unmarshal(outbytes, &out)
    	Expect(err).To(BeNil())
    	if !reflect.DeepEqual(out, in) {
    		t.Errorf("Report Serialization mutated the Report. got = %v, want %v", out, in)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/initialization/exception/ExceptionAnalyser.java

    @ServiceScope(Scope.BuildTree.class)
    public interface ExceptionAnalyser {
        /**
         * Transforms the given build failure to add context where relevant and to remove unnecessary noise.
         *
         * <p>Note that the argument may be mutated as part of the transformation, for example its causes or stack trace may be changed.</p>
         */
        RuntimeException transform(Throwable failure);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/InternalViewsSampleIntegrationTest.groovy

        // NOTE If you change this, you'll also need to change docs/src/doc/snippets/customModel/languageType/groovy/softwareModelExtend-iv-model.out
        def "show mutated public view data but no internal view data in model report"() {
            given:
            sample internalViewsSample
            when:
            succeeds "model"
            then:
            println output
            output.contains """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. test/closure2.go

    				}()
    			}()
    		}()
    		f()
    	}
    
    	{
    		var g func() int
    		var i int
    		for i = range [2]int{} {
    			if i == 0 {
    				g = func() int {
    					return i // test that we capture by ref here, i is mutated on every interaction
    				}
    			}
    		}
    		if g() != 1 {
    			panic("g() != 1")
    		}
    	}
    
    	{
    		var g func() int
    		q := 0
    		for range [2]int{} {
    			q++
    			g = func() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 06 18:34:24 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top