Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 959 for mymath (0.12 sec)

  1. pkg/volume/emptydir/empty_dir_linux.go

    	}
    	// Find mount point for the path
    	mountPoint, err := func(mps []mount.MountPoint, mpPath string) (*mount.MountPoint, error) {
    		for _, mp := range mps {
    			if mp.Path == mpPath {
    				return &mp, nil
    			}
    		}
    		return nil, fmt.Errorf("mount point for %s not found", mpPath)
    	}(mountPoints, path)
    	if err != nil {
    		return nil, err
    	}
    	// Get page size from the 'pagesize' option value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/outline_composites.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #include <cmath>
    #include <cstdlib>
    #include <memory>
    #include <string>
    #include <utility>
    
    #include "llvm/ADT/StringRef.h"
    #include "llvm/ADT/Twine.h"
    #include "llvm/Support/Casting.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. operator/pkg/object/testdata/well-formed-with-space.yaml

    # there are some spaces at the end
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: myconfigmap
      namespace: default
    data:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 182 bytes
    - Viewed (0)
  4. operator/pkg/object/testdata/well-formed-with-comments.out.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: myconfigmap
      namespace: default
    data:
      mydata: |-
        First line of data # some random comments should not be deleted
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 193 bytes
    - Viewed (0)
  5. src/cmd/cover/cfg_test.go

    		t.Fatal(err)
    	}
    	mpath := filepath.Join(mdir, "covmeta.xxx")
    	incfg := writePkgConfig(t, instdir, tag, ppath, pname, gran, mpath)
    	_, _, errmsg := runPkgCover(t, instdir, tag, incfg, mode,
    		pkg1files, false)
    	if errmsg != "" {
    		t.Fatalf("runPkgCover err: %q", errmsg)
    	}
    
    	// Check for existence of meta-data file.
    	if inf, err := os.Open(mpath); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. operator/pkg/object/testdata/well-formed-with-comments.yaml

    # some random comments
     # some random comments
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: myconfigmap
      namespace: default # some random comments should be deleted
    data:
      mydata: |-
        First line of data # some random comments should not be deleted
        Second line of data
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 304 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool.h"
    
    #include <array>
    #include <cmath>
    #include <cstddef>
    #include <cstdint>
    #include <string>
    #include <vector>
    
    #include "llvm/ADT/STLExtras.h"
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. src/math/example_test.go

    func ExampleExpm1() {
    	fmt.Printf("%.6f\n", math.Expm1(0.01))
    	fmt.Printf("%.6f\n", math.Expm1(-1))
    	// Output:
    	// 0.010050
    	// -0.632121
    }
    
    func ExampleTrunc() {
    	fmt.Printf("%.2f\n", math.Trunc(math.Pi))
    	fmt.Printf("%.2f\n", math.Trunc(-1.2345))
    	// Output:
    	// 3.00
    	// -1.00
    }
    
    func ExampleCbrt() {
    	fmt.Printf("%.2f\n", math.Cbrt(8))
    	fmt.Printf("%.2f\n", math.Cbrt(27))
    	// Output:
    	// 2.00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 07 18:09:53 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/float_test.go

    		t.Errorf("d9 <= d1 returned true")
    	}
    	if math.NaN() == math.NaN() {
    		t.Errorf("math.NaN() == math.NaN() returned true")
    	}
    	if math.NaN() >= math.NaN() {
    		t.Errorf("math.NaN() >= math.NaN() returned true")
    	}
    	if math.NaN() <= math.NaN() {
    		t.Errorf("math.NaN() <= math.NaN() returned true")
    	}
    	if math.Copysign(math.NaN(), -1) < math.NaN() {
    		t.Errorf("math.Copysign(math.NaN(), -1) < math.NaN() returned true")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  10. api/go1.9.txt

    pkg math/bits, func Len(uint) int
    pkg math/bits, func Len16(uint16) int
    pkg math/bits, func Len32(uint32) int
    pkg math/bits, func Len64(uint64) int
    pkg math/bits, func Len8(uint8) int
    pkg math/bits, func OnesCount(uint) int
    pkg math/bits, func OnesCount16(uint16) int
    pkg math/bits, func OnesCount32(uint32) int
    pkg math/bits, func OnesCount64(uint64) int
    pkg math/bits, func OnesCount8(uint8) int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
Back to top