Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 666 for identical (0.15 sec)

  1. src/internal/types/testdata/check/builtins1.go

    }
    
    func _[T ~[]byte](x, y T) {
    	copy(x, y)
    	copy(x, "foo")
    	copy("foo" /* ERROR "expects slice arguments" */ , y)
    
    	var x2 []byte
    	copy(x2, y) // element types are identical
    	copy(y, x2) // element types are identical
    
    	type myByte byte
    	var x3 []myByte
    	copy(x3 /* ERROR "different element types" */ , y)
    	copy(y /* ERROR "different element types" */ , x3)
    }
    
    func _[T ~[]E, E any](x T, y []E) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 21:16:29 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. pkg/test/framework/resource/context.go

    	// Cleanup will trigger the provided cleanup function after the test context
    	// completes. This is identical to CleanupStrategy(Always).
    	// This function may not (safely) access the test context.
    	Cleanup(fn func())
    
    	// CleanupConditionally will trigger a cleanup operation the test context
    	// completes, unless -istio.test.nocleanup is set. This is identical to
    	// CleanupStrategy(Conditionally).
    	// This function may not (safely) access the test context.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/split_merged_operands.cc

    //
    // MLIRConverter also benefits from lots of typical compiler optimization like
    // merging same input values if they're identical. These optimizations are
    // desirable but not for those TFLite ops which have variable tensors as inputs.
    // Yes, they have identical input values, but those identical values are
    // "stateful", their values can change during invocations.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/base/StringsTest.java

        assertEquals("a", Strings.commonPrefix("abc", "aaaaa"));
        assertEquals("aa", Strings.commonPrefix("aa", "aaaaa"));
        assertEquals("abc", Strings.commonPrefix(new StringBuffer("abcdef"), "abcxyz"));
    
        // Identical valid surrogate pairs.
        assertEquals(
            "abc\uD8AB\uDCAB", Strings.commonPrefix("abc\uD8AB\uDCABdef", "abc\uD8AB\uDCABxyz"));
        // Differing valid surrogate pairs.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/conversions.go

    	Tu := under(T)
    	Vp, _ := V.(*TypeParam)
    	Tp, _ := T.(*TypeParam)
    
    	// "V and T have identical underlying types if tags are ignored
    	// and V and T are not type parameters"
    	if IdenticalIgnoreTags(Vu, Tu) && Vp == nil && Tp == nil {
    		return true
    	}
    
    	// "V and T are unnamed pointer types and their pointer base types
    	// have identical underlying types if tags are ignored
    	// and their pointer base types are not type parameters"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/upload/Doc.txt

    the count files are no longer needed and can be deleted.
    
    Third phase. Look at the .json files in the list from the first phase.
    If the name starts with local, skip it. If there is a file with the
    identical name in the upload directory, remove the one in the local directory.
    Otherwise try to upload the one in the local directory,
    If the upload succeeds, move the file to the uploaded directory.
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. android/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)
  8. src/internal/types/testdata/examples/operations.go

            _ = *p // ERROR "cannot indirect p"
    }
    
    func _[P interface{ *int }](p P) {
            _ = *p
    }
    
    func _[P interface{ *int | *string }](p P) {
            _ = *p // ERROR "must have identical base types"
    }
    
    type intPtr *int
    
    func _[P interface{ *int | intPtr } ](p P) {
            var _ int = *p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 582 bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Joiner.java

      }
    
      /**
       * Appends the string representation of each of {@code parts}, using the previously configured
       * separator between each, to {@code builder}. Identical to {@link #appendTo(Appendable,
       * Iterable)}, except that it does not throw {@link IOException}.
       */
      @CanIgnoreReturnValue
      public final StringBuilder appendTo(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  10. src/internal/syscall/windows/memory_windows.go

    	// The memory protection option when the region was initially allocated
    	AllocationProtect uint32
    	PartitionId       uint16
    	// The size of the region beginning at the base address in which all pages have identical attributes, in bytes.
    	RegionSize uintptr
    	// The state of the pages in the region.
    	State uint32
    	// The access protection of the pages in the region.
    	Protect uint32
    	// The type of pages in the region.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 20 00:18:04 UTC 2022
    - 940 bytes
    - Viewed (0)
Back to top