Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 150 for other_2 (0.13 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    void MarkForCompilationPassImpl::Cluster::Merge(Cluster* other) {
      // We keep our own cycles_graph_node_id_ to mirror what GraphCycles does.
    
      // Clearing out data structures in `other` is just a memory saving
      // optimization and not needed for correctness.
    
      cluster_size_ += other->cluster_size_;
      effective_cluster_size_ += other->effective_cluster_size_;
      has_functional_control_flow_ |= other->has_functional_control_flow_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/CharMatcher.java

        }
    
        @Override
        public CharMatcher and(CharMatcher other) {
          return other.matches(match) ? super.and(other) : other;
        }
    
        @Override
        public CharMatcher or(CharMatcher other) {
          return other.matches(match) ? any() : this;
        }
    
        @GwtIncompatible // used only from other GwtIncompatible code
        @Override
        void setBits(BitSet table) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            property.getOrElse(toMutable(["other"])) == toMutable(["other"])
    
            when:
            property.get()
    
            then:
            def e = thrown(MissingValueException)
            e.message == "Cannot query the value of ${displayName} because it has no value available."
        }
    
        def "property has no value when set to provider with no value and other values appended"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_utils_test.go

    					Name:       "simon",
    					UID:        "other-uid",
    				},
    			},
    			shouldReportUnexpectedController: false,
    		},
    		{
    			name: "other pod controller",
    			refs: []metav1.OwnerReference{
    				{
    					APIVersion: "v1",
    					Kind:       "Pod",
    					Name:       "simon",
    					UID:        "other-uid",
    					Controller: ptr.To(true),
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        # done in MLIR level.
        # Tests that the quantized graph outputs similar values. The rtol and atol
        # values are arbitrary.
        self.assertAllClose(new_outputs, expected_outputs, rtol=0.3, atol=0.2)
    
        # Due to other meta data, the compression is not exactly 1/4.
        self.assertLess(
            testing.get_size_ratio(
                self._output_saved_model_path, self._input_saved_model_path
            ),
            0.65,
        )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context_test.go

    				Hostname: "svc2",
    				Ports:    allPorts,
    				Attributes: ServiceAttributes{
    					Name:      "svc2",
    					Namespace: otherNS,
    				},
    			},
    			{
    				Hostname: "svc3",
    				Ports:    allPorts,
    				Attributes: ServiceAttributes{
    					Name:      "svc3",
    					Namespace: otherNS,
    				},
    			},
    			{
    				Hostname: "svc4",
    				Ports:    allPorts,
    				Attributes: ServiceAttributes{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    +
    The directory where the generated files go. As with input files, there are several annotations for output files and directories. A property representing a single directory requires `@OutputDirectory`. You’ll learn about the others soon.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. pkg/kubelet/server/server_test.go

    		"stats summary sub":               {url: "/stats/summary", bucket: "stats"},
    		"invalid path":                    {url: "/junk", bucket: "other"},
    		"invalid path starting with good": {url: "/healthzjunk", bucket: "other"},
    	}
    	fw := newServerTest()
    	defer fw.testHTTPServer.Close()
    
    	for _, test := range tests {
    		path := test.url
    		bucket := test.bucket
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers.go

    	if opts.Pod == nil || other.RunningPod == nil {
    		opts.Pod = other.Pod
    	}
    	// running pods will not persist but will be remembered for replay
    	opts.RunningPod = other.RunningPod
    	// if mirrorPod was not provided, remember the last one for replay
    	if other.MirrorPod != nil {
    		opts.MirrorPod = other.MirrorPod
    	}
    	// accumulate kill pod options
    	if other.KillPodOptions != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            return managedVersionMap;
        }
    
        @Override
        public boolean equals(Object other) {
            if (other == this) {
                return true;
            } else if (!(other instanceof MavenProject)) {
                return false;
            }
    
            MavenProject that = (MavenProject) other;
    
            return Objects.equals(getArtifactId(), that.getArtifactId())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
Back to top