Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 156 for fabs (0.24 sec)

  1. src/go/doc/testdata/testing.go

    	signal   chan any // Output for serial tests.
    }
    
    // Short reports whether the -test.short flag is set.
    func Short() bool {
    	return *short
    }
    
    // decorate inserts the final newline if needed and indentation tabs for formatting.
    // If addFileLine is true, it also prefixes the string with the file and line of the call site.
    func decorate(s string, addFileLine bool) string {
    	if addFileLine {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go

    	SYS_PROFIL         = 44  // { int sys_profil(caddr_t samples, size_t size, u_long offset, u_int scale); }
    	SYS_KTRACE         = 45  // { int sys_ktrace(const char *fname, int ops, int facs, pid_t pid); }
    	SYS_SIGACTION      = 46  // { int sys_sigaction(int signum, const struct sigaction *nsa, struct sigaction *osa); }
    	SYS_GETGID         = 47  // { gid_t sys_getgid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go

    	SYS_PROFIL         = 44  // { int sys_profil(caddr_t samples, size_t size, u_long offset, u_int scale); }
    	SYS_KTRACE         = 45  // { int sys_ktrace(const char *fname, int ops, int facs, pid_t pid); }
    	SYS_SIGACTION      = 46  // { int sys_sigaction(int signum, const struct sigaction *nsa, struct sigaction *osa); }
    	SYS_GETGID         = 47  // { gid_t sys_getgid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/outline_composites.cc

      if (!cst_op) return false;
      ElementsAttr value = cst_op.getValue();
      if (!value.isSplat()) return false;
      if (!value.getElementType().isF32()) return false;
      return std::abs(value.getSplatValue<float>() - val) < kTolerance;
    }
    
    // Determines if the given op is semantically that of the gauss error function.
    bool MatchERF(Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_netbsd_amd64.go

    	SYS_PROFIL               = 44  // { int|sys||profil(char *samples, size_t size, u_long offset, u_int scale); }
    	SYS_KTRACE               = 45  // { int|sys||ktrace(const char *fname, int ops, int facs, pid_t pid); }
    	SYS_GETGID               = 47  // { gid_t|sys||getgid_with_egid(void); }
    	SYS___GETLOGIN           = 49  // { int|sys||__getlogin(char *namebuf, size_t namelen); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_netbsd_arm.go

    	SYS_PROFIL               = 44  // { int|sys||profil(char *samples, size_t size, u_long offset, u_int scale); }
    	SYS_KTRACE               = 45  // { int|sys||ktrace(const char *fname, int ops, int facs, pid_t pid); }
    	SYS_GETGID               = 47  // { gid_t|sys||getgid_with_egid(void); }
    	SYS___GETLOGIN           = 49  // { int|sys||__getlogin(char *namebuf, size_t namelen); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    }
    
    func float64close(x, y float64) bool {
    	x0 := float64NaNTo0(x)
    	y0 := float64NaNTo0(y)
    	diff := math.Abs(x0 - y0)
    	den := math.Max(math.Abs(x0), math.Abs(y0))
    	return den == 0 || diff/den < 1e-10
    }
    
    func uint64max(a, b uint64) uint64 {
    	if b > a {
    		return b
    	}
    	return a
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/script/state.go

    // ${/} and ${:} (for the platform's path and list separators respectively),
    // but does not pass those to subprocesses.
    func NewState(ctx context.Context, workdir string, initialEnv []string) (*State, error) {
    	absWork, err := filepath.Abs(workdir)
    	if err != nil {
    		return nil, err
    	}
    
    	ctx, cancel := context.WithCancel(ctx)
    
    	// Make a fresh copy of the env slice to avoid aliasing bugs if we ever
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. src/math/jn.go

    			//  long double 1.1356523406294143949491931077970765006170e+04
    			//  then recurrent value may overflow and the result is
    			//  likely underflow to zero
    
    			tmp := float64(n)
    			v := 2 / x
    			tmp = tmp * Log(Abs(v*tmp))
    			if tmp < 7.09782712893383973096e+02 {
    				for i := n - 1; i > 0; i-- {
    					di := float64(i + i)
    					a, b = b, b*di/x-a
    				}
    			} else {
    				for i := n - 1; i > 0; i-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  10. src/encoding/json/scanner.go

    func stateFal(s *scanner, c byte) int {
    	if c == 's' {
    		s.step = stateFals
    		return scanContinue
    	}
    	return s.error(c, "in literal false (expecting 's')")
    }
    
    // stateFals is the state after reading `fals`.
    func stateFals(s *scanner, c byte) int {
    	if c == 'e' {
    		s.step = stateEndValue
    		return scanContinue
    	}
    	return s.error(c, "in literal false (expecting 'e')")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top