Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 711 for identical (0.13 sec)

  1. src/cmd/go/testdata/script/list_find.txt

    stdout '^false \[\]'
    
    # go list -find -compiled should use cached sources the second time it's run.
    # It might not find the same cached sources as "go build", but the sources
    # should be identical. "go build" derives action IDs (which are used as cache
    # keys) from dependencies' action IDs. "go list -find" won't know what the
    # dependencies are, so it's can't construct the same action IDs.
    [short] skip
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 03:25:01 UTC 2019
    - 748 bytes
    - Viewed (0)
  2. src/internal/types/testdata/spec/assignability.go

    // of the types and variables used in these tests.
    
    // "x's type is identical to T"
    func _[TP any](X TP) {
    	b = b
    	a = a
    	l = l
    	s = s
    	p = p
    	f = f
    	i = i
    	m = m
    	c = c
    	d = d
    
    	B = B
    	A = A
    	L = L
    	S = S
    	P = P
    	F = F
    	I = I
    	M = M
    	C = C
    	D = D
    	X = X
    }
    
    // "x's type V and T have identical underlying types
    // and at least one of V or T is not a named type."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/testing/RelationshipTester.java

       * A word about using {@link Equivalence}, which automatically checks for {@code null} and
       * identical inputs: This sounds like it ought to be a problem here, since the goals of this class
       * include testing that {@code equals()} is reflexive and is tolerant of {@code null}. However,
       * there's no problem. The reason: {@link EqualsTester} tests {@code null} and identical inputs
       * directly against {@code equals()} rather than through the {@code Equivalence}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/testing/SerializableTester.java

      }
    
      /**
       * Serializes and deserializes the specified object and verifies that the re-serialized object is
       * equal to the provided object, that the hashcodes are identical, and that the class of the
       * re-serialized object is identical to that of the original.
       *
       * <p><b>GWT warning:</b> Under GWT, this method simply returns its input, as proper GWT
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/link_matching_actionid.txt

    # Checks that an identical binary is built with -trimpath from the same
    # source files, with GOROOT in two different locations.
    # Verifies golang.org/issue/38989
    
    [short] skip
    [!symlink] skip
    
    # Symlink the compiler to a local path
    env GOROOT=$WORK/goroot1
    symlink $GOROOT -> $TESTGO_GOROOT
    
    # Set up fresh GOCACHE
    env GOCACHE=$WORK/gocache1
    mkdir $GOCACHE
    
    # Build a simple binary
    go build -o binary1 -trimpath -x main.go
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 14:18:11 UTC 2020
    - 835 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/build_trimpath_cgo.txt

    # does not appear in the binary, either literally or in compressed DWARF.
    # TODO(golang.org/issue/36072): ideally we should build a binary from identical
    # sources in different directories and verify the binary and all intermediate
    # files are identical.
    
    [short] skip
    [!cgo] skip
    
    # Check that the source path appears when -trimpath is not used.
    go build -o hello.exe .
    grep -q gopath[/\\]src hello.exe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/LinearTransformation.java

        }
    
        /**
         * Finish building an instance which also maps {@code x = x2} to {@code y = y2}. These values
         * must not both be identical to the values given in the first mapping. If only the {@code x}
         * values are identical, the transformation is vertical. If only the {@code y} values are
         * identical, the transformation is horizontal (i.e. the slope is zero).
         */
        public LinearTransformation and(double x2, double y2) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/README.md

    operator in the script should be in the "math" category, and it will be
    generated in the output file `c/experimental/ops/math_ops.cc`.
    
    Running this script should be a no-op, generating identical code other than
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 17:21:01 UTC 2021
    - 993 bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/testing/RelationshipTester.java

       * A word about using {@link Equivalence}, which automatically checks for {@code null} and
       * identical inputs: This sounds like it ought to be a problem here, since the goals of this class
       * include testing that {@code equals()} is reflexive and is tolerant of {@code null}. However,
       * there's no problem. The reason: {@link EqualsTester} tests {@code null} and identical inputs
       * directly against {@code equals()} rather than through the {@code Equivalence}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/compilersupport.go

    // type of all types in the corresponding type constraint if it exists, or
    // nil otherwise. If the type set contains only unrestricted and restricted
    // channel types (with identical element types), the single underlying type
    // is the restricted channel type if the restrictions are always the same.
    // If typ is not a type parameter, CoreType returns the underlying type.
    func CoreType(t Type) Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 09 22:58:35 UTC 2022
    - 1K bytes
    - Viewed (0)
Back to top