Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for Mutated (0.11 sec)

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

                }
            }
            registry.configure(ModelActionRole.Mutate) {
                it.path("b").descriptor("b-mutate").action { Bean b ->
                    b.value = "b-mutate"
                }
            }
            registry.configure(ModelActionRole.Mutate) {
                it.path("a").descriptor("a-mutate").action { Bean a ->
                    a.value = "a-mutate"
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/apis/batch/validation/validation.go

    			allErrs = append(allErrs, field.Invalid(statusFld.Child("completionTime"), job.Status.CompletionTime, "completionTime cannot be mutated"))
    		}
    	}
    	if opts.RejectStartTimeUpdateForUnsuspendedJob {
    		// Note that we check `oldJob.Status.StartTime != nil` to allow transitioning from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	default:
    		return storeerr.InterpretUpdateError(err, e.qualifiedResourceFromContext(ctx), name), false, false, out, lastExisting
    	}
    }
    
    // Delete removes the item from storage.
    // options can be mutated by rest.BeforeDelete due to a graceful deletion strategy.
    func (e *Store) Delete(ctx context.Context, name string, deleteValidation rest.ValidateObjectFunc, options *metav1.DeleteOptions) (runtime.Object, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top