Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for Mutated (0.2 sec)

  1. pkg/controller/endpointslice/endpointslice_controller_test.go

    func (cmc *cacheMutationCheck) Check(t *testing.T) {
    	for _, o := range cmc.objects {
    		if !reflect.DeepEqual(o.original, o.deepCopy) {
    			// Cached objects can't be safely mutated and instead should be deep
    			// copied before changed in any way.
    			t.Errorf("Cached object was unexpectedly mutated. Original: %+v, Mutated: %+v", o.deepCopy, o.original)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            // If an external party has seen the public state (variant metadata) of our configuration,
            // we forbid any mutation that mutates the public state. The resolution strategy does
            // not mutate the public state of the configuration, so we allow it.
            if (observed && type != MutationType.STRATEGY) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    					// we do not expect HBONE traffic to have mutated user traffic
    					// presently ExpectMTLS is checking that headers were added to user traffic
    					ExpectMTLS: Never,
    				},
    				{
    					ConfigFile:    "beta-mtls-permissive.yaml",
    					Namespace:     systemNM,
    					Include:       Always,
    					ExpectSuccess: SupportsHBone,
    					// we do not expect HBONE traffic to have mutated user traffic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    === Deprecations
    
    [[mutate_configuration_after_locking]]
    ==== Deprecate mutating configuration after observation
    
    To ensure the accuracy of dependency resolution, Gradle checks that Configurations are not mutated after they have been used as part of a dependency graph.
    
    * Resolvable configurations should not have their resolution strategy, dependencies, hierarchy, etc. modified after they have been resolved.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. src/net/netip/netip_test.go

    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.family, func(t *testing.T) {
    			for _, st := range tt.subtests {
    				t.Run(st.p.String(), func(t *testing.T) {
    					// Ensure st.ip is not mutated.
    					orig := st.ip.String()
    
    					p, err := st.ip.Prefix(int(st.bits))
    					if st.ok && err != nil {
    						t.Fatalf("failed to produce prefix: %v", err)
    					}
    					if !st.ok && err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier.go

    						// The nft docs say "dynamic" is only
    						// needed for sets containing stateful
    						// objects (eg counters), but (at least on
    						// RHEL8) if we create the set without
    						// "dynamic", it later gets mutated to
    						// have it, and then the next attempt to
    						// tx.Add() it here fails because it looks
    						// like we're trying to change the flags.
    						knftables.DynamicFlag,
    						knftables.TimeoutFlag,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. src/crypto/tls/tls_test.go

    	config.Certificates = []Certificate{c0, c1}
    
    	config.BuildNameToCertificate()
    	got := config.Certificates
    	want := []Certificate{c0, c1}
    	if !reflect.DeepEqual(got, want) {
    		t.Fatalf("Certificates were mutated by BuildNameToCertificate\nGot: %#v\nWant: %#v\n", got, want)
    	}
    }
    
    func testingKey(s string) string { return strings.ReplaceAll(s, "TESTING KEY", "PRIVATE KEY") }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * <p>This method can also be used to create an empty collection, which can later be mutated to add elements.</p>
         *
         * @param paths The paths to the files. May be empty.
         * @return The file collection. Never returns null.
         */
        ConfigurableFileCollection files(Object... paths);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. src/net/http/transport.go

    // optional extra headers to write and stores any error to return
    // from roundTrip.
    type transportRequest struct {
    	*Request                        // original request, not to be mutated
    	extra    Header                 // extra headers to write, or nil
    	trace    *httptrace.ClientTrace // optional
    
    	ctx    context.Context // canceled when we are done with the request
    	cancel context.CancelCauseFunc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	key, originalPod := testPropagateStore(ctx, t, store, &example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "name", Namespace: "test-ns"}})
    
    	// First update, so originalPod is outdated.
    	updatedPod := &example.Pod{}
    	if err := store.GuaranteedUpdate(ctx, key, updatedPod, false, nil,
    		storage.SimpleUpdate(func(obj runtime.Object) (runtime.Object, error) {
    			pod := obj.(*example.Pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top