Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 68 for mymath (0.12 sec)

  1. staging/src/k8s.io/api/rbac/v1beta1/generated.pb.go

    	io "io"
    
    	proto "github.com/gogo/protobuf/proto"
    	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	math "math"
    	math_bits "math/bits"
    	reflect "reflect"
    	strings "strings"
    )
    
    // Reference imports to suppress errors if they are not otherwise used.
    var _ = proto.Marshal
    var _ = fmt.Errorf
    var _ = math.Inf
    
    // This is a compile-time assertion to ensure that this generated file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/rbac/v1alpha1/generated.pb.go

    	io "io"
    
    	proto "github.com/gogo/protobuf/proto"
    	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	math "math"
    	math_bits "math/bits"
    	reflect "reflect"
    	strings "strings"
    )
    
    // Reference imports to suppress errors if they are not otherwise used.
    var _ = proto.Marshal
    var _ = fmt.Errorf
    var _ = math.Inf
    
    // This is a compile-time assertion to ensure that this generated file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_test.go

    import (
    	. "os"
    	_ "io"
    	"math"
    	"path/filepath"
    	snort "sort"
    )
    
    // avoid imported and not used errors
    var (
    	_ = Open // os.Open
    	_ = math.Sin
    	_ = filepath.Abs
    	_ = snort.Ints
    )
    `
    
    	var tests = []struct {
    		path string // path string enclosed in "'s
    		want string
    	}{
    		{`"os"`, "."},
    		{`"io"`, "_"},
    		{`"math"`, "math"},
    		{`"path/filepath"`, "filepath"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    	pkg.test -test.v -x -v
    
    Similarly,
    
    	go test -args math
    
    will compile the test binary and then run it as
    
    	pkg.test math
    
    In the first example, the -x and the second -v are passed through to the
    test binary unchanged and with no effect on the go command itself.
    In the second example, the argument math is passed through to the test
    binary, instead of being interpreted as the package list.
    `,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/bytes/bytes_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package bytes_test
    
    import (
    	. "bytes"
    	"fmt"
    	"internal/testenv"
    	"math"
    	"math/rand"
    	"reflect"
    	"strings"
    	"testing"
    	"unicode"
    	"unicode/utf8"
    	"unsafe"
    )
    
    func eq(a, b []string) bool {
    	if len(a) != len(b) {
    		return false
    	}
    	for i := 0; i < len(a); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (OR (RISBGZ (LGDR x) {r}) (MOVDconst [c]))
      && c >= 0
      && r == s390x.NewRotateParams(0, 0, 0)
      => (LGDR (CPSDR <x.Type> (FMOVDconst <x.Type> [math.Float64frombits(uint64(c))]) x))
    (CPSDR y (FMOVDconst [c])) && !math.Signbit(c) => (LPDFR y)
    (CPSDR y (FMOVDconst [c])) && math.Signbit(c)  => (LNDFR y)
    
    // absorb negations into set/clear sign bit
    (FNEG  (LPDFR x)) => (LNDFR x)
    (FNEG  (LNDFR x)) => (LPDFR x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/reflect/TypeToken.java

          int aboveMe = getRawType(type).isInterface() ? 1 : 0;
          for (K interfaceType : getInterfaces(type)) {
            aboveMe = Math.max(aboveMe, collectTypes(interfaceType, map));
          }
          K superclass = getSuperclass(type);
          if (superclass != null) {
            aboveMe = Math.max(aboveMe, collectTypes(superclass, map));
          }
          /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. src/go/printer/nodes.go

    // expressions, statements, declarations, and files. It uses
    // the print functionality implemented in printer.go.
    
    package printer
    
    import (
    	"go/ast"
    	"go/token"
    	"math"
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // Formatting issues:
    // - better comment formatting for /*-style comments at the end of a line (e.g. a declaration)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    package main
    
    import (
    	"bytes"
    	"debug/dwarf"
    	"debug/elf"
    	"debug/macho"
    	"debug/pe"
    	"encoding/binary"
    	"errors"
    	"flag"
    	"fmt"
    	"go/ast"
    	"go/parser"
    	"go/token"
    	"internal/xcoff"
    	"math"
    	"os"
    	"os/exec"
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    
    	"cmd/internal/quoted"
    )
    
    var debugDefine = flag.Bool("debug-define", false, "print relevant #defines")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    // large objects) can cross arenas.
    
    package runtime
    
    import (
    	"internal/goarch"
    	"internal/goos"
    	"internal/runtime/atomic"
    	"runtime/internal/math"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    const (
    	maxTinySize   = _TinySize
    	tinySizeClass = _TinySizeClass
    	maxSmallSize  = _MaxSmallSize
    
    	pageShift = _PageShift
    	pageSize  = _PageSize
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top