Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for mod_sqrt (0.18 sec)

  1. src/cmd/go/internal/modcmd/vendor.go

    	for m := range isExplicit {
    		vendorMods = append(vendorMods, m)
    	}
    	for m := range modpkgs {
    		if !isExplicit[m] {
    			vendorMods = append(vendorMods, m)
    		}
    	}
    	gover.ModSort(vendorMods)
    
    	var (
    		buf bytes.Buffer
    		w   io.Writer = &buf
    	)
    	if cfg.BuildV {
    		w = io.MultiWriter(&buf, os.Stderr)
    	}
    
    	if modload.MainModules.WorkFile() != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

        // CHECK: [[MG_SUB:%.*]] = "tf.Sub"([[MS_NEW]], [[MG_MG]])
        // CHECK: [[MG_NEW:%.*]] = "tf.AddV2"([[MG_SUB]], [[EPSILON]])
        // CHECK: [[MG_SQRT:%.*]] = "tf.Sqrt"([[MG_NEW]])
        // CHECK: [[MOM_DIV:%.*]] = "tf.Div"([[LR_GRAD]], [[MG_SQRT]])
        // CHECK: [[MOM_NEW:%.*]] = "tf.AddV2"([[MOM_MOM]], [[MOM_DIV]])
    
        // CHECK: [[VAR:%.*]] = "tf.ReadVariableOp"([[VAR_HANDLE]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/edit.go

    	for rootsDirty && len(conflicts) == 0 {
    		roots = roots[:0]
    		for p, v := range selectedRoot {
    			if v != "none" {
    				roots = append(roots, module.Version{Path: p, Version: v})
    			}
    		}
    		gover.ModSort(roots)
    
    		// First, we extend the graph so that it includes the selected version
    		// of every root. The upgraded roots are in addition to the original
    		// roots, so we will have enough information to trace a path to each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. api/go1.5.txt

    pkg math/big, method (*Float) Sub(*Float, *Float) *Float
    pkg math/big, method (*Float) Text(uint8, int) string
    pkg math/big, method (*Float) Uint64() (uint64, Accuracy)
    pkg math/big, method (*Int) ModSqrt(*Int, *Int) *Int
    pkg math/big, method (Accuracy) String() string
    pkg math/big, method (ErrNaN) Error() string
    pkg math/big, method (RoundingMode) String() string
    pkg math/big, type Accuracy int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    			// that we can.
    			break
    		}
    
    		toAdd := make([]module.Version, 0, len(modAddedBy))
    		for m := range modAddedBy {
    			toAdd = append(toAdd, m)
    		}
    		gover.ModSort(toAdd) // to make errors deterministic
    
    		// We ran updateRequirements before resolving missing imports and it didn't
    		// make any changes, so we know that the requirement graph is already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    		}
    		modFile := modFiles[0]
    		roots, direct = rootsFromModFile(MainModules.mustGetSingleMainModule(), modFile, withToolchainRoot)
    	}
    
    	gover.ModSort(roots)
    	rs := newRequirements(pruning, roots, direct)
    	return rs
    }
    
    type addToolchainRoot bool
    
    const (
    	omitToolchainRoot addToolchainRoot = false
    	withToolchainRoot                  = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    			}
    		}
    		q = append(q, p1.Internal.Imports...)
    	}
    	sortedMods := make([]module.Version, 0, len(mdeps))
    	for mod := range mdeps {
    		sortedMods = append(sortedMods, mod)
    	}
    	gover.ModSort(sortedMods)
    	deps := make([]*debug.Module, len(sortedMods))
    	for i, mod := range sortedMods {
    		deps[i] = mdeps[mod]
    	}
    
    	pkgPath := p.ImportPath
    	if p.Internal.CmdlineFiles {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Int).Lsh", Method, 0},
    		{"(*Int).MarshalJSON", Method, 1},
    		{"(*Int).MarshalText", Method, 3},
    		{"(*Int).Mod", Method, 0},
    		{"(*Int).ModInverse", Method, 0},
    		{"(*Int).ModSqrt", Method, 5},
    		{"(*Int).Mul", Method, 0},
    		{"(*Int).MulRange", Method, 0},
    		{"(*Int).Neg", Method, 0},
    		{"(*Int).Not", Method, 0},
    		{"(*Int).Or", Method, 0},
    		{"(*Int).ProbablyPrime", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top