Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 699 for Mutated (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. api/README

    the new API. This helps with our end-of-cycle audit of new APIs.
    The same requirement applies to next/* (described below), which will
    become a go1.XX.txt for XX >= 19.
    
    The next/ directory contains the only files intended to be mutated.
    Each file in that directory contains a list of features that may be added
    to the next release of Go. The files in this directory only affect the
    warning output from the go api tool. Each file should be named
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:22:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. pkg/apis/flowcontrol/v1beta3/conversion_test.go

    			}
    			if want, got := copy.ObjectMeta.Annotations, test.in.ObjectMeta.Annotations; !cmp.Equal(want, got) {
    				t.Errorf("Did not expect the 'Annotations' field of the source to be mutated, diff: %s", cmp.Diff(want, got))
    			}
    		})
    	}
    }
    
    func TestConvert_flowcontrol_PriorityLevelConfiguration_To_v1beta3_PriorityLevelConfiguration(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top