Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 666 for identical (0.4 sec)

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

    cd $WORK
    go build -o a.out
    
    # Varying -trimpath should cause a rebuild.
    go build -x -o a.out -trimpath
    stderr '(compile|gccgo)( |\.exe)'
    stderr 'link( |\.exe)'
    
    # Two distinct versions of the same module with identical content should
    # still be cached separately.
    # Verifies golang.org/issue/35412.
    go get example.com/stack@v1.0.0
    go run -trimpath printstack.go
    stdout '^example.com/stack@v1.0.0/stack.go$'
    go get example.com/stack@v1.0.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 865 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/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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/encoding/json/fold.go

    // license that can be found in the LICENSE file.
    
    package json
    
    import (
    	"unicode"
    	"unicode/utf8"
    )
    
    // foldName returns a folded string such that foldName(x) == foldName(y)
    // is identical to bytes.EqualFold(x, y).
    func foldName(in []byte) []byte {
    	// This is inlinable to take advantage of "function outlining".
    	var arr [32]byte // large enough for most JSON names
    	return appendFoldedName(arr[:0], in)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 17:37:27 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top