Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 968 for Mutated (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/optimize_global_tensors.cc

      // Global tensor is already known to be immutable.
      if (!global_tensor.getIsMutable()) {
        return false;
      }
      // An exported global tensor that is not already known to be immutable might
      // be externally mutated.
      if (IsExported(global_tensor)) {
        return false;
      }
    
      // A global tensor is immutable if the resource analyzer deems it so.
      for (auto& global_tensor_use : global_tensor_uses) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.9K 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. staging/src/k8s.io/apimachinery/pkg/util/proxy/dial_test.go

    			u.Host = net.JoinHostPort("127.0.0.1", p)
    			conn, err := DialURL(context.Background(), u, transport)
    
    			// Make sure dialing doesn't mutate the transport's TLSConfig
    			if !reflect.DeepEqual(tc.TLSConfig, tlsConfigCopy) {
    				t.Errorf("%s: transport's copy of TLSConfig was mutated\n%s", k, cmp.Diff(tc.TLSConfig, tlsConfigCopy))
    			}
    
    			if err != nil {
    				if tc.ExpectError == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/LongAdder.java

     * higher space consumption.
     *
     * <p>This class extends {@link Number}, but does not define methods such as {@code
     * equals}, {@code hashCode} and {@code compareTo} because instances are expected to be mutated, and
     * so are not useful as collection keys.
     *
     * <p>jsr166e note: This class is targeted to be placed in java.util.concurrent.atomic.
     *
     * @since 1.8
     * @author Doug Lea
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/LongAdder.java

     * higher space consumption.
     *
     * <p>This class extends {@link Number}, but does not define methods such as {@code
     * equals}, {@code hashCode} and {@code compareTo} because instances are expected to be mutated, and
     * so are not useful as collection keys.
     *
     * <p>jsr166e note: This class is targeted to be placed in java.util.concurrent.atomic.
     *
     * @since 1.8
     * @author Doug Lea
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/dir.go

    // no data should be written to the directory, and so the path values of
    // LocalDir, UploadDir, etc. must not matter.
    //
    // Default is a global for convenience and testing, but should not be mutated
    // outside of tests.
    //
    // TODO(rfindley): it would be nice to completely eliminate this global state,
    // or at least push it in the golang.org/x/telemetry package
    var Default Dir
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. 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)
  9. pkg/registry/apps/replicaset/strategy_test.go

    	errs = Strategy.ValidateUpdate(ctx, invalidRc, rs)
    	if len(errs) == 0 {
    		t.Errorf("Expected a validation error")
    	}
    	if invalidRc.ResourceVersion != "4" {
    		t.Errorf("Incoming resource version on update should not be mutated")
    	}
    }
    
    func TestReplicaSetStatusStrategy(t *testing.T) {
    	ctx := genericapirequest.NewDefaultContext()
    	if !StatusStrategy.NamespaceScoped() {
    		t.Errorf("ReplicaSet must be namespace scoped")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 09 21:04:31 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  10. pkg/registry/core/replicationcontroller/strategy_test.go

    	errs = Strategy.ValidateUpdate(ctx, invalidRc, rc)
    	if len(errs) == 0 {
    		t.Errorf("Expected a validation error")
    	}
    	if invalidRc.ResourceVersion != "4" {
    		t.Errorf("Incoming resource version on update should not be mutated")
    	}
    }
    
    func TestControllerStatusStrategy(t *testing.T) {
    	ctx := genericapirequest.NewDefaultContext()
    	if !StatusStrategy.NamespaceScoped() {
    		t.Errorf("ReplicationController must be namespace scoped")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 13 16:56:29 UTC 2019
    - 6.9K bytes
    - Viewed (0)
Back to top