Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 985 for fmod (0.13 sec)

  1. src/math/all_test.go

    	NaN(),           // fmod(-0, 0)
    	Copysign(0, -1), // fmod(-0, Inf)
    	NaN(),           // fmod(-0, NaN)
    	0,               // fmod(0, -Inf)
    	NaN(),           // fmod(0, 0)
    	0,               // fmod(0, +Inf)
    	NaN(),           // fmod(0, NaN)
    	Pi,              // fmod(Pi, -Inf)
    	NaN(),           // fmod(Pi, 0)
    	Pi,              // fmod(Pi, +Inf)
    	NaN(),           // fmod(Pi, NaN)
    	NaN(),           // fmod(+Inf, -Inf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

              [(UnsignedIntTensor $l)]>;
    
    // Performs a substitution of FloorMod designed to correct for possibly negative
    // values. Pseudocode shown below:
    //
    //   T trunc_mod = std::fmod(x, y);
    //   return trunc_mod != 0 && (y < 0 != trunc_mod < 0) ? trunc_mod + y
    //                                                     : trunc_mod
    def : Pat<(TF_FloorModOp AnyTensor:$l, AnyTensor:$r),
          (MHLO_SelectOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. src/math/mod.go

    package math
    
    /*
    	Floating-point mod function.
    */
    
    // Mod returns the floating-point remainder of x/y.
    // The magnitude of the result is less than y and its
    // sign agrees with that of x.
    //
    // Special cases are:
    //
    //	Mod(±Inf, y) = NaN
    //	Mod(NaN, y) = NaN
    //	Mod(x, 0) = NaN
    //	Mod(x, ±Inf) = x
    //	Mod(x, NaN) = NaN
    func Mod(x, y float64) float64 {
    	if haveArchMod {
    		return archMod(x, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 903 bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/mod.go

    // Package modcmd implements the “go mod” command.
    package modcmd
    
    import (
    	"cmd/go/internal/base"
    )
    
    var CmdMod = &base.Command{
    	UsageLine: "go mod",
    	Short:     "module maintenance",
    	Long: `Go mod provides access to operations on modules.
    
    Note that support for modules is built into all the go commands,
    not just 'go mod'. For example, day-to-day adding, removing, upgrading,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 807 bytes
    - Viewed (0)
  5. src/cmd/go.mod

    module cmd
    
    go 1.23
    
    require (
    	github.com/google/pprof v0.0.0-20240528025155-186aa0362fba
    	golang.org/x/arch v0.8.0
    	golang.org/x/build v0.0.0-20240603162849-5dfbda438323
    	golang.org/x/mod v0.18.0
    	golang.org/x/sync v0.7.0
    	golang.org/x/sys v0.21.0
    	golang.org/x/telemetry v0.0.0-20240603224550-f2b69109f79b
    	golang.org/x/term v0.20.0
    	golang.org/x/tools v0.21.1-0.20240604144337-208808308b70
    )
    
    require (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 595 bytes
    - Viewed (0)
  6. src/runtime/debug/mod.go

    			buf.WriteByte('\t')
    			buf.WriteString(m.Sum)
    		} else {
    			buf.WriteByte('\n')
    			formatMod("=>", *m.Replace)
    		}
    		buf.WriteByte('\n')
    	}
    	if bi.Main != (Module{}) {
    		formatMod("mod", bi.Main)
    	}
    	for _, dep := range bi.Deps {
    		formatMod("dep", *dep)
    	}
    	for _, s := range bi.Settings {
    		key := s.Key
    		if quoteKey(key) {
    			key = strconv.Quote(key)
    		}
    		value := s.Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 15:06:51 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. go.mod

    	go.opentelemetry.io/otel v1.27.0 // indirect
    	go.opentelemetry.io/otel/metric v1.27.0 // indirect
    	go.opentelemetry.io/otel/trace v1.27.0 // indirect
    	go.uber.org/multierr v1.11.0 // indirect
    	golang.org/x/mod v0.18.0 // indirect
    	golang.org/x/net v0.26.0 // indirect
    	golang.org/x/text v0.16.0 // indirect
    	golang.org/x/tools v0.22.0 // indirect
    	google.golang.org/genproto v0.0.0-20240610135401-a8a62080eff3 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. hack/tools/go.mod

    	golang.org/x/crypto v0.19.0 // indirect
    	golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect
    	golang.org/x/exp/typeparams v0.0.0-20231219180239-dc181d75b848 // indirect
    	golang.org/x/mod v0.15.0 // indirect
    	golang.org/x/sync v0.6.0 // indirect
    	golang.org/x/sys v0.17.0 // indirect
    	golang.org/x/term v0.17.0 // indirect
    	golang.org/x/text v0.14.0 // indirect
    	golang.org/x/tools v0.18.0 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. go.mod

    // Ensure you've carefully read
    // https://git.k8s.io/community/contributors/devel/sig-architecture/vendor.md
    // Run hack/pin-dependency.sh to change pinned dependency versions.
    // Run hack/update-vendor.sh to update go.mod files and the vendor directory.
    
    module k8s.io/kubernetes
    
    go 1.22.0
    
    require (
    	bitbucket.org/bertimus9/systemstat v0.5.0
    	github.com/JeffAshton/win_pdh v0.0.0-20161109143554-76bb4ee9f0ab
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. src/cmd/objdump/testdata/testfilenum/go.mod

    Michael Pratt <******@****.***> 1673560519 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 15:19:45 UTC 2023
    - 49 bytes
    - Viewed (0)
Back to top