Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for dataset (0.17 sec)

  1. tensorflow/BUILD

            "//tensorflow/core/grappler:grappler_item",
            "//tensorflow/core/grappler:grappler_item_builder",
            "//tensorflow/core/kernels:data_service_ops",
            "//tensorflow/core/kernels:dataset_ops",
            "//tensorflow/core/platform:logging",
            "//tensorflow/core/platform:path",
            "//tensorflow/core/platform:stacktrace_handler",
            "//tensorflow/core/platform:statusor",
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (8)
  2. cmd/test-utils_test.go

    }
    
    // calculateSignedChunkLength - calculates the length of the overall stream (data + metadata)
    func calculateStreamContentLength(dataLen, chunkSize int64) int64 {
    	if dataLen <= 0 {
    		return 0
    	}
    	chunksCount := dataLen / chunkSize
    	remainingBytes := dataLen % chunkSize
    	var streamLen int64
    	streamLen += chunksCount * calculateSignedChunkLength(chunkSize)
    	if remainingBytes > 0 {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 17:26:51 GMT 2024
    - 76.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/SetsTest.java

        assertFalse(powerSet.contains(Collections.<@Nullable Integer>singleton(null)));
        assertFalse(powerSet.contains(null));
        assertFalse(powerSet.contains((Object) "notASet"));
      }
    
      public void testPowerSetIteration_manual() {
        ImmutableSet<Integer> elements = ImmutableSet.of(1, 2, 3);
        Set<Set<Integer>> powerSet = powerSet(elements);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 49.3K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/arm64.s

    	FSTPQ	(F3, F4), 1024(RSP)  // fb031091631300ad
    	FSTPQ	(F3, F4), 4104(RSP)
    	FSTPQ	(F3, F4), x(SB)
    	FSTPQ	(F3, F4), x+8(SB)
    
    // System Register
    	MSR	$1, SPSel                          // bf4100d5
    	MSR	$9, DAIFSet                        // df4903d5
    	MSR	$6, DAIFClr                        // ff4603d5
    	MSR	$0, CPACR_EL1                      // 5f1018d5
    	MRS	ELR_EL1, R8                        // 284038d5
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
Back to top