Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 968 for Mutated (0.13 sec)

  1. src/internal/syscall/windows/sysdll/sysdll.go

    //
    // Filenames are case sensitive, but that doesn't matter because
    // the case registered with Add is also the same case used with
    // LoadDLL later.
    //
    // It has no associated mutex and should only be mutated serially
    // (currently: during init), and not concurrent with DLL loading.
    var IsSystemDLL = map[string]bool{}
    
    // Add notes that dll is a system32 DLL which should only be loaded
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 22:38:00 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/audit/types.go

    	// Errors might be logged by the sink itself. If an error should be fatal, leading to an internal
    	// error, ProcessEvents is supposed to panic. The event must not be mutated and is reused by the caller
    	// after the call returns, i.e. the sink has to make a deepcopy to keep a copy around if necessary.
    	// Returns true on success, may return false on error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 16 09:32:49 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/collections/ImmutableFilteredListTest.groovy

            ImmutableFilteredList.allOf([1, 2, 3]) != [1, 2]
            [1, 2] != ImmutableFilteredList.allOf([1, 2, 3])
            ImmutableFilteredList.allOf([1, 2, 3]) != [3, 1, 2]
        }
    
        def "list cannot be mutated"() {
            given:
            def list = ImmutableFilteredList.allOf([1, 2, 3])
    
            when:
            list.add(4)
    
            then:
            thrown(UnsupportedOperationException)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top