Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 359 for Identical (0.13 sec)

  1. tensorflow/compiler/jit/xla_cluster_util.h

    // Computes a fingerprint of the given `graph`. The fingerprint can use used to
    // check if two graphs are likely the same but should not be relied on
    // determining if the graphs are identical.
    absl::StatusOr<uint64> FingerprintGraph(const Graph& graph);
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/Graphs.java

       */
      public static <N> Graph<N> transpose(Graph<N> graph) {
        if (!graph.isDirected()) {
          return graph; // the transpose of an undirected graph is an identical graph
        }
    
        if (graph instanceof TransposedGraph) {
          return ((TransposedGraph<N>) graph).graph;
        }
    
        return new TransposedGraph<>(graph);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_test.go

    		if X == nil || Y == nil {
    			t.Fatal("test must declare both X and Y")
    		}
    		if got := Identical(X.Type(), Y.Type()); got != test.want {
    			t.Errorf("Identical(%s, %s) = %t, want %t", X.Type(), Y.Type(), got, test.want)
    		}
    	}
    }
    
    func TestIdentical_issue15173(t *testing.T) {
    	// Identical should allow nil arguments and be symmetric.
    	for _, test := range []struct {
    		x, y Type
    		want bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/validtype.go

    			return false
    		}
    
    		// If the current type t is also found in nest, (the memory of) t is
    		// embedded in itself, indicating an invalid recursive type.
    		for _, e := range nest {
    			if Identical(e, t) {
    				// We have a cycle. If t != t.Origin() then t is an instance of
    				// the generic type t.Origin(). Because t is in the nest, t must
    				// occur within the definition (RHS) of the generic type t.Origin(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/go/types/validtype.go

    			return false
    		}
    
    		// If the current type t is also found in nest, (the memory of) t is
    		// embedded in itself, indicating an invalid recursive type.
    		for _, e := range nest {
    			if Identical(e, t) {
    				// We have a cycle. If t != t.Origin() then t is an instance of
    				// the generic type t.Origin(). Because t is in the nest, t must
    				// occur within the definition (RHS) of the generic type t.Origin(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildExceptionReporter.java

                    if (plural) {
                        output.append(String.format("There are %d more failures with identical causes.", suppressedDuplicateBranchCount));
                    } else {
                        output.append("There is 1 more failure with an identical cause.");
                    }
                }
            }
        }
    
        private void fillInFailureResolution(FailureDetails details) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/object_test.go

    	embed, _, _ := LookupFieldOrMethod(iface.Type(), false, nil, "Error")
    	if embed == nil {
    		t.Fatalf("embedded error.Error not found")
    	}
    
    	// original and embedded Error object should be identical
    	if orig != embed {
    		t.Fatalf("%s (%p) != %s (%p)", orig, orig, embed, embed)
    	}
    }
    
    var testObjects = []struct {
    	src   string
    	obj   string
    	want  string
    	alias bool // needs materialized aliases
    }{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. src/internal/fmtsort/sort.go

    //   - pointers compare by machine address
    //   - channel values compare by machine address
    //   - structs compare each field in turn
    //   - arrays compare each element in turn.
    //     Otherwise identical arrays compare by length.
    //   - interface values compare first by reflect.Type describing the concrete type
    //     and then by concrete value as described in the previous rules.
    func Sort(mapValue reflect.Value) SortedMap {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:31:45 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    	    the same array length.</li>
    
    	<li>Two slice types are identical if they have identical element types.</li>
    
    	<li>Two struct types are identical if they have the same sequence of fields,
    	    and if corresponding fields have the same names, and identical types,
    	    and identical tags.
    	    <a href="#Exported_identifiers">Non-exported</a> field names from different
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/README.md

    #### Example Asciidoctor multi-language sample declaration
    
    ```asciidoc
    .Customizing what Gradle logs
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top