Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,337 for 3$ (0.07 sec)

  1. src/crypto/internal/nistec/p256_asm.go

    	_, b = bits.Sub64(x[2], p256P[2], b)
    	_, b = bits.Sub64(x[3], p256P[3], b)
    	return int(b)
    }
    
    // p256Add sets res = x + y.
    func p256Add(res, x, y *p256Element) {
    	var c, b uint64
    	t1 := make([]uint64, 4)
    	t1[0], c = bits.Add64(x[0], y[0], 0)
    	t1[1], c = bits.Add64(x[1], y[1], c)
    	t1[2], c = bits.Add64(x[2], y[2], c)
    	t1[3], c = bits.Add64(x[3], y[3], c)
    	t2 := make([]uint64, 4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. guava-tests/benchmark/com/google/common/base/ToStringHelperBenchmark.java

        SMALL {
          @Override
          void addEntries(MoreObjects.ToStringHelper helper) {
            helper
                .add(SHORT_NAME, 10)
                .addValue(10L)
                .add(SHORT_NAME, 3.14f)
                .addValue(3.14d)
                .add(LONG_NAME, false)
                .add(LONG_NAME, LONG_NAME);
          }
        },
        CONDITIONAL {
          @Override
          void addEntries(MoreObjects.ToStringHelper helper) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/base/ToStringHelperBenchmark.java

        SMALL {
          @Override
          void addEntries(MoreObjects.ToStringHelper helper) {
            helper
                .add(SHORT_NAME, 10)
                .addValue(10L)
                .add(SHORT_NAME, 3.14f)
                .addValue(3.14d)
                .add(LONG_NAME, false)
                .add(LONG_NAME, LONG_NAME);
          }
        },
        CONDITIONAL {
          @Override
          void addEntries(MoreObjects.ToStringHelper helper) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            property.putAll(supplierWithValues([c: '3']))
    
            expect:
            assertHasNoProducer(property)
            def value = property.calculateExecutionTimeValue()
            value.isChangingValue()
            value.getChangingValue().get() == [a: '1', b: '2', c: '3']
            value.getChangingValue().get() == [a: '1b', c: '3']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op.cc

          AssignIfNotExists(
              ids_[idx], static_cast<CalibrationMethod>(calibration_methods_[idx]));
    
          const Tensor& min_tensor = context->input(3 * idx);
          const Tensor& max_tensor = context->input(3 * idx + 1);
          const Tensor& histogram_tensor = context->input(3 * idx + 2);
    
          const float min_value = min_tensor.scalar<float>()();
          const float max_value = max_tensor.scalar<float>()();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. docs/en/data/people.yml

    - login: chrisK824
      count: 3
      avatarUrl: https://avatars.githubusercontent.com/u/79946379?u=03d85b22d696a58a9603e55fbbbe2de6b0f4face&v=4
      url: https://github.com/chrisK824
    - login: ryanisn
      count: 3
      avatarUrl: https://avatars.githubusercontent.com/u/53449841?v=4
      url: https://github.com/ryanisn
    - login: pythonweb2
      count: 3
      avatarUrl: https://avatars.githubusercontent.com/u/32141163?v=4
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            then:
            def scripts = scriptDetails()
            scripts.size() == 3 // same script applied 3 times
            scripts.collect { it.className }.unique().size() == 1
            scripts.collect { it.classpath }.unique().size() == 1
            getCompileBuildFileOperationsCount() == 8 // classpath and body for the common script + identical script x 3 targets
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_pod_control_test.go

    			claim.Name = fmt.Sprintf("%s-set-3", claim.Name)
    			claim.Namespace = set.Namespace
    			switch claimState {
    			case missing:
    			// Do nothing, the claim shouldn't exist.
    			case exists:
    				claimIndexer.Add(&claim)
    			case stale:
    				claim.SetOwnerReferences([]metav1.OwnerReference{
    					{
    						Name:       "set-3",
    						UID:        types.UID("stale"),
    						APIVersion: "v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  9. src/crypto/md5/md5.go

    type digest struct {
    	s   [4]uint32
    	x   [BlockSize]byte
    	nx  int
    	len uint64
    }
    
    func (d *digest) Reset() {
    	d.s[0] = init0
    	d.s[1] = init1
    	d.s[2] = init2
    	d.s[3] = init3
    	d.nx = 0
    	d.len = 0
    }
    
    const (
    	magic         = "md5\x01"
    	marshaledSize = len(magic) + 4*4 + BlockSize + 8
    )
    
    func (d *digest) MarshalBinary() ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (FMOVDload [off] {sym} (ADDshiftLL [3] ptr idx) mem) && off == 0 && sym == nil => (FMOVDloadidx8 ptr idx mem)
    (FMOVSload [off] {sym} (ADDshiftLL [2] ptr idx) mem) && off == 0 && sym == nil => (FMOVSloadidx4 ptr idx mem)
    (FMOVDloadidx ptr (SLLconst [3] idx) mem) => (FMOVDloadidx8 ptr idx mem)
    (FMOVSloadidx ptr (SLLconst [2] idx) mem) => (FMOVSloadidx4 ptr idx mem)
    (FMOVDloadidx (SLLconst [3] idx) ptr mem) => (FMOVDloadidx8 ptr idx mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
Back to top