Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 229 for Subtract (0.39 sec)

  1. src/cmd/covdata/doc.go

    	...
    	$ go tool cover -html=cov.txt
    	$
    
    5. Merge profiles together:
    
    	$ go tool covdata merge -i=indir1,indir2 -o=outdir -modpaths=github.com/go-delve/delve
    	$
    
    6. Subtract one profile from another
    
    	$ go tool covdata subtract -i=indir1,indir2 -o=outdir
    	$
    
    7. Intersect profiles
    
    	$ go tool covdata intersect -i=indir1,indir2 -o=outdir
    	$
    
    8. Dump a profile for debugging purposes.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.kt

        override fun run() {}
    }
    
    enum class Direction {
        NORTH, SOUTH, WEST, EAST
    }
    
    sealed class Operation {
        class Add(val firstValue: Int, val secondValue: Int) : Operation()
        class Subtract(val minuend: Int, val subtrahend: Int) : Operation()
        class Negate(val value: Int) : Operation()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 07 16:22:01 UTC 2023
    - 426 bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/measure/Amount.java

            if (diff == 0) {
                return new Amount<>(value.subtract(other.value), units);
            }
            if (diff < 0) {
                return new Amount<>(value.subtract(other.units.scaleTo(other.value, units)), units);
            }
            return new Amount<>(units.scaleTo(value, other.units).subtract(other.value), other.units);
        }
    
        public Amount<Q> multiply(BigDecimal other) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. pkg/kubelet/preemption/preemption_test.go

    	}
    	allPods := getTestPods()
    	runs := []testRun{
    		{
    			testName:       "subtract a pod from no requirements",
    			initial:        getAdmissionRequirementList(0, 0, 0),
    			inputPod:       allPods[burstable],
    			expectedOutput: getAdmissionRequirementList(0, 0, 0),
    		},
    		{
    			testName:       "subtract no requests from some requirements",
    			initial:        getAdmissionRequirementList(100, 100, 1),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 24 10:04:08 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  5. src/internal/fuzz/mutator.go

    				continue
    			}
    			if v > 0 && maxValue-v < max {
    				// Don't let v exceed maxValue
    				max = maxValue - v
    			}
    			v += int64(1 + m.rand(int(max)))
    			return v
    		case 1:
    			// Subtract a random number
    			if v <= -maxValue {
    				continue
    			}
    			if v < 0 && maxValue+v < max {
    				// Don't let v drop below -maxValue
    				max = maxValue + v
    			}
    			v -= int64(1 + m.rand(int(max)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. src/crypto/internal/edwards25519/field/fe_alias_test.go

    			oneArgF: func(v, x *Element) *Element {
    				return v.Mult32(x, 0xffffffff)
    			},
    		},
    		{name: "Multiply", twoArgsF: (*Element).Multiply},
    		{name: "Add", twoArgsF: (*Element).Add},
    		{name: "Subtract", twoArgsF: (*Element).Subtract},
    		{
    			name: "SqrtRatio",
    			twoArgsF: func(v, x, y *Element) *Element {
    				r, _ := v.SqrtRatio(x, y)
    				return r
    			},
    		},
    		{
    			name: "Select0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/tests/compose-uniform-quantized-type.mlir

        %14 = stablehlo.subtract %12, %13 : tensor<8x16x16xi32>  // q1 - z1
        %15 = stablehlo.convert %11 : (tensor<8x16x4xi8>) -> tensor<8x16x4xi32>
        %16 = stablehlo.broadcast_in_dim %6, dims = [0, 1, 2] : (tensor<1x1x1xi32>) -> tensor<8x16x4xi32>
        %17 = stablehlo.subtract %15, %16 : tensor<8x16x4xi32>  // q2 - z2
        // Corresponds to einsum expression: b i j, b j d -> b i d
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 37K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/scalar_alias_test.go

    			return checkAliasingTwoArgs((*Scalar).Multiply, v, x, y)
    		},
    		"Add": func(v, x, y Scalar) bool {
    			return checkAliasingTwoArgs((*Scalar).Add, v, x, y)
    		},
    		"Subtract": func(v, x, y Scalar) bool {
    			return checkAliasingTwoArgs((*Scalar).Subtract, v, x, y)
    		},
    		"MultiplyAdd1": func(v, x, y, fixed Scalar) bool {
    			return checkAliasingTwoArgs(func(v, x, y *Scalar) *Scalar {
    				return v.MultiplyAdd(&fixed, x, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/asmz.go

    	op_SGF     uint32 = 0xE319 // FORMAT_RXY1       SUBTRACT (64<-32)
    	op_SGFR    uint32 = 0xB919 // FORMAT_RRE        SUBTRACT (64<-32)
    	op_SGR     uint32 = 0xB909 // FORMAT_RRE        SUBTRACT (64)
    	op_SGRK    uint32 = 0xB9E9 // FORMAT_RRF1       SUBTRACT (64)
    	op_SH      uint32 = 0x4B00 // FORMAT_RX1        SUBTRACT HALFWORD
    	op_SHHHR   uint32 = 0xB9C9 // FORMAT_RRF1       SUBTRACT HIGH (32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  10. src/runtime/mpagealloc_64bit.go

    		// memory twice, it should never be possible to prune in such a way that causes
    		// need to be split.
    		if inUseIndex > 0 {
    			need = need.subtract(addrRangeToSumAddrRange(l, p.inUse.ranges[inUseIndex-1]))
    		}
    		if inUseIndex < len(p.inUse.ranges) {
    			need = need.subtract(addrRangeToSumAddrRange(l, p.inUse.ranges[inUseIndex]))
    		}
    		// It's possible that after our pruning above, there's nothing new to map.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top