Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 145 for 2345 (0.46 sec)

  1. tensorflow/cc/gradients/nn_grad_test.cc

              {shape});
    }
    
    INSTANTIATE_TEST_SUITE_P(
        FusedBatchNormGrad, FusedBatchNormGradTest,
        ::testing::Combine(::testing::Bool(), ::testing::Bool(),
                           ::testing::Values(TensorShape({2, 3, 4, 5}),
                                             TensorShape({2, 3, 2, 2, 2}))));
    
    TEST_F(NNGradTest, Conv2DBackpropInputGrad) {
      TensorShape shape({1, 2, 2, 1});
      TensorShape filter_shape({1, 1, 1, 1});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 20:45:22 UTC 2022
    - 15K bytes
    - Viewed (0)
  2. operator/README.md

    To use Remote debugging with IntelliJ, replace above step 2 with following:
    
    1. From `./operator/cmd/operator` path run
    `
    dlv debug --headless --listen=:2345 --api-version=2 -- server
    `.
    
    1. In IntelliJ, create a new Go Remote debug configuration with default settings.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv12-RenegotiateOnce

    00000080  d0 64 16 ba f2 0d 04 ca  5d 94 6b da a8 09 b1 29  |.d......].k....)|
    00000090  70 a9 37 1e ac 94 e3 81  60 c3 19 f3 a9 99 6a 11  |p.7.....`.....j.|
    000000a0  b1 e7 23 45 8a f5 42 f5  50 76 9f 1e 9e a8 e7 75  |..#E..B.Pv.....u|
    000000b0  4a 18 84 80 da 10 ed 83  9a 14 a9 a1 90 54 8e 8b  |J............T..|
    000000c0  d1 32 83 6d e7 7e be 59  f4 66 59 53 75 37 c6 82  |.2.m.~.Y.fYSu7..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/policy_static_test.go

    			topo:            topoDualSocketHT,
    			numReservedCPUs: 2,
    			reserved:        cpuset.New(0, 1),
    			stAssignments:   state.ContainerCPUAssignments{},
    			stDefaultCPUSet: cpuset.New(2, 3, 4, 5),
    			expErr:          fmt.Errorf("not all reserved cpus: \"0-1\" are present in defaultCpuSet: \"2-5\""),
    		},
    		{
    			description:     "inconsistency between numReservedCPUs and reserved",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/math/LongMath.java

        return (n < factorials.length) ? factorials[n] : Long.MAX_VALUE;
      }
    
      static final long[] factorials = {
        1L,
        1L,
        1L * 2,
        1L * 2 * 3,
        1L * 2 * 3 * 4,
        1L * 2 * 3 * 4 * 5,
        1L * 2 * 3 * 4 * 5 * 6,
        1L * 2 * 3 * 4 * 5 * 6 * 7,
        1L * 2 * 3 * 4 * 5 * 6 * 7 * 8,
        1L * 2 * 3 * 4 * 5 * 6 * 7 * 8 * 9,
        1L * 2 * 3 * 4 * 5 * 6 * 7 * 8 * 9 * 10,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/math/LongMath.java

        return (n < factorials.length) ? factorials[n] : Long.MAX_VALUE;
      }
    
      static final long[] factorials = {
        1L,
        1L,
        1L * 2,
        1L * 2 * 3,
        1L * 2 * 3 * 4,
        1L * 2 * 3 * 4 * 5,
        1L * 2 * 3 * 4 * 5 * 6,
        1L * 2 * 3 * 4 * 5 * 6 * 7,
        1L * 2 * 3 * 4 * 5 * 6 * 7 * 8,
        1L * 2 * 3 * 4 * 5 * 6 * 7 * 8 * 9,
        1L * 2 * 3 * 4 * 5 * 6 * 7 * 8 * 9 * 10,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  7. src/fmt/scan_test.go

    	}
    	n, err = Sscan("234", &i, &j)
    	if n != 1 || i != 234 {
    		t.Errorf("Sscan expected one value of 234; got %d %d", n, i)
    	}
    	if err != io.EOF {
    		t.Errorf("Sscan expected EOF; got %q", err)
    	}
    	// Trailing space is tougher.
    	n, err = Sscan("234 ", &i, &j)
    	if n != 1 || i != 234 {
    		t.Errorf("Sscan expected one value of 234; got %d %d", n, i)
    	}
    	if err != io.EOF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  8. helm-releases/minio-3.4.5.tgz

    minio-3.4.5.tar minio/Chart.yaml apiVersion: v1 appVersion: RELEASE.2022-01-04T07-41-07Z description: Multi-Cloud Object Storage home: https://min.io icon: https://min.io/resources/img/logo/MINIO_wordmark.png keywords: - minio - storage - object-storage - s3 - cluster maintainers: - email: ******@****.*** name: MinIO, Inc name: minio sources: - https://github.com/minio/minio version: 3.4.5 minio/values.yaml ## Provide a name in place of minio for `app:` labels ## nameOverride: "" ## Provide a name...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 05 19:32:55 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/primitives/BytesTest.java

        testRotate(new byte[] {1, 2, 3, 4}, -9, new byte[] {2, 3, 4, 1});
        testRotate(new byte[] {1, 2, 3, 4}, -5, new byte[] {2, 3, 4, 1});
        testRotate(new byte[] {1, 2, 3, 4}, -1, new byte[] {2, 3, 4, 1});
        testRotate(new byte[] {1, 2, 3, 4}, 0, new byte[] {1, 2, 3, 4});
        testRotate(new byte[] {1, 2, 3, 4}, 1, new byte[] {4, 1, 2, 3});
        testRotate(new byte[] {1, 2, 3, 4}, 5, new byte[] {4, 1, 2, 3});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/primitives/CharsTest.java

        testRotate(new char[] {'1', '2', '3'}, 5, new char[] {'2', '3', '1'});
    
        testRotate(new char[] {'1', '2', '3', '4'}, -9, new char[] {'2', '3', '4', '1'});
        testRotate(new char[] {'1', '2', '3', '4'}, -5, new char[] {'2', '3', '4', '1'});
        testRotate(new char[] {'1', '2', '3', '4'}, -1, new char[] {'2', '3', '4', '1'});
        testRotate(new char[] {'1', '2', '3', '4'}, 0, new char[] {'1', '2', '3', '4'});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top