Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 157 for fabs (0.15 sec)

  1. src/cmd/asm/internal/asm/testdata/riscv64.s

    	BNEZ	X5, 2(PC)				// 63940200
    
    	// Set pseudo-instructions
    	SEQZ	X15, X15				// 93b71700
    	SNEZ	X15, X15				// b337f000
    
    	// F extension
    	FABSS	F0, F1					// d3200020
    	FNEGS	F0, F1					// d3100020
    	FNES	F0, F1, X7				// d3a300a093c31300
    
    	// D extension
    	FABSD	F0, F1					// d3200022
    	FNEGD	F0, F1					// d3100022
    	FNED	F0, F1, X5				// d3a200a293c21200
    	FLTD	F0, F1, X5				// d39200a2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/testFixtures/groovy/org/gradle/internal/snapshot/TestSnapshotFixture.groovy

                FilenameUtils.separatorsToSystem(absolutePath),
                FilenameUtils.getName(absolutePath),
                TestHashCodes.hashCodeFrom(hashCode ?: pseudoRandom.nextLong()),
                file(abs(pseudoRandom.nextLong()), abs(pseudoRandom.nextLong()), accessType))
        }
    
        FileSystemLocationSnapshot missing(String absolutePath, FileMetadata.AccessType accessType = DIRECT) {
            new MissingFileSnapshot(
                absolutePath,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial005.py

                            }
                        },
                        "summary": "Read Items",
                        "operationId": "read_items_items__get",
                        "x-aperture-labs-portal": "blue",
                    }
                }
            },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. internal/s3select/json/record.go

    	// See golang.org/issue/6384 and golang.org/issue/14135.
    	// Like fmt %g, but the exponent cutoffs are different
    	// and exponents themselves are not padded to two digits.
    	abs := math.Abs(f)
    	fmt := byte('f')
    	if abs != 0 {
    		if abs < 1e-6 || abs >= 1e21 {
    			fmt = 'e'
    		}
    	}
    	dst = strconv.AppendFloat(dst, f, fmt, -1, 64)
    	if fmt == 'e' {
    		// clean up e-09 to e-9
    		n := len(dst)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 20:31:19 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/metrics/metrics_test.go

    		t.Errorf("unexpected count: %v", c)
    	}
    	if math.Abs(s-2.0) > 1e-7 {
    		t.Fatalf("incorrect sum: %v", s)
    	}
    }
    
    func TestObserveEvaluation(t *testing.T) {
    	defer legacyregistry.Reset()
    	Metrics.ObserveEvaluation(2 * time.Second)
    	c, s := gatherHistogram(t, "apiserver_cel_evaluation_duration_seconds")
    	if c != 1 {
    		t.Errorf("unexpected count: %v", c)
    	}
    	if math.Abs(s-2.0) > 1e-7 {
    		t.Fatalf("incorrect sum: %v", s)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	YIELD                                      // 3f2003d5
    	//TODO FABD F0, F5, F11                    // abd4a07e
    	//TODO VFABD V30.S2, V8.S2, V24.S2         // 18d5be2e
    	//TODO VFABS V5.S4, V24.S4                 // b8f8a04e
    	FABSS F2, F28                              // 5cc0201e
    	FABSD F0, F14                              // 0ec0601e
    	//TODO FACGE F25, F16, F0                  // 00ee797e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  7. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappedRange.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.internal.idn
    
    import kotlin.math.abs
    import okio.ByteString
    
    internal sealed interface MappedRange {
      val rangeStart: Int
    
      data class Constant(
        override val rangeStart: Int,
        val type: Int,
      ) : MappedRange {
        val b1: Int
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. src/math/big/nat_test.go

    		// check output in table
    		xi := &Int{abs: x}
    		yi := &Int{abs: y}
    		mi := &Int{abs: m}
    		p := new(Int).Mod(new(Int).Mul(xi, new(Int).Mul(yi, new(Int).ModInverse(new(Int).Lsh(one, uint(len(m))*_W), mi))), mi)
    		if out.cmp(p.abs.norm()) != 0 {
    			t.Errorf("#%d: out in table=0x%s, computed=0x%s", i, out.utoa(16), p.abs.norm().utoa(16))
    		}
    
    		// check k0 in table
    		k := new(Int).Mod(&Int{abs: m}, _B)
    		k = new(Int).Sub(_B, k)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  9. src/time/zoneinfo.go

    	// the only caller that cares, which is Date.
    	if ysec < startSec {
    		return stdName, stdOffset, abs, startSec + abs, stdIsDST, true
    	} else if ysec >= endSec {
    		return stdName, stdOffset, endSec + abs, abs + 365*secondsPerDay, stdIsDST, true
    	} else {
    		return dstName, dstOffset, startSec + abs, endSec + abs, dstIsDST, true
    	}
    }
    
    // tzsetName returns the timezone name at the start of the tzset string s,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/region-control-flow-to-functional.mlir

    // CHECK-NEXT:   "tf.Abs"
    func.func @testSimple(%arg0: tensor<i1>, %arg1: tensor<*xf32>) -> tensor<*xf32> {
      // CHECK: "tf.If"
      // CHECK-NOT: attr1
      // CHECK-SAME: else_branch = @test_else_name
      // CHECK-SAME: then_branch = @test_then_name
      // CHECK-SAME: _attr0 = false
      // CHECK-SAME: _xla_propagate_compile_time_consts = true
      %0 = "tf.IfRegion"(%arg0) ({
        %1 = "tf.Abs"(%arg1) : (tensor<*xf32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 02 11:15:34 UTC 2024
    - 44.3K bytes
    - Viewed (0)
Back to top