Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 545 for Mutated (0.45 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

        fun addSystemPropertyToFingerprint(key: String, value: Any?, consumer: String? = null) {
            if (isSystemPropertyMutated(key)) {
                // Mutated values of the system properties are not part of the fingerprint, as their value is
                // set at the configuration time. Everything that reads a mutated property value should be saved
                // as a fixed value.
                return
            }
            val propertyValue =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

            when:
            configurationCacheRun()
    
            then:
            configurationCache.assertStateStored()
            outputContains("ValueSource result = Hello, world")
        }
    
        def "value source can read mutated system property inputs at configuration time"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            buildFile("""
            import org.gradle.api.provider.*
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/util/util.go

    		return volumeSpec, nil
    	}
    
    	// Do not return the original volume object, since it's from the shared
    	// informer it may be mutated by another consumer.
    	clonedPodVolume := podVolume.DeepCopy()
    
    	origspec := volume.NewSpecFromVolume(clonedPodVolume)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/aggregate/controller_test.go

    				svc.ClusterVIPs.Addresses, ClusterVIPs[svc.Hostname])
    		}
    	}
    
    	// check HelloService is not mutated
    	if !reflect.DeepEqual(originalHelloService, mock.HelloService) {
    		t.Errorf("Original hello service is mutated")
    	}
    }
    
    func TestServices(t *testing.T) {
    	aggregateCtl := buildMockController()
    	// List Services from aggregate controller
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

            )
    
            def fixture = spec.createFixtureFor(this, systemProp)
            fixture.setup()
    
            settingsFile << "System.setProperty('$systemProp', 'mutated value')\n"
    
            when:
            System.clearProperty(systemProp)
            configurationCacheRun fixture.task
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelRuleBindingFailureIntegrationTest.groovy

                        @Model
                        MyThing1 thing1() {
                            new MyThing1()
                        }
    
                        @Mutate
                        void thing1(MyThing1 t1, MyThing3 t3) {
                        }
    
                        @Mutate
                        void mutateThing2(MyThing2 t2, MyThing1 t1) {
                        }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/apiclient/idempotency.go

    	if err == nil {
    		return nil
    	}
    	return lastError
    }
    
    // mutateConfigMap takes a ConfigMap Object Meta (namespace and name), retrieves the resource from the server and tries to mutate it
    // by calling to the mutator callback, then an Update of the mutated ConfigMap will be performed. This function is resilient
    // to conflicts, and a retry will be issued if the ConfigMap was modified on the server between the refresh and the update (while the mutation was
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/check.go

    	if info == nil {
    		info = new(Info)
    	}
    
    	// Note: clients may call NewChecker with the Unsafe package, which is
    	// globally shared and must not be mutated. Therefore NewChecker must not
    	// mutate *pkg.
    	//
    	// (previously, pkg.goVersion was mutated here: go.dev/issue/61212)
    
    	return &Checker{
    		conf:    conf,
    		ctxt:    conf.Context,
    		pkg:     pkg,
    		Info:    info,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/fingerprinting.cc

      const int kFingerprintProducer = 1;
    
      SavedModel saved_model;
      TF_RETURN_IF_ERROR(ReadBinaryProto(Env::Default(), pb_file, &saved_model));
    
      // Create a copy of `metagraph` which will be used and mutated for fingerprint
      // computation.
      FingerprintDef fingerprint_def;
      MetaGraphDef* metagraph = saved_model.mutable_meta_graphs(0);
      // Set fingerprint field #1.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 26 00:24:44 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/cache/DefaultCacheConfigurations.java

            }
        }
    
        /**
         * An implementation of {@link Property} that provides a contextualized error if the value is mutated after finalization.
         */
        private static class ContextualErrorMessageProperty<T> extends DefaultProperty<T> {
            private final String displayName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top