Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 283 for 2345 (0.05 sec)

  1. 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)
  2. 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)
  3. tensorflow/cc/gradients/math_grad.cc

                          std::vector<Output>* grad_outputs) {
      // The SegmentSum operation sums segments of the Tensor that have the same
      // index in the segment_ids parameter.
      // i.e z = [2, 3, 4, 5], segment_ids [0, 0, 0, 1]
      // will produce [2 + 3 + 4, 5] = [9, 5]
      // The gradient that will flow back to the gather operation will look like
      // [x1, x2], it will have the same shape as the output of the SegmentSum
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dev": true,
          "dependencies": {
            "hosted-git-info": "^2.1.4",
            "resolve": "^1.10.0",
            "semver": "2 || 3 || 4 || 5",
            "validate-npm-package-license": "^3.0.1"
          }
        },
        "node_modules/npm-run-all/node_modules/path-key": {
          "version": "2.0.1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS___POW_H                         = 0x928 // 2344
    	SYS___POWF_H                        = 0x929 // 2345
    	SYS___POWL_H                        = 0x92A // 2346
    	SYS___REMAINDER_H                   = 0x92B // 2347
    	SYS___RINT_H                        = 0x92C // 2348
    	SYS___SCALB_H                       = 0x92D // 2349
    	SYS___SIN_H                         = 0x92E // 2350
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/merge_control_flow.mlir

        %4 = "tf.D"(%2, %3) : (tensor<f32>, tensor<f32>) -> (tensor<f32>)
        %5 = "tf.D"(%2, %3, %4) : (tensor<f32>, tensor<f32>, tensor<f32>) -> (tensor<f32>)
        %6 = "tf.D"(%2, %3, %4, %5) : (tensor<f32>, tensor<f32>, tensor<f32>, tensor<f32>) -> (tensor<f32>)
        %7 = "tf.D"(%2, %3, %4, %5, %6) : (tensor<f32>, tensor<f32>, tensor<f32>, tensor<f32>, tensor<f32>) -> (tensor<f32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 63.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %4 = "tf.AddN"(%1, %1) : (tensor<2xf32>, tensor<2xf32>) -> tensor<2xf32>
      %5 = "tf.AddN"(%arg0, %1, %0) : (tensor<2xf32>, tensor<2xf32>, tensor<2xf32>) -> tensor<2xf32>
      func.return %2, %3, %4, %5: tensor<2xf32>, tensor<2xf32>, tensor<2xf32>, tensor<2xf32>
    }
    
    // CHECK-LABEL: func @addNWithZerosInt
    func.func @addNWithZerosInt(%arg0: tensor<2xi32>) -> (tensor<2xi32>, tensor<2xi32>, tensor<2xi32>, tensor<2xi32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_test.go

    }
    
    func TestOutboundListenerRoute(t *testing.T) {
    	testOutboundListenerRoute(t,
    		buildService("test1.com", "1.2.3.4", "unknown", tnow.Add(1*time.Second)),
    		buildService("test2.com", "2.3.4.5", protocol.HTTP, tnow),
    		buildService("test3.com", "3.4.5.6", "unknown", tnow.Add(2*time.Second)))
    }
    
    func TestOutboundListenerConfig_WithSidecar(t *testing.T) {
    	// Add a service and verify it's config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top